@alexa/ask-expressions-spec
Version:
The JSON Schema specification for the Alexa Skills Kit Intermediate Representation (ASKIR).
38 lines (37 loc) • 1.11 kB
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://amazonalexa.com/ask/2020/12/Call",
"title": "Call",
"description": "Represents a call to an action or a dialog.",
"type": "object",
"additionalProperties": false,
"required": ["kind", "name"],
"properties": {
"kind": {
"const": "Call",
"title": "kind",
"description": "The expression's identifier."
},
"name": {
"description": "The qualified name of the action.",
"$ref": "https://amazonalexa.com/ask/2020/12/QualifiedName"
},
"genericArguments": {
"$ref": "https://amazonalexa.com/ask/2020/12/GenericArguments"
},
"arguments": {
"$ref": "https://amazonalexa.com/ask/2020/12/Arguments"
},
"type": {
"description": "The return type of the call.",
"$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 call expression."
}
}
}
}