Couchbase · Schema

SearchIndexList

List of all search index definitions

AnalyticsApp ServicesBackupCapellaCloudDatabaseDBaaSEventingFull-Text SearchGatewayJSONMobileNoSQLReplicationSQL++SyncVector SearchXDCR

Properties

Name Type Description
status string Response status
indexDefs object Container for index definitions
View JSON Schema on GitHub

JSON Schema

couchbase-searchindexlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SearchIndexList",
  "title": "SearchIndexList",
  "type": "object",
  "description": "List of all search index definitions",
  "properties": {
    "status": {
      "type": "string",
      "description": "Response status"
    },
    "indexDefs": {
      "type": "object",
      "description": "Container for index definitions",
      "properties": {
        "uuid": {
          "type": "string",
          "description": "UUID of the index definitions set"
        },
        "indexDefs": {
          "type": "object",
          "description": "Map of index name to index definition",
          "additionalProperties": {
            "$ref": "#/components/schemas/SearchIndexDefinition"
          }
        }
      }
    }
  }
}