@asyncapi/specs
Version:
AsyncAPI schema versions
25 lines (24 loc) • 594 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://asyncapi.com/definitions/3.1.0/userPassword.json",
"type": "object",
"required": [ "type" ],
"properties": {
"description": {
"type": "string"
},
"type": {
"type": "string",
"enum": [ "userPassword" ]
}
},
"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/userPassword.json"
}
}