UNPKG

@alexa/ask-expressions-spec

Version:

The JSON Schema specification for the Alexa Skills Kit Intermediate Representation (ASKIR).

32 lines (25 loc) 716 B
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://amazonalexa.com/ask/2020/12/GenericArgumentsDeclaration", "title": "GenericArgumentsDeclaration", "description": "A set of generic arguments for a declaration.", "type": "array", "uniqueItems": true, "items": { "description": "A generic argument in a declaration.", "type": "object", "required": ["name"], "additionalProperties": false, "properties": { "name": { "$ref": "https://amazonalexa.com/ask/2020/12/Name" }, "constraints": { "type": "array", "items": { "$ref": "https://amazonalexa.com/ask/2020/12/TypeReference" } } } } }