{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PropertySchema", "title": "PropertySchema", "type": "object", "properties": { "type": { "type": "string", "enum": [ "string", "number", "boolean", "datetime", "list", "object" ], "description": "Data type of the property" }, "description": { "type": "string", "description": "Description of the property" }, "required": { "type": "boolean", "description": "Whether the property is required" }, "isHidden": { "type": "boolean", "description": "Whether to hide this property in the UI" } } }