@asyncapi/specs
Version:
AsyncAPI schema versions
27 lines • 846 B
JSON
{
"type": "object",
"additionalProperties": false,
"description": "Allows referencing an external resource for extended documentation.",
"required": ["url"],
"properties": {
"description": {
"type": "string",
"description": "A short description of the target documentation."
},
"url": {
"type": "string",
"format": "uri",
"description": "The URL for the target documentation. This MUST be in the form of an absolute URL."
}
},
"patternProperties": {
"^x-[\\w\\d\\.\\x2d_]+$": {
"$ref": "http://asyncapi.com/definitions/2.6.0/specificationExtension.json"
}
},
"example": {
"$ref": "http://asyncapi.com/examples/2.6.0/externalDocs.json"
},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://asyncapi.com/definitions/2.6.0/externalDocs.json"
}