{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloudsearch/refs/heads/main/json-structure/cloudsearch-define-index-field-request-structure.json", "name": "DefineIndexFieldRequest", "description": "DefineIndexFieldRequest schema", "type": "object", "properties": { "IndexField": { "type": "object", "required": [ "IndexFieldName", "IndexFieldType" ], "properties": { "IndexFieldName": { "type": "string" }, "IndexFieldType": { "type": "string", "enum": [ "int", "double", "literal", "text", "date", "latlon", "int-array", "double-array", "literal-array", "text-array", "date-array" ] } } } }, "required": [ "IndexField" ] }