{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AdvancedMetadata", "title": "AdvancedMetadata", "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "display_name": { "type": "string" }, "description": { "type": "string" }, "is_required": { "type": "boolean" }, "is_custom": { "type": "boolean" }, "field_choices": { "type": "array", "items": { "description": "Any type" } } }, "required": [ "id" ] }