@alexa/ask-expressions-spec
Version:
The JSON Schema specification for the Alexa Skills Kit Intermediate Representation (ASKIR).
27 lines (26 loc) • 664 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://amazonalexa.com/ask/2020/12/SampleBlock",
"title": "SampleBlock",
"description": "A block of expressions.",
"type": "array",
"items": {
"oneOf": [
{
"$ref": "https://amazonalexa.com/ask/2020/12/Call"
},
{
"$ref": "https://amazonalexa.com/ask/2020/12/Condition"
},
{
"$ref": "https://amazonalexa.com/ask/2020/12/PropertyReference"
},
{
"$ref": "https://amazonalexa.com/ask/2020/12/NameDeclaration"
},
{
"$ref": "https://amazonalexa.com/ask/2020/12/NameReference"
}
]
}
}