{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FileSystemShortcut", "title": "FileSystemShortcut", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "path": { "type": "string" }, "type": { "type": "string", "maxLength": 100 }, "ref": { "type": "string", "nullable": true, "maxLength": 100 }, "href": { "type": "string", "nullable": true }, "order": { "type": "integer", "maximum": 2147483647, "minimum": -2147483648 }, "created_at": { "type": "string", "format": "date-time", "readOnly": true } }, "required": [ "created_at", "id", "path" ] }