Amazon CloudSearch · JSON Structure

Cloudsearch Define Index Field Request Structure

DefineIndexFieldRequest schema

Type: object Properties: 1 Required: 1
CloudSearchSearchFull-Text SearchManaged

DefineIndexFieldRequest is a JSON Structure definition published by Amazon CloudSearch, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

IndexField

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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"
  ]
}