{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://amazonalexa.com/ask/2020/12/NameReference",
  "title": "name",
  "description": "Introduces a name for an expression.",
  "type": "object",
  "additionalProperties": false,
  "required": ["kind", "name"],
  "properties": {
    "kind": {
      "const": "NameReference",
      "title": "kind",
      "description": "The expression's identifier."
    },
    "name": {
      "$ref": "https://amazonalexa.com/ask/2020/12/QualifiedName"
    },
    "type": {
      "description": "The type of the expression this name references.",
      "$ref": "https://amazonalexa.com/ask/2020/12/TypeReference"
    },
    "annotations": {
      "type": "array",
      "items": {
        "$ref": "https://amazonalexa.com/ask/2020/12/Call",
        "description": "call data structures to annotate this name reference."
      }
    }
  }
}
