{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/datadog-service-definition/_shared/latest--entity.schema.json",
  "description": "The base shape of a Datadog software entity",
  "x-lintel": {
    "source": "https://raw.githubusercontent.com/DataDog/schema/main/service-catalog/v3/entity.schema.json",
    "sourceSha256": "e19acf40cb3f6387fbab2cab8e3775b3f59fff7e0d4eb4d4dd3f723e1bd958fd"
  },
  "type": "object",
  "properties": {
    "apiVersion": {
      "type": "string",
      "description": "The schema version of entity type. The field is known as schema-version in the previous version",
      "enum": [
        "v3"
      ],
      "examples": [
        "v3"
      ]
    },
    "kind": {
      "type": "string",
      "description": "Kind describes the type of entity",
      "minLength": 1,
      "examples": [
        "application",
        "service"
      ]
    },
    "metadata": {
      "$ref": "https://catalog.lintel.tools/schemas/schemastore/datadog-service-definition/_shared/latest--metadata.schema.json"
    },
    "spec": {
      "type": "object",
      "description": "The spec of the entity."
    },
    "integrations": {
      "type": "object",
      "description": "The external integrations of the entity."
    },
    "datadog": {
      "type": "object",
      "description": "The Datadog product associations for the entity."
    },
    "extensions": {
      "description": "Custom extensions. This is the free-formed field to send client side metadata. No Datadog features are affected by this field.",
      "type": "object",
      "additionalProperties": true
    }
  },
  "required": [
    "apiVersion",
    "kind",
    "metadata"
  ],
  "additionalProperties": false,
  "examples": []
}
