{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ItemSchema", "title": "ItemSchema", "type": "object", "properties": { "item_type": { "$ref": "#/components/schemas/ItemTypeEnum" }, "item_format": { "$ref": "#/components/schemas/ItemFormatEnum" }, "item_choices": { "type": "array", "items": { "type": "string" } } } }