{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExtensionUpload", "title": "ExtensionUpload", "type": "object", "properties": { "systemId": { "type": "string", "format": "uuid", "example": "500123" }, "schedule": { "type": "string", "description": "When to schedule the installation", "enum": [ "Current version", "Next minor version", "Next major version" ], "example": "Current version" }, "schemaSyncMode": { "type": "string", "description": "Schema synchronization mode", "enum": [ "Add", "Force Sync" ], "example": "Add" }, "status": { "type": "string", "readOnly": true, "example": "example_value" } } }