{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FileInfo", "title": "FileInfo", "type": "object", "properties": { "repo": { "type": "string" }, "path": { "type": "string" }, "created": { "type": "string", "format": "date-time" }, "createdBy": { "type": "string" }, "lastModified": { "type": "string", "format": "date-time" }, "modifiedBy": { "type": "string" }, "lastUpdated": { "type": "string", "format": "date-time" }, "downloadUri": { "type": "string", "format": "uri" }, "mimeType": { "type": "string" }, "size": { "type": "string" }, "checksums": { "$ref": "#/components/schemas/Checksums" }, "originalChecksums": { "$ref": "#/components/schemas/Checksums" }, "uri": { "type": "string", "format": "uri" } } }