{
  "$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"
        }
      }
    }
  }
}
