@asyncapi/specs
Version:
AsyncAPI schema versions
44 lines (43 loc) • 1.44 kB
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://asyncapi.com/definitions/3.1.0/parameter.json",
"description": "Describes a parameter included in a channel address.",
"properties": {
"description": {
"description": "A brief description of the parameter. This could contain examples of use. GitHub Flavored Markdown is allowed.",
"type": "string"
},
"examples": {
"description": "An array of examples of the parameter value.",
"type": "array",
"items": {
"type": "string"
}
},
"default": {
"description": "The default value to use for substitution, and to send, if an alternate value is not supplied.",
"type": "string"
},
"enum": {
"description": "An enumeration of string values to be used if the substitution options are from a limited set.",
"type": "array",
"items": {
"type": "string"
}
},
"location": {
"description": "A runtime expression that specifies the location of the parameter value",
"type": "string",
"pattern": "^\\$message\\.(header|payload)#(\\/(([^\\/~])|(~[01]))*)*"
}
},
"patternProperties": {
"^x-[\\w\\d\\.\\x2d_]+$": {
"$ref": "http://asyncapi.com/definitions/3.1.0/specificationExtension.json"
}
},
"additionalProperties": false,
"example": {
"$ref": "http://asyncapi.com/examples/3.1.0/parameter.json"
}
}