{ "$schema": "http://json-schema.org/draft-07/schema", "title": "AsyncAPI 2.0.0-rc1 schema.", "type": "object", "required": [ "asyncapi", "id", "info", "channels" ], "additionalProperties": false, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "properties": { "asyncapi": { "type": "string", "enum": [ "2.0.0-rc1" ], "description": "The AsyncAPI specification version of this document." }, "id": { "type": "string", "description": "A unique id representing the application.", "format": "uri-reference" }, "info": { "$ref": "#/definitions/info" }, "servers": { "type": "array", "items": { "$ref": "#/definitions/server" }, "uniqueItems": true }, "defaultContentType": { "type": "string" }, "channels": { "$ref": "#/definitions/channels" }, "components": { "$ref": "#/definitions/components" }, "tags": { "type": "array", "items": { "$ref": "#/definitions/tag" }, "uniqueItems": true }, "externalDocs": { "$ref": "#/definitions/externalDocs" } }, "definitions": { "specificationExtension": { "description": "Any property starting with x- is valid.", "additionalProperties": true, "additionalItems": true }, "info": { "type": "object", "description": "General information about the API.", "required": [ "version", "title" ], "additionalProperties": false, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "properties": { "title": { "type": "string", "description": "A unique and precise title of the API." }, "version": { "type": "string", "description": "A semantic version number of the API." }, "description": { "type": "string", "description": "A longer description of the API. Should be different from the title. CommonMark is allowed." }, "termsOfService": { "type": "string", "description": "A URL to the Terms of Service for the API. MUST be in the format of a URL.", "format": "uri" }, "contact": { "$ref": "#/definitions/contact" }, "license": { "$ref": "#/definitions/license" } } }, "contact": { "type": "object", "description": "Contact information for the owners of the API.", "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The identifying name of the contact person/organization." }, "url": { "type": "string", "description": "The URL pointing to the contact information.", "format": "uri" }, "email": { "type": "string", "description": "The email address of the contact person/organization.", "format": "email" } }, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } } }, "license": { "type": "object", "required": [ "name" ], "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The name of the license type. It's encouraged to use an OSI compatible license." }, "url": { "type": "string", "description": "The URL pointing to the license.", "format": "uri" } }, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } } }, "server": { "type": "object", "description": "An object representing a Server.", "required": [ "url", "protocol" ], "additionalProperties": false, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "properties": { "url": { "type": "string" }, "description": { "type": "string" }, "protocol": { "type": "string", "description": "The transfer protocol." }, "protocolVersion": { "type": "string" }, "variables": { "$ref": "#/definitions/serverVariables" }, "baseChannel": { "type": "string", "x-format": "uri-path" }, "security": { "type": "array", "items": { "$ref": "#/definitions/SecurityRequirement" } } } }, "serverVariables": { "type": "object", "additionalProperties": { "$ref": "#/definitions/serverVariable" } }, "serverVariable": { "type": "object", "description": "An object representing a Server Variable for server URL template substitution.", "minProperties": 1, "additionalProperties": false, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "properties": { "enum": { "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "default": { "type": "string" }, "description": { "type": "string" }, "examples": { "type": "array", "items": { "type": "string" } } } }, "SecurityRequirement": { "type": "object", "additionalProperties": { "type": "array", "items": { "type": "string" }, "uniqueItems": true } }, "channels": { "type": "object", "propertyNames": { "type": "string", "format": "uri-template", "minLength": 1 }, "additionalProperties": { "$ref": "#/definitions/channelItem" } }, "channelItem": { "type": "object", "additionalProperties": false, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "minProperties": 1, "properties": { "$ref": { "$ref": "#/definitions/ReferenceObject" }, "parameters": { "$ref": "#/definitions/parameters" }, "publish": { "$ref": "#/definitions/operation" }, "subscribe": { "$ref": "#/definitions/operation" }, "deprecated": { "type": "boolean", "default": false }, "protocolInfo": { "type": "object", "additionalProperties": { "type": "object" } } } }, "ReferenceObject": { "type": "string", "format": "uri" }, "parameters": { "type": "object", "additionalProperties": { "oneOf": [ { "$ref": "#/definitions/Reference" }, { "$ref": "#/definitions/parameter" } ] }, "description": "JSON objects describing re-usable channel parameters." }, "Reference": { "type": "object", "required": [ "$ref" ], "properties": { "$ref": { "$ref": "#/definitions/ReferenceObject" } } }, "parameter": { "additionalProperties": false, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "properties": { "description": { "type": "string", "description": "A brief description of the parameter. This could contain examples of use. GitHub Flavored Markdown is allowed." }, "name": { "type": "string", "description": "The name of the parameter." }, "schema": { "$ref": "#/definitions/schema" }, "$ref": { "$ref": "#/definitions/ReferenceObject" } } }, "schema": { "type": "object", "description": "A deterministic version of a JSON Schema object.", "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "properties": { "$ref": { "$ref": "#/definitions/ReferenceObject" }, "format": { "type": "string" }, "title": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "description": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "default": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "multipleOf": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "maximum": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "exclusiveMaximum": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "minimum": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "exclusiveMinimum": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "maxLength": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "minLength": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "pattern": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "maxItems": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "minItems": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "uniqueItems": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "maxProperties": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "minProperties": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "required": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "enum": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "deprecated": { "type": "boolean", "default": false }, "additionalProperties": { "anyOf": [ { "$ref": "#/definitions/schema" }, { "type": "boolean" } ], "default": {} }, "type": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "items": { "anyOf": [ { "$ref": "#/definitions/schema" }, { "type": "array", "minItems": 1, "items": { "$ref": "#/definitions/schema" } } ], "default": {} }, "allOf": { "type": "array", "minItems": 1, "items": { "$ref": "#/definitions/schema" } }, "oneOf": { "type": "array", "minItems": 2, "items": { "$ref": "#/definitions/schema" } }, "anyOf": { "type": "array", "minItems": 2, "items": { "$ref": "#/definitions/schema" } }, "not": { "$ref": "#/definitions/schema" }, "properties": { "type": "object", "additionalProperties": { "$ref": "#/definitions/schema" }, "default": {} }, "discriminator": { "type": "string" }, "readOnly": { "type": "boolean", "default": false }, "xml": { "$ref": "#/definitions/xml" }, "externalDocs": { "$ref": "#/definitions/externalDocs" }, "example": {}, "examples": { "type": "array", "items": {} } }, "additionalProperties": false }, "json-schema-draft-07-schema": { "id": "http://json-schema.org/draft-04/schema", "$schema": "http://json-schema.org/draft-04/schema", "description": "Core schema meta-schema", "definitions": { "schemaArray": { "type": "array", "minItems": 1, "items": { "$ref": "#/definitions/json-schema-draft-07-schema" } }, "positiveInteger": { "type": "integer", "minimum": 0 }, "positiveIntegerDefault0": { "allOf": [ { "$ref": "#/definitions/json-schema-draft-07-schema/definitions/positiveInteger" }, { "default": 0 } ] }, "simpleTypes": { "enum": [ "array", "boolean", "integer", "null", "number", "object", "string" ] }, "stringArray": { "type": "array", "items": { "type": "string" }, "minItems": 1, "uniqueItems": true } }, "type": "object", "properties": { "id": { "type": "string" }, "$schema": { "type": "string" }, "title": { "type": "string" }, "description": { "type": "string" }, "default": {}, "multipleOf": { "type": "number", "minimum": 0, "exclusiveMinimum": true }, "maximum": { "type": "number" }, "exclusiveMaximum": { "type": "boolean", "default": false }, "minimum": { "type": "number" }, "exclusiveMinimum": { "type": "boolean", "default": false }, "maxLength": { "$ref": "#/definitions/json-schema-draft-07-schema/definitions/positiveInteger" }, "minLength": { "$ref": "#/definitions/json-schema-draft-07-schema/definitions/positiveIntegerDefault0" }, "pattern": { "type": "string", "format": "regex" }, "additionalItems": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/definitions/json-schema-draft-07-schema" } ], "default": {} }, "items": { "anyOf": [ { "$ref": "#/definitions/json-schema-draft-07-schema" }, { "$ref": "#/definitions/json-schema-draft-07-schema/definitions/schemaArray" } ], "default": {} }, "maxItems": { "$ref": "#/definitions/json-schema-draft-07-schema/definitions/positiveInteger" }, "minItems": { "$ref": "#/definitions/json-schema-draft-07-schema/definitions/positiveIntegerDefault0" }, "uniqueItems": { "type": "boolean", "default": false }, "maxProperties": { "$ref": "#/definitions/json-schema-draft-07-schema/definitions/positiveInteger" }, "minProperties": { "$ref": "#/definitions/json-schema-draft-07-schema/definitions/positiveIntegerDefault0" }, "required": { "$ref": "#/definitions/json-schema-draft-07-schema/definitions/stringArray" }, "additionalProperties": { "anyOf": [ { "type": "boolean" }, { "$ref": "#/definitions/json-schema-draft-07-schema" } ], "default": {} }, "definitions": { "type": "object", "additionalProperties": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "default": {} }, "properties": { "type": "object", "additionalProperties": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "default": {} }, "patternProperties": { "type": "object", "additionalProperties": { "$ref": "#/definitions/json-schema-draft-07-schema" }, "default": {} }, "dependencies": { "type": "object", "additionalProperties": { "anyOf": [ { "$ref": "#/definitions/json-schema-draft-07-schema" }, { "$ref": "#/definitions/json-schema-draft-07-schema/definitions/stringArray" } ] } }, "enum": { "type": "array", "minItems": 1, "uniqueItems": true }, "type": { "anyOf": [ { "$ref": "#/definitions/json-schema-draft-07-schema/definitions/simpleTypes" }, { "type": "array", "items": { "$ref": "#/definitions/json-schema-draft-07-schema/definitions/simpleTypes" }, "minItems": 1, "uniqueItems": true } ] }, "format": { "type": "string" }, "allOf": { "$ref": "#/definitions/json-schema-draft-07-schema/definitions/schemaArray" }, "anyOf": { "$ref": "#/definitions/json-schema-draft-07-schema/definitions/schemaArray" }, "oneOf": { "$ref": "#/definitions/json-schema-draft-07-schema/definitions/schemaArray" }, "not": { "$ref": "#/definitions/json-schema-draft-07-schema" } }, "dependencies": { "exclusiveMaximum": [ "maximum" ], "exclusiveMinimum": [ "minimum" ] }, "default": {} }, "xml": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "namespace": { "type": "string" }, "prefix": { "type": "string" }, "attribute": { "type": "boolean", "default": false }, "wrapped": { "type": "boolean", "default": false } } }, "externalDocs": { "type": "object", "additionalProperties": false, "description": "information about external documentation", "required": [ "url" ], "properties": { "description": { "type": "string" }, "url": { "type": "string", "format": "uri" } }, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } } }, "operation": { "type": "object", "additionalProperties": false, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "properties": { "traits": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/Reference" }, { "$ref": "#/definitions/operationTrait" } ] } }, "summary": { "type": "string" }, "description": { "type": "string" }, "tags": { "type": "array", "items": { "$ref": "#/definitions/tag" }, "uniqueItems": true }, "externalDocs": { "$ref": "#/definitions/externalDocs" }, "operationId": { "type": "string" }, "protocolInfo": { "type": "object", "additionalProperties": { "type": "object" } }, "message": { "oneOf": [ { "$ref": "#/definitions/message" }, { "type": "object", "required": [ "oneOf" ], "additionalProperties": false, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "properties": { "oneOf": { "type": "array", "minItems": 2, "items": { "$ref": "#/definitions/message" } } } } ] } } }, "operationTrait": { "type": "object", "additionalProperties": false, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "properties": { "summary": { "type": "string" }, "description": { "type": "string" }, "tags": { "type": "array", "items": { "$ref": "#/definitions/tag" }, "uniqueItems": true }, "externalDocs": { "$ref": "#/definitions/externalDocs" }, "operationId": { "type": "string" }, "protocolInfo": { "type": "object", "additionalProperties": { "type": "object" } } } }, "tag": { "type": "object", "additionalProperties": false, "required": [ "name" ], "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "externalDocs": { "$ref": "#/definitions/externalDocs" } }, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } } }, "message": { "type": "object", "additionalProperties": false, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "properties": { "schemaFormat": { "type": "string" }, "contentType": { "type": "string" }, "headers": { "type": "object", "additionalProperties": { "oneOf": [ { "$ref": "#/definitions/Reference" }, { "$ref": "#/definitions/schema" } ] } }, "payload": {}, "correlationId": { "oneOf": [ { "$ref": "#/definitions/Reference" }, { "$ref": "#/definitions/correlationId" } ] }, "tags": { "type": "array", "items": { "$ref": "#/definitions/tag" }, "uniqueItems": true }, "summary": { "type": "string", "description": "A brief summary of the message." }, "name": { "type": "string", "description": "Name of the message." }, "title": { "type": "string", "description": "A human-friendly title for the message." }, "description": { "type": "string", "description": "A longer description of the message. CommonMark is allowed." }, "externalDocs": { "$ref": "#/definitions/externalDocs" }, "deprecated": { "type": "boolean", "default": false }, "examples": { "type": "array", "items": { "type": "object" } }, "protocolInfo": { "type": "object", "additionalProperties": { "type": "object" } }, "traits": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/Reference" }, { "$ref": "#/definitions/messageTrait" } ] } } } }, "correlationId": { "type": "object", "required": [ "location" ], "additionalProperties": false, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "properties": { "description": { "type": "string", "description": "A optional description of the correlation ID. GitHub Flavored Markdown is allowed." }, "location": { "type": "string", "description": "A runtime expression that specifies the location of the correlation ID", "pattern": "^\\$message\\.(header|payload)#(/\\w+)+" } } }, "messageTrait": { "type": "object", "additionalProperties": false, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "properties": { "schemaFormat": { "type": "string" }, "contentType": { "type": "string" }, "headers": { "type": "object", "additionalProperties": { "oneOf": [ { "$ref": "#/definitions/Reference" }, { "$ref": "#/definitions/schema" } ] } }, "correlationId": { "oneOf": [ { "$ref": "#/definitions/Reference" }, { "$ref": "#/definitions/correlationId" } ] }, "tags": { "type": "array", "items": { "$ref": "#/definitions/tag" }, "uniqueItems": true }, "summary": { "type": "string", "description": "A brief summary of the message." }, "name": { "type": "string", "description": "Name of the message." }, "title": { "type": "string", "description": "A human-friendly title for the message." }, "description": { "type": "string", "description": "A longer description of the message. CommonMark is allowed." }, "externalDocs": { "$ref": "#/definitions/externalDocs" }, "deprecated": { "type": "boolean", "default": false }, "examples": { "type": "array", "items": { "type": "object" } }, "protocolInfo": { "type": "object", "additionalProperties": { "type": "object" } } } }, "components": { "type": "object", "description": "An object to hold a set of reusable objects for different aspects of the AsyncAPI Specification.", "additionalProperties": false, "properties": { "schemas": { "$ref": "#/definitions/schemas" }, "messages": { "$ref": "#/definitions/messages" }, "securitySchemes": { "type": "object", "patternProperties": { "^[\\w\\d\\.\\-_]+$": { "oneOf": [ { "$ref": "#/definitions/Reference" }, { "$ref": "#/definitions/SecurityScheme" } ] } } }, "parameters": { "$ref": "#/definitions/parameters" }, "correlationIds": { "type": "object", "patternProperties": { "^[\\w\\d\\.\\-_]+$": { "oneOf": [ { "$ref": "#/definitions/Reference" }, { "$ref": "#/definitions/correlationId" } ] } } }, "traits": { "$ref": "#/definitions/traits" } } }, "schemas": { "type": "object", "additionalProperties": { "$ref": "#/definitions/schema" }, "description": "JSON objects describing schemas the API uses." }, "messages": { "type": "object", "additionalProperties": { "$ref": "#/definitions/message" }, "description": "JSON objects describing the messages being consumed and produced by the API." }, "SecurityScheme": { "oneOf": [ { "$ref": "#/definitions/userPassword" }, { "$ref": "#/definitions/apiKey" }, { "$ref": "#/definitions/X509" }, { "$ref": "#/definitions/symmetricEncryption" }, { "$ref": "#/definitions/asymmetricEncryption" }, { "$ref": "#/definitions/HTTPSecurityScheme" }, { "$ref": "#/definitions/oauth2Flows" }, { "$ref": "#/definitions/openIdConnect" } ] }, "userPassword": { "type": "object", "required": [ "type" ], "properties": { "type": { "type": "string", "enum": [ "userPassword" ] }, "description": { "type": "string" } }, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "additionalProperties": false }, "apiKey": { "type": "object", "required": [ "type", "in" ], "properties": { "type": { "type": "string", "enum": [ "apiKey" ] }, "in": { "type": "string", "enum": [ "user", "password" ] }, "description": { "type": "string" } }, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "additionalProperties": false }, "X509": { "type": "object", "required": [ "type" ], "properties": { "type": { "type": "string", "enum": [ "X509" ] }, "description": { "type": "string" } }, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "additionalProperties": false }, "symmetricEncryption": { "type": "object", "required": [ "type" ], "properties": { "type": { "type": "string", "enum": [ "symmetricEncryption" ] }, "description": { "type": "string" } }, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "additionalProperties": false }, "asymmetricEncryption": { "type": "object", "required": [ "type" ], "properties": { "type": { "type": "string", "enum": [ "asymmetricEncryption" ] }, "description": { "type": "string" } }, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "additionalProperties": false }, "HTTPSecurityScheme": { "oneOf": [ { "$ref": "#/definitions/NonBearerHTTPSecurityScheme" }, { "$ref": "#/definitions/BearerHTTPSecurityScheme" }, { "$ref": "#/definitions/APIKeyHTTPSecurityScheme" } ] }, "NonBearerHTTPSecurityScheme": { "not": { "type": "object", "properties": { "scheme": { "type": "string", "enum": [ "bearer" ] } } }, "type": "object", "required": [ "scheme", "type" ], "properties": { "scheme": { "type": "string" }, "description": { "type": "string" }, "type": { "type": "string", "enum": [ "http" ] } }, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "additionalProperties": false }, "BearerHTTPSecurityScheme": { "type": "object", "required": [ "type", "scheme" ], "properties": { "scheme": { "type": "string", "enum": [ "bearer" ] }, "bearerFormat": { "type": "string" }, "type": { "type": "string", "enum": [ "http" ] }, "description": { "type": "string" } }, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "additionalProperties": false }, "APIKeyHTTPSecurityScheme": { "type": "object", "required": [ "type", "name", "in" ], "properties": { "type": { "type": "string", "enum": [ "httpApiKey" ] }, "name": { "type": "string" }, "in": { "type": "string", "enum": [ "header", "query", "cookie" ] }, "description": { "type": "string" } }, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "additionalProperties": false }, "oauth2Flows": { "type": "object", "required": [ "type", "flows" ], "properties": { "type": { "type": "string", "enum": [ "oauth2" ] }, "description": { "type": "string" }, "flows": { "type": "object", "properties": { "implicit": { "allOf": [ { "$ref": "#/definitions/oauth2Flow" }, { "required": [ "authorizationUrl", "scopes" ] }, { "not": { "required": [ "tokenUrl" ] } } ] }, "password": { "allOf": [ { "$ref": "#/definitions/oauth2Flow" }, { "required": [ "tokenUrl", "scopes" ] }, { "not": { "required": [ "authorizationUrl" ] } } ] }, "clientCredentials": { "allOf": [ { "$ref": "#/definitions/oauth2Flow" }, { "required": [ "tokenUrl", "scopes" ] }, { "not": { "required": [ "authorizationUrl" ] } } ] }, "authorizationCode": { "allOf": [ { "$ref": "#/definitions/oauth2Flow" }, { "required": [ "authorizationUrl", "tokenUrl", "scopes" ] } ] } }, "additionalProperties": false, "minProperties": 1 } }, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } } }, "oauth2Flow": { "type": "object", "properties": { "authorizationUrl": { "type": "string", "format": "uri" }, "tokenUrl": { "type": "string", "format": "uri" }, "refreshUrl": { "type": "string", "format": "uri" }, "scopes": { "$ref": "#/definitions/oauth2Scopes" } }, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "additionalProperties": false }, "oauth2Scopes": { "type": "object", "additionalProperties": { "type": "string" } }, "openIdConnect": { "type": "object", "required": [ "type", "openIdConnectUrl" ], "properties": { "type": { "type": "string", "enum": [ "openIdConnect" ] }, "description": { "type": "string" }, "openIdConnectUrl": { "type": "string", "format": "uri" } }, "patternProperties": { "^x-[\\w\\d\\.\\x2d_]+$": { "$ref": "#/definitions/specificationExtension" } }, "additionalProperties": false }, "traits": { "type": "object", "additionalProperties": { "anyOf": [ { "$ref": "#/definitions/operationTrait" }, { "$ref": "#/definitions/messageTrait" } ] } } }, "description": "!!Auto generated!! \n Do not manually edit. " }