@alexa/ask-expressions-spec
Version:
The JSON Schema specification for the Alexa Skills Kit Intermediate Representation (ASKIR).
31 lines (30 loc) • 894 B
JSON
{
"$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."
}
}
}
}