{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PersistedFolder", "title": "PersistedFolder", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "type": { "$ref": "#/components/schemas/PersistedFolderTypeEnum" }, "protocol": { "type": "string", "maxLength": 64 }, "path": { "type": "string" }, "created_at": { "type": "string", "format": "date-time", "readOnly": true }, "updated_at": { "type": "string", "format": "date-time", "readOnly": true } }, "required": [ "created_at", "id", "type", "updated_at" ] }