Elastic · Schema

Document

SearchAnalyticsObservabilitySecurityVisualizationCloud

Properties

Name Type Description
_index string
_id string
_score number
_source object
View JSON Schema on GitHub

JSON Schema

elastic-document-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Document",
  "title": "Document",
  "type": "object",
  "properties": {
    "_index": {
      "type": "string"
    },
    "_id": {
      "type": "string"
    },
    "_score": {
      "type": "number",
      "nullable": true
    },
    "_source": {
      "type": "object",
      "additionalProperties": true
    }
  }
}