@alexa/ask-expressions-spec
Version:
The JSON Schema specification for the Alexa Skills Kit Intermediate Representation (ASKIR).
33 lines (32 loc) • 905 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://amazonalexa.com/ask/2020/12/TypeReference",
"title": "TypeReference",
"description": "The representation of a reference to a type declaration.",
"type": "object",
"additionalProperties": false,
"required": ["kind", "name"],
"properties": {
"kind": {
"const": "TypeReference",
"title": "kind",
"description": "The expression's identifier."
},
"name": {
"$ref": "https://amazonalexa.com/ask/2020/12/QualifiedName"
},
"arguments": {
"type": "array",
"items": {
"$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 type reference."
}
}
}
}