diff --git a/www/docs/static/schema-pro.json b/www/docs/static/schema-pro.json index ead13b7a571..07de26a80ae 100644 --- a/www/docs/static/schema-pro.json +++ b/www/docs/static/schema-pro.json @@ -555,10 +555,7 @@ } }, "additionalProperties": false, - "type": "object", - "required": [ - "group" - ] + "type": "object" }, "Contents": { "items": { @@ -758,6 +755,32 @@ } ] }, + "FileInfo": { + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://github.com/goreleaser/goreleaser/pkg/config/file-info", + "$ref": "#/$defs/FileInfo", + "$defs": { + "FileInfo": { + "properties": { + "owner": { + "type": "string" + }, + "group": { + "type": "string" + }, + "mode": { + "type": "integer" + }, + "mtime": { + "type": "string", + "format": "date-time" + } + }, + "additionalProperties": false, + "type": "object" + } + } + }, "Filters": { "properties": { "exclude": {