├── .eslintignore ├── .eslintrc.yml ├── .github └── workflows │ ├── add-good-first-issue-labels.yml │ ├── automerge-for-humans-add-ready-to-merge-or-do-not-merge-label.yml │ ├── automerge-for-humans-merging.yml │ ├── automerge-for-humans-remove-ready-to-merge-label-on-edit.yml │ ├── automerge-orphans.yml │ ├── automerge.yml │ ├── autoupdate.yml │ ├── bounty-program-commands.yml │ ├── bump.yml │ ├── copy-updated-schema.yml │ ├── help-command.yml │ ├── if-nodejs-pr-testing.yml │ ├── if-nodejs-release.yml │ ├── if-nodejs-version-bump.yml │ ├── issues-prs-notifications.yml │ ├── lint-pr-title.yml │ ├── notify-tsc-members-mention.yml │ ├── please-take-a-look-command.yml │ ├── release-announcements.yml │ ├── scripts │ ├── README.md │ └── mailchimp │ │ ├── htmlContent.js │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json │ ├── stale-issues-prs.yml │ ├── transfer-issue.yml │ ├── update-maintainers-trigger.yaml │ ├── update-pr.yml │ └── welcome-first-time-contrib.yml ├── .gitignore ├── .npmignore ├── .releaserc ├── .sonarcloud.properties ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── bindings ├── amqp │ ├── 0.2.0 │ │ ├── channel.json │ │ ├── message.json │ │ └── operation.json │ └── 0.3.0 │ │ ├── channel.json │ │ ├── message.json │ │ └── operation.json ├── amqp1 │ └── .keep ├── anypointmq │ └── 0.0.1 │ │ ├── channel.json │ │ └── message.json ├── googlepubsub │ ├── 0.1.0 │ │ ├── channel.json │ │ └── message.json │ └── 0.2.0 │ │ ├── channel.json │ │ └── message.json ├── http │ ├── 0.1.0 │ │ ├── message.json │ │ └── operation.json │ ├── 0.2.0 │ │ ├── message.json │ │ └── operation.json │ └── 0.3.0 │ │ ├── message.json │ │ └── operation.json ├── ibmmq │ └── 0.1.0 │ │ ├── channel.json │ │ ├── message.json │ │ └── server.json ├── jms │ └── 0.0.1 │ │ ├── channel.json │ │ ├── message.json │ │ └── server.json ├── kafka │ ├── 0.1.0 │ │ ├── message.json │ │ └── operation.json │ ├── 0.3.0 │ │ ├── channel.json │ │ ├── message.json │ │ ├── operation.json │ │ └── server.json │ ├── 0.4.0 │ │ ├── channel.json │ │ ├── message.json │ │ ├── operation.json │ │ └── server.json │ └── 0.5.0 │ │ ├── channel.json │ │ ├── message.json │ │ ├── operation.json │ │ └── server.json ├── mercure │ └── .keep ├── mqtt │ ├── 0.1.0 │ │ ├── message.json │ │ ├── operation.json │ │ └── server.json │ └── 0.2.0 │ │ ├── message.json │ │ ├── operation.json │ │ └── server.json ├── nats │ └── 0.1.0 │ │ └── operation.json ├── pulsar │ └── 0.1.0 │ │ ├── channel.json │ │ └── server.json ├── redis │ └── .keep ├── sns │ ├── 0.1.0 │ │ ├── channel.json │ │ └── operation.json │ └── 0.2.0 │ │ ├── channel.json │ │ └── operation.json ├── solace │ ├── 0.2.0 │ │ ├── operation.json │ │ └── server.json │ ├── 0.3.0 │ │ ├── operation.json │ │ └── server.json │ └── 0.4.0 │ │ ├── operation.json │ │ └── server.json ├── sqs │ ├── 0.2.0 │ │ ├── channel.json │ │ └── operation.json │ └── 0.3.0 │ │ ├── channel.json │ │ └── operation.json ├── stomp │ └── .keep └── websockets │ └── 0.1.0 │ └── channel.json ├── common ├── avroSchema_v1.json └── openapiSchema_3_0.json ├── definitions ├── 1.0.0 │ ├── APIKeyHTTPSecurityScheme.json │ ├── BearerHTTPSecurityScheme.json │ ├── HTTPSecurityScheme.json │ ├── NonBearerHTTPSecurityScheme.json │ ├── Reference.json │ ├── SecurityRequirement.json │ ├── SecurityScheme.json │ ├── X509.json │ ├── apiKey.json │ ├── asymmetricEncryption.json │ ├── asyncapi.json │ ├── components.json │ ├── contact.json │ ├── externalDocs.json │ ├── info.json │ ├── license.json │ ├── message.json │ ├── messages.json │ ├── schema.json │ ├── schemas.json │ ├── server.json │ ├── serverVariable.json │ ├── serverVariables.json │ ├── symmetricEncryption.json │ ├── tag.json │ ├── topicItem.json │ ├── topics.json │ ├── userPassword.json │ ├── vendorExtension.json │ └── xml.json ├── 1.1.0 │ ├── APIKeyHTTPSecurityScheme.json │ ├── BearerHTTPSecurityScheme.json │ ├── HTTPSecurityScheme.json │ ├── NonBearerHTTPSecurityScheme.json │ ├── Reference.json │ ├── SecurityRequirement.json │ ├── SecurityScheme.json │ ├── X509.json │ ├── apiKey.json │ ├── asymmetricEncryption.json │ ├── asyncapi.json │ ├── components.json │ ├── contact.json │ ├── externalDocs.json │ ├── info.json │ ├── license.json │ ├── message.json │ ├── messages.json │ ├── operation.json │ ├── parameter.json │ ├── schema.json │ ├── schemas.json │ ├── server.json │ ├── serverVariable.json │ ├── serverVariables.json │ ├── symmetricEncryption.json │ ├── tag.json │ ├── topicItem.json │ ├── topics.json │ ├── userPassword.json │ ├── vendorExtension.json │ └── xml.json ├── 1.2.0 │ ├── APIKeyHTTPSecurityScheme.json │ ├── BearerHTTPSecurityScheme.json │ ├── HTTPSecurityScheme.json │ ├── NonBearerHTTPSecurityScheme.json │ ├── Reference.json │ ├── SecurityRequirement.json │ ├── SecurityScheme.json │ ├── X509.json │ ├── apiKey.json │ ├── asymmetricEncryption.json │ ├── asyncapi.json │ ├── components.json │ ├── contact.json │ ├── events.json │ ├── externalDocs.json │ ├── info.json │ ├── license.json │ ├── message.json │ ├── messages.json │ ├── operation.json │ ├── parameter.json │ ├── parameters.json │ ├── schema.json │ ├── schemas.json │ ├── server.json │ ├── serverVariable.json │ ├── serverVariables.json │ ├── stream.json │ ├── symmetricEncryption.json │ ├── tag.json │ ├── topicItem.json │ ├── topics.json │ ├── userPassword.json │ ├── vendorExtension.json │ └── xml.json ├── 2.0.0-rc1 │ ├── APIKeyHTTPSecurityScheme.json │ ├── BearerHTTPSecurityScheme.json │ ├── HTTPSecurityScheme.json │ ├── NonBearerHTTPSecurityScheme.json │ ├── Reference.json │ ├── ReferenceObject.json │ ├── SecurityRequirement.json │ ├── SecurityScheme.json │ ├── X509.json │ ├── apiKey.json │ ├── asymmetricEncryption.json │ ├── asyncapi.json │ ├── channelItem.json │ ├── channels.json │ ├── components.json │ ├── contact.json │ ├── correlationId.json │ ├── externalDocs.json │ ├── info.json │ ├── license.json │ ├── message.json │ ├── messageTrait.json │ ├── messages.json │ ├── oauth2Flow.json │ ├── oauth2Flows.json │ ├── oauth2Scopes.json │ ├── openIdConnect.json │ ├── operation.json │ ├── operationTrait.json │ ├── parameter.json │ ├── parameters.json │ ├── schema.json │ ├── schemas.json │ ├── server.json │ ├── serverVariable.json │ ├── serverVariables.json │ ├── specificationExtension.json │ ├── symmetricEncryption.json │ ├── tag.json │ ├── traits.json │ ├── userPassword.json │ └── xml.json ├── 2.0.0-rc2 │ ├── APIKeyHTTPSecurityScheme.json │ ├── BearerHTTPSecurityScheme.json │ ├── HTTPSecurityScheme.json │ ├── NonBearerHTTPSecurityScheme.json │ ├── Reference.json │ ├── ReferenceObject.json │ ├── SecurityRequirement.json │ ├── SecurityScheme.json │ ├── X509.json │ ├── apiKey.json │ ├── asymmetricEncryption.json │ ├── asyncapi.json │ ├── bindingsObject.json │ ├── channelItem.json │ ├── channels.json │ ├── components.json │ ├── contact.json │ ├── correlationId.json │ ├── externalDocs.json │ ├── info.json │ ├── license.json │ ├── message.json │ ├── messageTrait.json │ ├── messages.json │ ├── oauth2Flow.json │ ├── oauth2Flows.json │ ├── oauth2Scopes.json │ ├── openIdConnect.json │ ├── operation.json │ ├── operationTrait.json │ ├── parameter.json │ ├── parameters.json │ ├── schema.json │ ├── schemas.json │ ├── server.json │ ├── serverVariable.json │ ├── serverVariables.json │ ├── specificationExtension.json │ ├── symmetricEncryption.json │ ├── tag.json │ └── userPassword.json ├── 2.0.0 │ ├── APIKeyHTTPSecurityScheme.json │ ├── BearerHTTPSecurityScheme.json │ ├── HTTPSecurityScheme.json │ ├── NonBearerHTTPSecurityScheme.json │ ├── Reference.json │ ├── ReferenceObject.json │ ├── SecurityRequirement.json │ ├── SecurityScheme.json │ ├── X509.json │ ├── apiKey.json │ ├── asymmetricEncryption.json │ ├── asyncapi.json │ ├── avroSchema_v1.json │ ├── bindingsObject.json │ ├── channelItem.json │ ├── channels.json │ ├── components.json │ ├── contact.json │ ├── correlationId.json │ ├── externalDocs.json │ ├── info.json │ ├── license.json │ ├── message.json │ ├── messageTrait.json │ ├── messages.json │ ├── oauth2Flow.json │ ├── oauth2Flows.json │ ├── oauth2Scopes.json │ ├── openIdConnect.json │ ├── openapiSchema_3_0.json │ ├── operation.json │ ├── operationTrait.json │ ├── parameter.json │ ├── parameters.json │ ├── schema.json │ ├── schemas.json │ ├── server.json │ ├── serverVariable.json │ ├── serverVariables.json │ ├── specificationExtension.json │ ├── symmetricEncryption.json │ ├── tag.json │ └── userPassword.json ├── 2.1.0 │ ├── APIKeyHTTPSecurityScheme.json │ ├── BearerHTTPSecurityScheme.json │ ├── HTTPSecurityScheme.json │ ├── NonBearerHTTPSecurityScheme.json │ ├── Reference.json │ ├── ReferenceObject.json │ ├── SaslGssapiSecurityScheme.json │ ├── SaslPlainSecurityScheme.json │ ├── SaslScramSecurityScheme.json │ ├── SaslSecurityScheme.json │ ├── SecurityRequirement.json │ ├── SecurityScheme.json │ ├── X509.json │ ├── apiKey.json │ ├── asymmetricEncryption.json │ ├── asyncapi.json │ ├── avroSchema_v1.json │ ├── bindingsObject.json │ ├── channelItem.json │ ├── channels.json │ ├── components.json │ ├── contact.json │ ├── correlationId.json │ ├── externalDocs.json │ ├── info.json │ ├── license.json │ ├── message.json │ ├── messageTrait.json │ ├── messages.json │ ├── oauth2Flow.json │ ├── oauth2Flows.json │ ├── oauth2Scopes.json │ ├── openIdConnect.json │ ├── openapiSchema_3_0.json │ ├── operation.json │ ├── operationTrait.json │ ├── parameter.json │ ├── parameters.json │ ├── schema.json │ ├── schemas.json │ ├── server.json │ ├── serverVariable.json │ ├── serverVariables.json │ ├── specificationExtension.json │ ├── symmetricEncryption.json │ ├── tag.json │ └── userPassword.json ├── 2.2.0 │ ├── APIKeyHTTPSecurityScheme.json │ ├── BearerHTTPSecurityScheme.json │ ├── HTTPSecurityScheme.json │ ├── NonBearerHTTPSecurityScheme.json │ ├── Reference.json │ ├── ReferenceObject.json │ ├── SaslGssapiSecurityScheme.json │ ├── SaslPlainSecurityScheme.json │ ├── SaslScramSecurityScheme.json │ ├── SaslSecurityScheme.json │ ├── SecurityRequirement.json │ ├── SecurityScheme.json │ ├── X509.json │ ├── apiKey.json │ ├── asymmetricEncryption.json │ ├── asyncapi.json │ ├── avroSchema_v1.json │ ├── bindingsObject.json │ ├── channelItem.json │ ├── channels.json │ ├── components.json │ ├── contact.json │ ├── correlationId.json │ ├── external.json │ ├── externalDocs.json │ ├── info.json │ ├── license.json │ ├── message.json │ ├── messageTrait.json │ ├── messages.json │ ├── oauth2Flow.json │ ├── oauth2Flows.json │ ├── oauth2Scopes.json │ ├── openIdConnect.json │ ├── openapiSchema_3_0.json │ ├── operation.json │ ├── operationTrait.json │ ├── parameter.json │ ├── parameters.json │ ├── schema.json │ ├── schemas.json │ ├── server.json │ ├── serverVariable.json │ ├── serverVariables.json │ ├── specificationExtension.json │ ├── symmetricEncryption.json │ ├── tag.json │ └── userPassword.json ├── 2.3.0 │ ├── APIKeyHTTPSecurityScheme.json │ ├── BearerHTTPSecurityScheme.json │ ├── HTTPSecurityScheme.json │ ├── NonBearerHTTPSecurityScheme.json │ ├── Reference.json │ ├── ReferenceObject.json │ ├── SaslGssapiSecurityScheme.json │ ├── SaslPlainSecurityScheme.json │ ├── SaslScramSecurityScheme.json │ ├── SaslSecurityScheme.json │ ├── SecurityRequirement.json │ ├── SecurityScheme.json │ ├── X509.json │ ├── apiKey.json │ ├── asymmetricEncryption.json │ ├── asyncapi.json │ ├── avroSchema_v1.json │ ├── bindingsObject.json │ ├── channelItem.json │ ├── channels.json │ ├── components.json │ ├── contact.json │ ├── correlationId.json │ ├── external.json │ ├── externalDocs.json │ ├── info.json │ ├── license.json │ ├── message.json │ ├── messageTrait.json │ ├── messages.json │ ├── oauth2Flow.json │ ├── oauth2Flows.json │ ├── oauth2Scopes.json │ ├── openIdConnect.json │ ├── openapiSchema_3_0.json │ ├── operation.json │ ├── operationTrait.json │ ├── parameter.json │ ├── parameters.json │ ├── schema.json │ ├── schemas.json │ ├── server.json │ ├── serverVariable.json │ ├── serverVariables.json │ ├── servers.json │ ├── specificationExtension.json │ ├── symmetricEncryption.json │ ├── tag.json │ └── userPassword.json ├── 2.4.0 │ ├── APIKeyHTTPSecurityScheme.json │ ├── BearerHTTPSecurityScheme.json │ ├── HTTPSecurityScheme.json │ ├── NonBearerHTTPSecurityScheme.json │ ├── Reference.json │ ├── ReferenceObject.json │ ├── SaslGssapiSecurityScheme.json │ ├── SaslPlainSecurityScheme.json │ ├── SaslScramSecurityScheme.json │ ├── SaslSecurityScheme.json │ ├── SecurityRequirement.json │ ├── SecurityScheme.json │ ├── X509.json │ ├── apiKey.json │ ├── asymmetricEncryption.json │ ├── asyncapi.json │ ├── avroSchema_v1.json │ ├── bindingsObject.json │ ├── channelItem.json │ ├── channels.json │ ├── components.json │ ├── contact.json │ ├── correlationId.json │ ├── external.json │ ├── externalDocs.json │ ├── info.json │ ├── license.json │ ├── message.json │ ├── messageTrait.json │ ├── messages.json │ ├── oauth2Flow.json │ ├── oauth2Flows.json │ ├── oauth2Scopes.json │ ├── openIdConnect.json │ ├── openapiSchema_3_0.json │ ├── operation.json │ ├── operationTrait.json │ ├── parameter.json │ ├── parameters.json │ ├── schema.json │ ├── schemas.json │ ├── server.json │ ├── serverVariable.json │ ├── serverVariables.json │ ├── servers.json │ ├── specificationExtension.json │ ├── symmetricEncryption.json │ ├── tag.json │ └── userPassword.json ├── 2.5.0 │ ├── APIKeyHTTPSecurityScheme.json │ ├── BearerHTTPSecurityScheme.json │ ├── HTTPSecurityScheme.json │ ├── NonBearerHTTPSecurityScheme.json │ ├── Reference.json │ ├── ReferenceObject.json │ ├── SaslGssapiSecurityScheme.json │ ├── SaslPlainSecurityScheme.json │ ├── SaslScramSecurityScheme.json │ ├── SaslSecurityScheme.json │ ├── SecurityRequirement.json │ ├── SecurityScheme.json │ ├── X509.json │ ├── apiKey.json │ ├── asymmetricEncryption.json │ ├── asyncapi.json │ ├── avroSchema_v1.json │ ├── bindingsObject.json │ ├── channelItem.json │ ├── channels.json │ ├── components.json │ ├── contact.json │ ├── correlationId.json │ ├── external.json │ ├── externalDocs.json │ ├── info.json │ ├── license.json │ ├── message.json │ ├── messageTrait.json │ ├── messages.json │ ├── oauth2Flow.json │ ├── oauth2Flows.json │ ├── oauth2Scopes.json │ ├── openIdConnect.json │ ├── openapiSchema_3_0.json │ ├── operation.json │ ├── operationTrait.json │ ├── parameter.json │ ├── parameters.json │ ├── schema.json │ ├── schemas.json │ ├── server.json │ ├── serverVariable.json │ ├── serverVariables.json │ ├── servers.json │ ├── specificationExtension.json │ ├── symmetricEncryption.json │ ├── tag.json │ └── userPassword.json ├── 2.6.0 │ ├── APIKeyHTTPSecurityScheme.json │ ├── BearerHTTPSecurityScheme.json │ ├── HTTPSecurityScheme.json │ ├── NonBearerHTTPSecurityScheme.json │ ├── Reference.json │ ├── ReferenceObject.json │ ├── SaslGssapiSecurityScheme.json │ ├── SaslPlainSecurityScheme.json │ ├── SaslScramSecurityScheme.json │ ├── SaslSecurityScheme.json │ ├── SecurityRequirement.json │ ├── SecurityScheme.json │ ├── X509.json │ ├── apiKey.json │ ├── asymmetricEncryption.json │ ├── asyncapi.json │ ├── avroSchema_v1.json │ ├── bindingsObject.json │ ├── channelItem.json │ ├── channels.json │ ├── components.json │ ├── contact.json │ ├── correlationId.json │ ├── external.json │ ├── externalDocs.json │ ├── info.json │ ├── license.json │ ├── message.json │ ├── messageTrait.json │ ├── messages.json │ ├── oauth2Flow.json │ ├── oauth2Flows.json │ ├── oauth2Scopes.json │ ├── openIdConnect.json │ ├── openapiSchema_3_0.json │ ├── operation.json │ ├── operationTrait.json │ ├── parameter.json │ ├── parameters.json │ ├── schema.json │ ├── schemas.json │ ├── server.json │ ├── serverVariable.json │ ├── serverVariables.json │ ├── servers.json │ ├── specificationExtension.json │ ├── symmetricEncryption.json │ ├── tag.json │ └── userPassword.json └── 3.0.0 │ ├── APIKeyHTTPSecurityScheme.json │ ├── BearerHTTPSecurityScheme.json │ ├── HTTPSecurityScheme.json │ ├── NonBearerHTTPSecurityScheme.json │ ├── Reference.json │ ├── ReferenceObject.json │ ├── SaslGssapiSecurityScheme.json │ ├── SaslPlainSecurityScheme.json │ ├── SaslScramSecurityScheme.json │ ├── SaslSecurityScheme.json │ ├── SecurityScheme.json │ ├── X509.json │ ├── anySchema.json │ ├── apiKey.json │ ├── asymmetricEncryption.json │ ├── asyncapi.json │ ├── channel.json │ ├── channelBindingsObject.json │ ├── channelMessages.json │ ├── channels.json │ ├── components.json │ ├── contact.json │ ├── correlationId.json │ ├── externalDocs.json │ ├── info.json │ ├── infoExtensions.json │ ├── license.json │ ├── messageBindingsObject.json │ ├── messageExampleObject.json │ ├── messageObject.json │ ├── messageTrait.json │ ├── messages.json │ ├── multiFormatSchema.json │ ├── oauth2Flow.json │ ├── oauth2Flows.json │ ├── oauth2Scopes.json │ ├── openIdConnect.json │ ├── operation.json │ ├── operationBindingsObject.json │ ├── operationReply.json │ ├── operationReplyAddress.json │ ├── operationTrait.json │ ├── operations.json │ ├── parameter.json │ ├── parameters.json │ ├── schema.json │ ├── securityRequirements.json │ ├── server.json │ ├── serverBindingsObject.json │ ├── serverVariable.json │ ├── serverVariables.json │ ├── servers.json │ ├── specificationExtension.json │ ├── symmetricEncryption.json │ ├── tag.json │ └── userPassword.json ├── examples ├── 2.6.0 │ ├── APIKeyHTTPSecurityScheme.json │ ├── BearerHTTPSecurityScheme.json │ ├── ReferenceObject.json │ ├── Sasl.json │ ├── SecurityRequirement.json │ ├── SecurityScheme.json │ ├── X509.json │ ├── apiKey.json │ ├── channelItem.json │ ├── channels.json │ ├── components.json │ ├── contact.json │ ├── correlationId.json │ ├── externalDocs.json │ ├── info.json │ ├── license.json │ ├── message.json │ ├── messageTrait.json │ ├── oauth2Flow.json │ ├── operation.json │ ├── operationTrait.json │ ├── parameter.json │ ├── parameters.json │ ├── schema.json │ ├── server.json │ ├── servers.json │ ├── symmetricEncryption.json │ ├── tag.json │ └── userPassword.json └── 3.0.0 │ ├── APIKeyHTTPSecurityScheme.json │ ├── ReferenceObject.json │ ├── Sasl.json │ ├── SecurityScheme.json │ ├── X509.json │ ├── apiKey.json │ ├── channel.json │ ├── channels.json │ ├── components.json │ ├── contact.json │ ├── correlationId.json │ ├── externalDocs.json │ ├── info.json │ ├── license.json │ ├── messageObject.json │ ├── messageTrait.json │ ├── oauth2Flow.json │ ├── operation.json │ ├── operationReplyAddress.json │ ├── operationTrait.json │ ├── operations.json │ ├── parameter.json │ ├── parameters.json │ ├── server.json │ ├── serverVariable.json │ ├── servers.json │ ├── symmetricEncryption.json │ ├── tag.json │ └── userPassword.json ├── extensions ├── linkedin │ └── 0.1.0 │ │ └── schema.json └── x │ └── 0.1.0 │ └── schema.json ├── go.mod ├── go.sum ├── index.d.ts ├── index.js ├── jsconfig.json ├── migrations ├── migrate-to-version-3.md ├── migrate-to-version-4.md ├── migrate-to-version-5.md └── migrate-to-version-6.md ├── package.json ├── schemas ├── 1.0.0-without-$id.json ├── 1.0.0.json ├── 1.1.0-without-$id.json ├── 1.1.0.json ├── 1.2.0-without-$id.json ├── 1.2.0.json ├── 2.0.0-rc1-without-$id.json ├── 2.0.0-rc1.json ├── 2.0.0-rc2-without-$id.json ├── 2.0.0-rc2.json ├── 2.0.0-without-$id.json ├── 2.0.0.json ├── 2.1.0-without-$id.json ├── 2.1.0.json ├── 2.2.0-without-$id.json ├── 2.2.0.json ├── 2.3.0-without-$id.json ├── 2.3.0.json ├── 2.4.0-without-$id.json ├── 2.4.0.json ├── 2.5.0-without-$id.json ├── 2.5.0.json ├── 2.6.0-without-$id.json ├── 2.6.0.json ├── 3.0.0-without-$id.json ├── 3.0.0.json ├── README.md └── all.schema-store.json ├── scripts ├── add-new-version.js └── validate-schemas.js ├── spec-json-schemas.go ├── spec-json-schemas_test.go ├── test ├── ajv-schemes.js ├── bindings │ ├── amqp │ │ ├── amqp channel binding.test.mjs │ │ ├── amqp message binding.test.mjs │ │ └── amqp operation binding.test.mjs │ ├── anypointmq │ │ ├── anypointmq channel binding.test.mjs │ │ └── anypointmq message binding.test.mjs │ ├── googlepubsub │ │ ├── googlepubsub channel binding.test.mjs │ │ └── googlepubsub message binding.test.mjs │ ├── http │ │ ├── http message binding.test.mjs │ │ └── http operation binding.test.mjs │ ├── ibmmq │ │ ├── ibmmq channel binding.test.mjs │ │ ├── ibmmq message binding.test.mjs │ │ └── ibmmq server binding.test.mjs │ ├── jms │ │ ├── jms channel binding.test.mjs │ │ ├── jms message binding.test.mjs │ │ └── jms server binding.test.mjs │ ├── kafka │ │ ├── kafka channel binding.test.mjs │ │ ├── kafka message binding.test.mjs │ │ ├── kafka operation binding.test.mjs │ │ └── kafka server binding.test.mjs │ ├── mqtt │ │ ├── mqtt message binding.test.mjs │ │ ├── mqtt operation binding.test.mjs │ │ └── mqtt server binding.test.mjs │ ├── nats │ │ └── nats operation binding.test.mjs │ ├── pulsar │ │ ├── pulsar channel binding.test.mjs │ │ └── pulsar server binding.test.mjs │ ├── sns │ │ ├── sns channel binding.test.mjs │ │ └── sns operation binding.test.mjs │ ├── solace │ │ ├── solace operation binding.test.mjs │ │ └── solace server binding.test.mjs │ ├── sqs │ │ ├── sqs channel binding.test.mjs │ │ └── sqs operation binding.test.mjs │ └── websockets │ │ └── websockets channel binding.test.mjs ├── bundler.test.mjs ├── definitions │ ├── 3.0.0 │ │ ├── models │ │ │ ├── channel │ │ │ │ ├── channel parameter.test.mjs │ │ │ │ ├── channel.test.mjs │ │ │ │ ├── message correlation id.test.mjs │ │ │ │ ├── message example.test.mjs │ │ │ │ ├── message trait.test.mjs │ │ │ │ └── message.test.mjs │ │ │ ├── info │ │ │ │ ├── contact.test.mjs │ │ │ │ ├── info extensions.test.mjs │ │ │ │ ├── info properties │ │ │ │ │ ├── contact.mjs │ │ │ │ │ ├── description.mjs │ │ │ │ │ ├── externalDocs.mjs │ │ │ │ │ ├── license.mjs │ │ │ │ │ ├── tags.mjs │ │ │ │ │ └── termsOfService.mjs │ │ │ │ ├── info.test.mjs │ │ │ │ └── licence.test.mjs │ │ │ ├── operation │ │ │ │ ├── operation reply address.test.mjs │ │ │ │ ├── operation reply.test.mjs │ │ │ │ ├── operation trait.test.mjs │ │ │ │ └── operation.test.mjs │ │ │ ├── reference │ │ │ │ ├── reference object.test.mjs │ │ │ │ └── reference.test.mjs │ │ │ ├── server │ │ │ │ ├── server variable.test.mjs │ │ │ │ └── server.test.mjs │ │ │ └── tag │ │ │ │ └── tag.test.mjs │ │ └── security │ │ │ ├── apiKey.test.mjs │ │ │ ├── default-implementation.test.mjs │ │ │ ├── http │ │ │ ├── http.test.mjs │ │ │ ├── httpApiKey │ │ │ │ ├── example.json │ │ │ │ ├── extended.json │ │ │ │ ├── only required properties.json │ │ │ │ ├── without required properties.json │ │ │ │ └── wrongly extended.json │ │ │ ├── httpBasic │ │ │ │ ├── example.json │ │ │ │ ├── extended.json │ │ │ │ ├── only required properties.json │ │ │ │ ├── without required properties.json │ │ │ │ └── wrongly extended.json │ │ │ └── httpBearer │ │ │ │ ├── example.json │ │ │ │ ├── extended.json │ │ │ │ ├── only required properties.json │ │ │ │ ├── without required properties.json │ │ │ │ └── wrongly extended.json │ │ │ ├── oauth2 │ │ │ ├── oauth2 authorization code flow.test.mjs │ │ │ ├── oauth2 client credentials flow.test.mjs │ │ │ ├── oauth2 flows.test.mjs │ │ │ ├── oauth2 implicit flow.test.mjs │ │ │ └── oauth2 password flow.test.mjs │ │ │ ├── openIdconnect.test.mjs │ │ │ └── saslSecurityScheme.test.mjs │ └── base-schema-test.mjs ├── docs │ └── 3.0.0 │ │ ├── streetlights-all.json │ │ ├── streetlights-asyncapi.json │ │ ├── streetlights-avro.json │ │ ├── streetlights-json.json │ │ ├── streetlights-openapi.json │ │ └── streetlights-unknown.json ├── fixtures │ └── asyncapi.yml ├── schemas.test.mjs └── test-helper.mjs ├── tools └── bundler │ ├── index.js │ ├── package-lock.json │ └── package.json ├── tsconfig.json └── vite.config.mts /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/workflows/add-good-first-issue-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/add-good-first-issue-labels.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-for-humans-merging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/automerge-for-humans-merging.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-orphans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/automerge-orphans.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/autoupdate.yml -------------------------------------------------------------------------------- /.github/workflows/bounty-program-commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/bounty-program-commands.yml -------------------------------------------------------------------------------- /.github/workflows/bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/bump.yml -------------------------------------------------------------------------------- /.github/workflows/copy-updated-schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/copy-updated-schema.yml -------------------------------------------------------------------------------- /.github/workflows/help-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/help-command.yml -------------------------------------------------------------------------------- /.github/workflows/if-nodejs-pr-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/if-nodejs-pr-testing.yml -------------------------------------------------------------------------------- /.github/workflows/if-nodejs-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/if-nodejs-release.yml -------------------------------------------------------------------------------- /.github/workflows/if-nodejs-version-bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/if-nodejs-version-bump.yml -------------------------------------------------------------------------------- /.github/workflows/issues-prs-notifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/issues-prs-notifications.yml -------------------------------------------------------------------------------- /.github/workflows/lint-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/lint-pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/notify-tsc-members-mention.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/notify-tsc-members-mention.yml -------------------------------------------------------------------------------- /.github/workflows/please-take-a-look-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/please-take-a-look-command.yml -------------------------------------------------------------------------------- /.github/workflows/release-announcements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/release-announcements.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/scripts/README.md -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/htmlContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/scripts/mailchimp/htmlContent.js -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/scripts/mailchimp/index.js -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/scripts/mailchimp/package-lock.json -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/scripts/mailchimp/package.json -------------------------------------------------------------------------------- /.github/workflows/stale-issues-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/stale-issues-prs.yml -------------------------------------------------------------------------------- /.github/workflows/transfer-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/transfer-issue.yml -------------------------------------------------------------------------------- /.github/workflows/update-maintainers-trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/update-maintainers-trigger.yaml -------------------------------------------------------------------------------- /.github/workflows/update-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/update-pr.yml -------------------------------------------------------------------------------- /.github/workflows/welcome-first-time-contrib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.github/workflows/welcome-first-time-contrib.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .nyc_output 3 | .vscode 4 | coverage 5 | 6 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.npmignore -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.releaserc -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/.sonarcloud.properties -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/README.md -------------------------------------------------------------------------------- /bindings/amqp/0.2.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/amqp/0.2.0/channel.json -------------------------------------------------------------------------------- /bindings/amqp/0.2.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/amqp/0.2.0/message.json -------------------------------------------------------------------------------- /bindings/amqp/0.2.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/amqp/0.2.0/operation.json -------------------------------------------------------------------------------- /bindings/amqp/0.3.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/amqp/0.3.0/channel.json -------------------------------------------------------------------------------- /bindings/amqp/0.3.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/amqp/0.3.0/message.json -------------------------------------------------------------------------------- /bindings/amqp/0.3.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/amqp/0.3.0/operation.json -------------------------------------------------------------------------------- /bindings/amqp1/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bindings/anypointmq/0.0.1/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/anypointmq/0.0.1/channel.json -------------------------------------------------------------------------------- /bindings/anypointmq/0.0.1/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/anypointmq/0.0.1/message.json -------------------------------------------------------------------------------- /bindings/googlepubsub/0.1.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/googlepubsub/0.1.0/channel.json -------------------------------------------------------------------------------- /bindings/googlepubsub/0.1.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/googlepubsub/0.1.0/message.json -------------------------------------------------------------------------------- /bindings/googlepubsub/0.2.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/googlepubsub/0.2.0/channel.json -------------------------------------------------------------------------------- /bindings/googlepubsub/0.2.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/googlepubsub/0.2.0/message.json -------------------------------------------------------------------------------- /bindings/http/0.1.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/http/0.1.0/message.json -------------------------------------------------------------------------------- /bindings/http/0.1.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/http/0.1.0/operation.json -------------------------------------------------------------------------------- /bindings/http/0.2.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/http/0.2.0/message.json -------------------------------------------------------------------------------- /bindings/http/0.2.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/http/0.2.0/operation.json -------------------------------------------------------------------------------- /bindings/http/0.3.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/http/0.3.0/message.json -------------------------------------------------------------------------------- /bindings/http/0.3.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/http/0.3.0/operation.json -------------------------------------------------------------------------------- /bindings/ibmmq/0.1.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/ibmmq/0.1.0/channel.json -------------------------------------------------------------------------------- /bindings/ibmmq/0.1.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/ibmmq/0.1.0/message.json -------------------------------------------------------------------------------- /bindings/ibmmq/0.1.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/ibmmq/0.1.0/server.json -------------------------------------------------------------------------------- /bindings/jms/0.0.1/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/jms/0.0.1/channel.json -------------------------------------------------------------------------------- /bindings/jms/0.0.1/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/jms/0.0.1/message.json -------------------------------------------------------------------------------- /bindings/jms/0.0.1/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/jms/0.0.1/server.json -------------------------------------------------------------------------------- /bindings/kafka/0.1.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/kafka/0.1.0/message.json -------------------------------------------------------------------------------- /bindings/kafka/0.1.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/kafka/0.1.0/operation.json -------------------------------------------------------------------------------- /bindings/kafka/0.3.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/kafka/0.3.0/channel.json -------------------------------------------------------------------------------- /bindings/kafka/0.3.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/kafka/0.3.0/message.json -------------------------------------------------------------------------------- /bindings/kafka/0.3.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/kafka/0.3.0/operation.json -------------------------------------------------------------------------------- /bindings/kafka/0.3.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/kafka/0.3.0/server.json -------------------------------------------------------------------------------- /bindings/kafka/0.4.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/kafka/0.4.0/channel.json -------------------------------------------------------------------------------- /bindings/kafka/0.4.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/kafka/0.4.0/message.json -------------------------------------------------------------------------------- /bindings/kafka/0.4.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/kafka/0.4.0/operation.json -------------------------------------------------------------------------------- /bindings/kafka/0.4.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/kafka/0.4.0/server.json -------------------------------------------------------------------------------- /bindings/kafka/0.5.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/kafka/0.5.0/channel.json -------------------------------------------------------------------------------- /bindings/kafka/0.5.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/kafka/0.5.0/message.json -------------------------------------------------------------------------------- /bindings/kafka/0.5.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/kafka/0.5.0/operation.json -------------------------------------------------------------------------------- /bindings/kafka/0.5.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/kafka/0.5.0/server.json -------------------------------------------------------------------------------- /bindings/mercure/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bindings/mqtt/0.1.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/mqtt/0.1.0/message.json -------------------------------------------------------------------------------- /bindings/mqtt/0.1.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/mqtt/0.1.0/operation.json -------------------------------------------------------------------------------- /bindings/mqtt/0.1.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/mqtt/0.1.0/server.json -------------------------------------------------------------------------------- /bindings/mqtt/0.2.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/mqtt/0.2.0/message.json -------------------------------------------------------------------------------- /bindings/mqtt/0.2.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/mqtt/0.2.0/operation.json -------------------------------------------------------------------------------- /bindings/mqtt/0.2.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/mqtt/0.2.0/server.json -------------------------------------------------------------------------------- /bindings/nats/0.1.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/nats/0.1.0/operation.json -------------------------------------------------------------------------------- /bindings/pulsar/0.1.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/pulsar/0.1.0/channel.json -------------------------------------------------------------------------------- /bindings/pulsar/0.1.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/pulsar/0.1.0/server.json -------------------------------------------------------------------------------- /bindings/redis/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bindings/sns/0.1.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/sns/0.1.0/channel.json -------------------------------------------------------------------------------- /bindings/sns/0.1.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/sns/0.1.0/operation.json -------------------------------------------------------------------------------- /bindings/sns/0.2.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/sns/0.2.0/channel.json -------------------------------------------------------------------------------- /bindings/sns/0.2.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/sns/0.2.0/operation.json -------------------------------------------------------------------------------- /bindings/solace/0.2.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/solace/0.2.0/operation.json -------------------------------------------------------------------------------- /bindings/solace/0.2.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/solace/0.2.0/server.json -------------------------------------------------------------------------------- /bindings/solace/0.3.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/solace/0.3.0/operation.json -------------------------------------------------------------------------------- /bindings/solace/0.3.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/solace/0.3.0/server.json -------------------------------------------------------------------------------- /bindings/solace/0.4.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/solace/0.4.0/operation.json -------------------------------------------------------------------------------- /bindings/solace/0.4.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/solace/0.4.0/server.json -------------------------------------------------------------------------------- /bindings/sqs/0.2.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/sqs/0.2.0/channel.json -------------------------------------------------------------------------------- /bindings/sqs/0.2.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/sqs/0.2.0/operation.json -------------------------------------------------------------------------------- /bindings/sqs/0.3.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/sqs/0.3.0/channel.json -------------------------------------------------------------------------------- /bindings/sqs/0.3.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/sqs/0.3.0/operation.json -------------------------------------------------------------------------------- /bindings/stomp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bindings/websockets/0.1.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/bindings/websockets/0.1.0/channel.json -------------------------------------------------------------------------------- /common/avroSchema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/common/avroSchema_v1.json -------------------------------------------------------------------------------- /common/openapiSchema_3_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/common/openapiSchema_3_0.json -------------------------------------------------------------------------------- /definitions/1.0.0/APIKeyHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/APIKeyHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/1.0.0/BearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/BearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/1.0.0/HTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/HTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/1.0.0/NonBearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/NonBearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/1.0.0/Reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/Reference.json -------------------------------------------------------------------------------- /definitions/1.0.0/SecurityRequirement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/SecurityRequirement.json -------------------------------------------------------------------------------- /definitions/1.0.0/SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/SecurityScheme.json -------------------------------------------------------------------------------- /definitions/1.0.0/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/X509.json -------------------------------------------------------------------------------- /definitions/1.0.0/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/apiKey.json -------------------------------------------------------------------------------- /definitions/1.0.0/asymmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/asymmetricEncryption.json -------------------------------------------------------------------------------- /definitions/1.0.0/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/asyncapi.json -------------------------------------------------------------------------------- /definitions/1.0.0/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/components.json -------------------------------------------------------------------------------- /definitions/1.0.0/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/contact.json -------------------------------------------------------------------------------- /definitions/1.0.0/externalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/externalDocs.json -------------------------------------------------------------------------------- /definitions/1.0.0/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/info.json -------------------------------------------------------------------------------- /definitions/1.0.0/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/license.json -------------------------------------------------------------------------------- /definitions/1.0.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/message.json -------------------------------------------------------------------------------- /definitions/1.0.0/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/messages.json -------------------------------------------------------------------------------- /definitions/1.0.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/schema.json -------------------------------------------------------------------------------- /definitions/1.0.0/schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/schemas.json -------------------------------------------------------------------------------- /definitions/1.0.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/server.json -------------------------------------------------------------------------------- /definitions/1.0.0/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/serverVariable.json -------------------------------------------------------------------------------- /definitions/1.0.0/serverVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/serverVariables.json -------------------------------------------------------------------------------- /definitions/1.0.0/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/symmetricEncryption.json -------------------------------------------------------------------------------- /definitions/1.0.0/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/tag.json -------------------------------------------------------------------------------- /definitions/1.0.0/topicItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/topicItem.json -------------------------------------------------------------------------------- /definitions/1.0.0/topics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/topics.json -------------------------------------------------------------------------------- /definitions/1.0.0/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/userPassword.json -------------------------------------------------------------------------------- /definitions/1.0.0/vendorExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/vendorExtension.json -------------------------------------------------------------------------------- /definitions/1.0.0/xml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.0.0/xml.json -------------------------------------------------------------------------------- /definitions/1.1.0/APIKeyHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/APIKeyHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/1.1.0/BearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/BearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/1.1.0/HTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/HTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/1.1.0/NonBearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/NonBearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/1.1.0/Reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/Reference.json -------------------------------------------------------------------------------- /definitions/1.1.0/SecurityRequirement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/SecurityRequirement.json -------------------------------------------------------------------------------- /definitions/1.1.0/SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/SecurityScheme.json -------------------------------------------------------------------------------- /definitions/1.1.0/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/X509.json -------------------------------------------------------------------------------- /definitions/1.1.0/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/apiKey.json -------------------------------------------------------------------------------- /definitions/1.1.0/asymmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/asymmetricEncryption.json -------------------------------------------------------------------------------- /definitions/1.1.0/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/asyncapi.json -------------------------------------------------------------------------------- /definitions/1.1.0/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/components.json -------------------------------------------------------------------------------- /definitions/1.1.0/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/contact.json -------------------------------------------------------------------------------- /definitions/1.1.0/externalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/externalDocs.json -------------------------------------------------------------------------------- /definitions/1.1.0/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/info.json -------------------------------------------------------------------------------- /definitions/1.1.0/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/license.json -------------------------------------------------------------------------------- /definitions/1.1.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/message.json -------------------------------------------------------------------------------- /definitions/1.1.0/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/messages.json -------------------------------------------------------------------------------- /definitions/1.1.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/operation.json -------------------------------------------------------------------------------- /definitions/1.1.0/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/parameter.json -------------------------------------------------------------------------------- /definitions/1.1.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/schema.json -------------------------------------------------------------------------------- /definitions/1.1.0/schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/schemas.json -------------------------------------------------------------------------------- /definitions/1.1.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/server.json -------------------------------------------------------------------------------- /definitions/1.1.0/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/serverVariable.json -------------------------------------------------------------------------------- /definitions/1.1.0/serverVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/serverVariables.json -------------------------------------------------------------------------------- /definitions/1.1.0/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/symmetricEncryption.json -------------------------------------------------------------------------------- /definitions/1.1.0/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/tag.json -------------------------------------------------------------------------------- /definitions/1.1.0/topicItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/topicItem.json -------------------------------------------------------------------------------- /definitions/1.1.0/topics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/topics.json -------------------------------------------------------------------------------- /definitions/1.1.0/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/userPassword.json -------------------------------------------------------------------------------- /definitions/1.1.0/vendorExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/vendorExtension.json -------------------------------------------------------------------------------- /definitions/1.1.0/xml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.1.0/xml.json -------------------------------------------------------------------------------- /definitions/1.2.0/APIKeyHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/APIKeyHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/1.2.0/BearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/BearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/1.2.0/HTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/HTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/1.2.0/NonBearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/NonBearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/1.2.0/Reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/Reference.json -------------------------------------------------------------------------------- /definitions/1.2.0/SecurityRequirement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/SecurityRequirement.json -------------------------------------------------------------------------------- /definitions/1.2.0/SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/SecurityScheme.json -------------------------------------------------------------------------------- /definitions/1.2.0/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/X509.json -------------------------------------------------------------------------------- /definitions/1.2.0/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/apiKey.json -------------------------------------------------------------------------------- /definitions/1.2.0/asymmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/asymmetricEncryption.json -------------------------------------------------------------------------------- /definitions/1.2.0/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/asyncapi.json -------------------------------------------------------------------------------- /definitions/1.2.0/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/components.json -------------------------------------------------------------------------------- /definitions/1.2.0/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/contact.json -------------------------------------------------------------------------------- /definitions/1.2.0/events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/events.json -------------------------------------------------------------------------------- /definitions/1.2.0/externalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/externalDocs.json -------------------------------------------------------------------------------- /definitions/1.2.0/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/info.json -------------------------------------------------------------------------------- /definitions/1.2.0/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/license.json -------------------------------------------------------------------------------- /definitions/1.2.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/message.json -------------------------------------------------------------------------------- /definitions/1.2.0/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/messages.json -------------------------------------------------------------------------------- /definitions/1.2.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/operation.json -------------------------------------------------------------------------------- /definitions/1.2.0/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/parameter.json -------------------------------------------------------------------------------- /definitions/1.2.0/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/parameters.json -------------------------------------------------------------------------------- /definitions/1.2.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/schema.json -------------------------------------------------------------------------------- /definitions/1.2.0/schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/schemas.json -------------------------------------------------------------------------------- /definitions/1.2.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/server.json -------------------------------------------------------------------------------- /definitions/1.2.0/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/serverVariable.json -------------------------------------------------------------------------------- /definitions/1.2.0/serverVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/serverVariables.json -------------------------------------------------------------------------------- /definitions/1.2.0/stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/stream.json -------------------------------------------------------------------------------- /definitions/1.2.0/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/symmetricEncryption.json -------------------------------------------------------------------------------- /definitions/1.2.0/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/tag.json -------------------------------------------------------------------------------- /definitions/1.2.0/topicItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/topicItem.json -------------------------------------------------------------------------------- /definitions/1.2.0/topics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/topics.json -------------------------------------------------------------------------------- /definitions/1.2.0/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/userPassword.json -------------------------------------------------------------------------------- /definitions/1.2.0/vendorExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/vendorExtension.json -------------------------------------------------------------------------------- /definitions/1.2.0/xml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/1.2.0/xml.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/APIKeyHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/APIKeyHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/BearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/BearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/HTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/HTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/Reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/Reference.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/ReferenceObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/ReferenceObject.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/SecurityRequirement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/SecurityRequirement.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/SecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/X509.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/apiKey.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/asymmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/asymmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/asyncapi.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/channelItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/channelItem.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/channels.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/components.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/contact.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/correlationId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/correlationId.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/externalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/externalDocs.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/info.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/license.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/message.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/messageTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/messageTrait.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/messages.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/oauth2Flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/oauth2Flow.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/oauth2Flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/oauth2Flows.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/oauth2Scopes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/oauth2Scopes.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/openIdConnect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/openIdConnect.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/operation.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/operationTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/operationTrait.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/parameter.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/parameters.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/schema.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/schemas.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/server.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/serverVariable.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/serverVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/serverVariables.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/specificationExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/specificationExtension.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/symmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/tag.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/traits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/traits.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/userPassword.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc1/xml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc1/xml.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/HTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/HTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/Reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/Reference.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/ReferenceObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/ReferenceObject.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/SecurityRequirement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/SecurityRequirement.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/SecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/X509.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/apiKey.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/asymmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/asymmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/asyncapi.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/bindingsObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/bindingsObject.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/channelItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/channelItem.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/channels.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/components.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/contact.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/correlationId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/correlationId.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/externalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/externalDocs.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/info.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/license.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/message.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/messageTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/messageTrait.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/messages.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/oauth2Flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/oauth2Flow.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/oauth2Flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/oauth2Flows.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/oauth2Scopes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/oauth2Scopes.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/openIdConnect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/openIdConnect.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/operation.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/operationTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/operationTrait.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/parameter.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/parameters.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/schema.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/schemas.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/server.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/serverVariable.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/serverVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/serverVariables.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/specificationExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/specificationExtension.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/symmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/tag.json -------------------------------------------------------------------------------- /definitions/2.0.0-rc2/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0-rc2/userPassword.json -------------------------------------------------------------------------------- /definitions/2.0.0/APIKeyHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/APIKeyHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.0.0/BearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/BearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.0.0/HTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/HTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.0.0/NonBearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/NonBearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.0.0/Reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/Reference.json -------------------------------------------------------------------------------- /definitions/2.0.0/ReferenceObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/ReferenceObject.json -------------------------------------------------------------------------------- /definitions/2.0.0/SecurityRequirement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/SecurityRequirement.json -------------------------------------------------------------------------------- /definitions/2.0.0/SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/SecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.0.0/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/X509.json -------------------------------------------------------------------------------- /definitions/2.0.0/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/apiKey.json -------------------------------------------------------------------------------- /definitions/2.0.0/asymmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/asymmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.0.0/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/asyncapi.json -------------------------------------------------------------------------------- /definitions/2.0.0/avroSchema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/avroSchema_v1.json -------------------------------------------------------------------------------- /definitions/2.0.0/bindingsObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/bindingsObject.json -------------------------------------------------------------------------------- /definitions/2.0.0/channelItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/channelItem.json -------------------------------------------------------------------------------- /definitions/2.0.0/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/channels.json -------------------------------------------------------------------------------- /definitions/2.0.0/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/components.json -------------------------------------------------------------------------------- /definitions/2.0.0/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/contact.json -------------------------------------------------------------------------------- /definitions/2.0.0/correlationId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/correlationId.json -------------------------------------------------------------------------------- /definitions/2.0.0/externalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/externalDocs.json -------------------------------------------------------------------------------- /definitions/2.0.0/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/info.json -------------------------------------------------------------------------------- /definitions/2.0.0/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/license.json -------------------------------------------------------------------------------- /definitions/2.0.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/message.json -------------------------------------------------------------------------------- /definitions/2.0.0/messageTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/messageTrait.json -------------------------------------------------------------------------------- /definitions/2.0.0/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/messages.json -------------------------------------------------------------------------------- /definitions/2.0.0/oauth2Flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/oauth2Flow.json -------------------------------------------------------------------------------- /definitions/2.0.0/oauth2Flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/oauth2Flows.json -------------------------------------------------------------------------------- /definitions/2.0.0/oauth2Scopes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/oauth2Scopes.json -------------------------------------------------------------------------------- /definitions/2.0.0/openIdConnect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/openIdConnect.json -------------------------------------------------------------------------------- /definitions/2.0.0/openapiSchema_3_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/openapiSchema_3_0.json -------------------------------------------------------------------------------- /definitions/2.0.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/operation.json -------------------------------------------------------------------------------- /definitions/2.0.0/operationTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/operationTrait.json -------------------------------------------------------------------------------- /definitions/2.0.0/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/parameter.json -------------------------------------------------------------------------------- /definitions/2.0.0/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/parameters.json -------------------------------------------------------------------------------- /definitions/2.0.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/schema.json -------------------------------------------------------------------------------- /definitions/2.0.0/schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/schemas.json -------------------------------------------------------------------------------- /definitions/2.0.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/server.json -------------------------------------------------------------------------------- /definitions/2.0.0/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/serverVariable.json -------------------------------------------------------------------------------- /definitions/2.0.0/serverVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/serverVariables.json -------------------------------------------------------------------------------- /definitions/2.0.0/specificationExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/specificationExtension.json -------------------------------------------------------------------------------- /definitions/2.0.0/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/symmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.0.0/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/tag.json -------------------------------------------------------------------------------- /definitions/2.0.0/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.0.0/userPassword.json -------------------------------------------------------------------------------- /definitions/2.1.0/APIKeyHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/APIKeyHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.1.0/BearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/BearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.1.0/HTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/HTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.1.0/NonBearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/NonBearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.1.0/Reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/Reference.json -------------------------------------------------------------------------------- /definitions/2.1.0/ReferenceObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/ReferenceObject.json -------------------------------------------------------------------------------- /definitions/2.1.0/SaslGssapiSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/SaslGssapiSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.1.0/SaslPlainSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/SaslPlainSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.1.0/SaslScramSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/SaslScramSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.1.0/SaslSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/SaslSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.1.0/SecurityRequirement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/SecurityRequirement.json -------------------------------------------------------------------------------- /definitions/2.1.0/SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/SecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.1.0/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/X509.json -------------------------------------------------------------------------------- /definitions/2.1.0/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/apiKey.json -------------------------------------------------------------------------------- /definitions/2.1.0/asymmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/asymmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.1.0/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/asyncapi.json -------------------------------------------------------------------------------- /definitions/2.1.0/avroSchema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/avroSchema_v1.json -------------------------------------------------------------------------------- /definitions/2.1.0/bindingsObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/bindingsObject.json -------------------------------------------------------------------------------- /definitions/2.1.0/channelItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/channelItem.json -------------------------------------------------------------------------------- /definitions/2.1.0/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/channels.json -------------------------------------------------------------------------------- /definitions/2.1.0/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/components.json -------------------------------------------------------------------------------- /definitions/2.1.0/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/contact.json -------------------------------------------------------------------------------- /definitions/2.1.0/correlationId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/correlationId.json -------------------------------------------------------------------------------- /definitions/2.1.0/externalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/externalDocs.json -------------------------------------------------------------------------------- /definitions/2.1.0/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/info.json -------------------------------------------------------------------------------- /definitions/2.1.0/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/license.json -------------------------------------------------------------------------------- /definitions/2.1.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/message.json -------------------------------------------------------------------------------- /definitions/2.1.0/messageTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/messageTrait.json -------------------------------------------------------------------------------- /definitions/2.1.0/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/messages.json -------------------------------------------------------------------------------- /definitions/2.1.0/oauth2Flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/oauth2Flow.json -------------------------------------------------------------------------------- /definitions/2.1.0/oauth2Flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/oauth2Flows.json -------------------------------------------------------------------------------- /definitions/2.1.0/oauth2Scopes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/oauth2Scopes.json -------------------------------------------------------------------------------- /definitions/2.1.0/openIdConnect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/openIdConnect.json -------------------------------------------------------------------------------- /definitions/2.1.0/openapiSchema_3_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/openapiSchema_3_0.json -------------------------------------------------------------------------------- /definitions/2.1.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/operation.json -------------------------------------------------------------------------------- /definitions/2.1.0/operationTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/operationTrait.json -------------------------------------------------------------------------------- /definitions/2.1.0/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/parameter.json -------------------------------------------------------------------------------- /definitions/2.1.0/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/parameters.json -------------------------------------------------------------------------------- /definitions/2.1.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/schema.json -------------------------------------------------------------------------------- /definitions/2.1.0/schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/schemas.json -------------------------------------------------------------------------------- /definitions/2.1.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/server.json -------------------------------------------------------------------------------- /definitions/2.1.0/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/serverVariable.json -------------------------------------------------------------------------------- /definitions/2.1.0/serverVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/serverVariables.json -------------------------------------------------------------------------------- /definitions/2.1.0/specificationExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/specificationExtension.json -------------------------------------------------------------------------------- /definitions/2.1.0/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/symmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.1.0/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/tag.json -------------------------------------------------------------------------------- /definitions/2.1.0/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.1.0/userPassword.json -------------------------------------------------------------------------------- /definitions/2.2.0/APIKeyHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/APIKeyHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.2.0/BearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/BearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.2.0/HTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/HTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.2.0/NonBearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/NonBearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.2.0/Reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/Reference.json -------------------------------------------------------------------------------- /definitions/2.2.0/ReferenceObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/ReferenceObject.json -------------------------------------------------------------------------------- /definitions/2.2.0/SaslGssapiSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/SaslGssapiSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.2.0/SaslPlainSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/SaslPlainSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.2.0/SaslScramSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/SaslScramSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.2.0/SaslSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/SaslSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.2.0/SecurityRequirement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/SecurityRequirement.json -------------------------------------------------------------------------------- /definitions/2.2.0/SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/SecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.2.0/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/X509.json -------------------------------------------------------------------------------- /definitions/2.2.0/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/apiKey.json -------------------------------------------------------------------------------- /definitions/2.2.0/asymmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/asymmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.2.0/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/asyncapi.json -------------------------------------------------------------------------------- /definitions/2.2.0/avroSchema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/avroSchema_v1.json -------------------------------------------------------------------------------- /definitions/2.2.0/bindingsObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/bindingsObject.json -------------------------------------------------------------------------------- /definitions/2.2.0/channelItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/channelItem.json -------------------------------------------------------------------------------- /definitions/2.2.0/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/channels.json -------------------------------------------------------------------------------- /definitions/2.2.0/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/components.json -------------------------------------------------------------------------------- /definitions/2.2.0/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/contact.json -------------------------------------------------------------------------------- /definitions/2.2.0/correlationId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/correlationId.json -------------------------------------------------------------------------------- /definitions/2.2.0/external.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/external.json -------------------------------------------------------------------------------- /definitions/2.2.0/externalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/externalDocs.json -------------------------------------------------------------------------------- /definitions/2.2.0/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/info.json -------------------------------------------------------------------------------- /definitions/2.2.0/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/license.json -------------------------------------------------------------------------------- /definitions/2.2.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/message.json -------------------------------------------------------------------------------- /definitions/2.2.0/messageTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/messageTrait.json -------------------------------------------------------------------------------- /definitions/2.2.0/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/messages.json -------------------------------------------------------------------------------- /definitions/2.2.0/oauth2Flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/oauth2Flow.json -------------------------------------------------------------------------------- /definitions/2.2.0/oauth2Flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/oauth2Flows.json -------------------------------------------------------------------------------- /definitions/2.2.0/oauth2Scopes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/oauth2Scopes.json -------------------------------------------------------------------------------- /definitions/2.2.0/openIdConnect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/openIdConnect.json -------------------------------------------------------------------------------- /definitions/2.2.0/openapiSchema_3_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/openapiSchema_3_0.json -------------------------------------------------------------------------------- /definitions/2.2.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/operation.json -------------------------------------------------------------------------------- /definitions/2.2.0/operationTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/operationTrait.json -------------------------------------------------------------------------------- /definitions/2.2.0/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/parameter.json -------------------------------------------------------------------------------- /definitions/2.2.0/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/parameters.json -------------------------------------------------------------------------------- /definitions/2.2.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/schema.json -------------------------------------------------------------------------------- /definitions/2.2.0/schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/schemas.json -------------------------------------------------------------------------------- /definitions/2.2.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/server.json -------------------------------------------------------------------------------- /definitions/2.2.0/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/serverVariable.json -------------------------------------------------------------------------------- /definitions/2.2.0/serverVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/serverVariables.json -------------------------------------------------------------------------------- /definitions/2.2.0/specificationExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/specificationExtension.json -------------------------------------------------------------------------------- /definitions/2.2.0/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/symmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.2.0/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/tag.json -------------------------------------------------------------------------------- /definitions/2.2.0/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.2.0/userPassword.json -------------------------------------------------------------------------------- /definitions/2.3.0/APIKeyHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/APIKeyHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.3.0/BearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/BearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.3.0/HTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/HTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.3.0/NonBearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/NonBearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.3.0/Reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/Reference.json -------------------------------------------------------------------------------- /definitions/2.3.0/ReferenceObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/ReferenceObject.json -------------------------------------------------------------------------------- /definitions/2.3.0/SaslGssapiSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/SaslGssapiSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.3.0/SaslPlainSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/SaslPlainSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.3.0/SaslScramSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/SaslScramSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.3.0/SaslSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/SaslSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.3.0/SecurityRequirement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/SecurityRequirement.json -------------------------------------------------------------------------------- /definitions/2.3.0/SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/SecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.3.0/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/X509.json -------------------------------------------------------------------------------- /definitions/2.3.0/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/apiKey.json -------------------------------------------------------------------------------- /definitions/2.3.0/asymmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/asymmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.3.0/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/asyncapi.json -------------------------------------------------------------------------------- /definitions/2.3.0/avroSchema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/avroSchema_v1.json -------------------------------------------------------------------------------- /definitions/2.3.0/bindingsObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/bindingsObject.json -------------------------------------------------------------------------------- /definitions/2.3.0/channelItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/channelItem.json -------------------------------------------------------------------------------- /definitions/2.3.0/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/channels.json -------------------------------------------------------------------------------- /definitions/2.3.0/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/components.json -------------------------------------------------------------------------------- /definitions/2.3.0/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/contact.json -------------------------------------------------------------------------------- /definitions/2.3.0/correlationId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/correlationId.json -------------------------------------------------------------------------------- /definitions/2.3.0/external.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/external.json -------------------------------------------------------------------------------- /definitions/2.3.0/externalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/externalDocs.json -------------------------------------------------------------------------------- /definitions/2.3.0/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/info.json -------------------------------------------------------------------------------- /definitions/2.3.0/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/license.json -------------------------------------------------------------------------------- /definitions/2.3.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/message.json -------------------------------------------------------------------------------- /definitions/2.3.0/messageTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/messageTrait.json -------------------------------------------------------------------------------- /definitions/2.3.0/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/messages.json -------------------------------------------------------------------------------- /definitions/2.3.0/oauth2Flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/oauth2Flow.json -------------------------------------------------------------------------------- /definitions/2.3.0/oauth2Flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/oauth2Flows.json -------------------------------------------------------------------------------- /definitions/2.3.0/oauth2Scopes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/oauth2Scopes.json -------------------------------------------------------------------------------- /definitions/2.3.0/openIdConnect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/openIdConnect.json -------------------------------------------------------------------------------- /definitions/2.3.0/openapiSchema_3_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/openapiSchema_3_0.json -------------------------------------------------------------------------------- /definitions/2.3.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/operation.json -------------------------------------------------------------------------------- /definitions/2.3.0/operationTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/operationTrait.json -------------------------------------------------------------------------------- /definitions/2.3.0/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/parameter.json -------------------------------------------------------------------------------- /definitions/2.3.0/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/parameters.json -------------------------------------------------------------------------------- /definitions/2.3.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/schema.json -------------------------------------------------------------------------------- /definitions/2.3.0/schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/schemas.json -------------------------------------------------------------------------------- /definitions/2.3.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/server.json -------------------------------------------------------------------------------- /definitions/2.3.0/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/serverVariable.json -------------------------------------------------------------------------------- /definitions/2.3.0/serverVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/serverVariables.json -------------------------------------------------------------------------------- /definitions/2.3.0/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/servers.json -------------------------------------------------------------------------------- /definitions/2.3.0/specificationExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/specificationExtension.json -------------------------------------------------------------------------------- /definitions/2.3.0/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/symmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.3.0/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/tag.json -------------------------------------------------------------------------------- /definitions/2.3.0/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.3.0/userPassword.json -------------------------------------------------------------------------------- /definitions/2.4.0/APIKeyHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/APIKeyHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.4.0/BearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/BearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.4.0/HTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/HTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.4.0/NonBearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/NonBearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.4.0/Reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/Reference.json -------------------------------------------------------------------------------- /definitions/2.4.0/ReferenceObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/ReferenceObject.json -------------------------------------------------------------------------------- /definitions/2.4.0/SaslGssapiSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/SaslGssapiSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.4.0/SaslPlainSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/SaslPlainSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.4.0/SaslScramSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/SaslScramSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.4.0/SaslSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/SaslSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.4.0/SecurityRequirement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/SecurityRequirement.json -------------------------------------------------------------------------------- /definitions/2.4.0/SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/SecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.4.0/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/X509.json -------------------------------------------------------------------------------- /definitions/2.4.0/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/apiKey.json -------------------------------------------------------------------------------- /definitions/2.4.0/asymmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/asymmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.4.0/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/asyncapi.json -------------------------------------------------------------------------------- /definitions/2.4.0/avroSchema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/avroSchema_v1.json -------------------------------------------------------------------------------- /definitions/2.4.0/bindingsObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/bindingsObject.json -------------------------------------------------------------------------------- /definitions/2.4.0/channelItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/channelItem.json -------------------------------------------------------------------------------- /definitions/2.4.0/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/channels.json -------------------------------------------------------------------------------- /definitions/2.4.0/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/components.json -------------------------------------------------------------------------------- /definitions/2.4.0/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/contact.json -------------------------------------------------------------------------------- /definitions/2.4.0/correlationId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/correlationId.json -------------------------------------------------------------------------------- /definitions/2.4.0/external.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/external.json -------------------------------------------------------------------------------- /definitions/2.4.0/externalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/externalDocs.json -------------------------------------------------------------------------------- /definitions/2.4.0/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/info.json -------------------------------------------------------------------------------- /definitions/2.4.0/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/license.json -------------------------------------------------------------------------------- /definitions/2.4.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/message.json -------------------------------------------------------------------------------- /definitions/2.4.0/messageTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/messageTrait.json -------------------------------------------------------------------------------- /definitions/2.4.0/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/messages.json -------------------------------------------------------------------------------- /definitions/2.4.0/oauth2Flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/oauth2Flow.json -------------------------------------------------------------------------------- /definitions/2.4.0/oauth2Flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/oauth2Flows.json -------------------------------------------------------------------------------- /definitions/2.4.0/oauth2Scopes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/oauth2Scopes.json -------------------------------------------------------------------------------- /definitions/2.4.0/openIdConnect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/openIdConnect.json -------------------------------------------------------------------------------- /definitions/2.4.0/openapiSchema_3_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/openapiSchema_3_0.json -------------------------------------------------------------------------------- /definitions/2.4.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/operation.json -------------------------------------------------------------------------------- /definitions/2.4.0/operationTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/operationTrait.json -------------------------------------------------------------------------------- /definitions/2.4.0/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/parameter.json -------------------------------------------------------------------------------- /definitions/2.4.0/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/parameters.json -------------------------------------------------------------------------------- /definitions/2.4.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/schema.json -------------------------------------------------------------------------------- /definitions/2.4.0/schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/schemas.json -------------------------------------------------------------------------------- /definitions/2.4.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/server.json -------------------------------------------------------------------------------- /definitions/2.4.0/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/serverVariable.json -------------------------------------------------------------------------------- /definitions/2.4.0/serverVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/serverVariables.json -------------------------------------------------------------------------------- /definitions/2.4.0/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/servers.json -------------------------------------------------------------------------------- /definitions/2.4.0/specificationExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/specificationExtension.json -------------------------------------------------------------------------------- /definitions/2.4.0/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/symmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.4.0/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/tag.json -------------------------------------------------------------------------------- /definitions/2.4.0/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.4.0/userPassword.json -------------------------------------------------------------------------------- /definitions/2.5.0/APIKeyHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/APIKeyHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.5.0/BearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/BearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.5.0/HTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/HTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.5.0/NonBearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/NonBearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.5.0/Reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/Reference.json -------------------------------------------------------------------------------- /definitions/2.5.0/ReferenceObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/ReferenceObject.json -------------------------------------------------------------------------------- /definitions/2.5.0/SaslGssapiSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/SaslGssapiSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.5.0/SaslPlainSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/SaslPlainSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.5.0/SaslScramSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/SaslScramSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.5.0/SaslSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/SaslSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.5.0/SecurityRequirement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/SecurityRequirement.json -------------------------------------------------------------------------------- /definitions/2.5.0/SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/SecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.5.0/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/X509.json -------------------------------------------------------------------------------- /definitions/2.5.0/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/apiKey.json -------------------------------------------------------------------------------- /definitions/2.5.0/asymmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/asymmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.5.0/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/asyncapi.json -------------------------------------------------------------------------------- /definitions/2.5.0/avroSchema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/avroSchema_v1.json -------------------------------------------------------------------------------- /definitions/2.5.0/bindingsObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/bindingsObject.json -------------------------------------------------------------------------------- /definitions/2.5.0/channelItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/channelItem.json -------------------------------------------------------------------------------- /definitions/2.5.0/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/channels.json -------------------------------------------------------------------------------- /definitions/2.5.0/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/components.json -------------------------------------------------------------------------------- /definitions/2.5.0/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/contact.json -------------------------------------------------------------------------------- /definitions/2.5.0/correlationId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/correlationId.json -------------------------------------------------------------------------------- /definitions/2.5.0/external.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/external.json -------------------------------------------------------------------------------- /definitions/2.5.0/externalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/externalDocs.json -------------------------------------------------------------------------------- /definitions/2.5.0/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/info.json -------------------------------------------------------------------------------- /definitions/2.5.0/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/license.json -------------------------------------------------------------------------------- /definitions/2.5.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/message.json -------------------------------------------------------------------------------- /definitions/2.5.0/messageTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/messageTrait.json -------------------------------------------------------------------------------- /definitions/2.5.0/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/messages.json -------------------------------------------------------------------------------- /definitions/2.5.0/oauth2Flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/oauth2Flow.json -------------------------------------------------------------------------------- /definitions/2.5.0/oauth2Flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/oauth2Flows.json -------------------------------------------------------------------------------- /definitions/2.5.0/oauth2Scopes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/oauth2Scopes.json -------------------------------------------------------------------------------- /definitions/2.5.0/openIdConnect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/openIdConnect.json -------------------------------------------------------------------------------- /definitions/2.5.0/openapiSchema_3_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/openapiSchema_3_0.json -------------------------------------------------------------------------------- /definitions/2.5.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/operation.json -------------------------------------------------------------------------------- /definitions/2.5.0/operationTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/operationTrait.json -------------------------------------------------------------------------------- /definitions/2.5.0/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/parameter.json -------------------------------------------------------------------------------- /definitions/2.5.0/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/parameters.json -------------------------------------------------------------------------------- /definitions/2.5.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/schema.json -------------------------------------------------------------------------------- /definitions/2.5.0/schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/schemas.json -------------------------------------------------------------------------------- /definitions/2.5.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/server.json -------------------------------------------------------------------------------- /definitions/2.5.0/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/serverVariable.json -------------------------------------------------------------------------------- /definitions/2.5.0/serverVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/serverVariables.json -------------------------------------------------------------------------------- /definitions/2.5.0/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/servers.json -------------------------------------------------------------------------------- /definitions/2.5.0/specificationExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/specificationExtension.json -------------------------------------------------------------------------------- /definitions/2.5.0/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/symmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.5.0/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/tag.json -------------------------------------------------------------------------------- /definitions/2.5.0/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.5.0/userPassword.json -------------------------------------------------------------------------------- /definitions/2.6.0/APIKeyHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/APIKeyHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.6.0/BearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/BearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.6.0/HTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/HTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.6.0/NonBearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/NonBearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.6.0/Reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/Reference.json -------------------------------------------------------------------------------- /definitions/2.6.0/ReferenceObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/ReferenceObject.json -------------------------------------------------------------------------------- /definitions/2.6.0/SaslGssapiSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/SaslGssapiSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.6.0/SaslPlainSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/SaslPlainSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.6.0/SaslScramSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/SaslScramSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.6.0/SaslSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/SaslSecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.6.0/SecurityRequirement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/SecurityRequirement.json -------------------------------------------------------------------------------- /definitions/2.6.0/SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/SecurityScheme.json -------------------------------------------------------------------------------- /definitions/2.6.0/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/X509.json -------------------------------------------------------------------------------- /definitions/2.6.0/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/apiKey.json -------------------------------------------------------------------------------- /definitions/2.6.0/asymmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/asymmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.6.0/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/asyncapi.json -------------------------------------------------------------------------------- /definitions/2.6.0/avroSchema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/avroSchema_v1.json -------------------------------------------------------------------------------- /definitions/2.6.0/bindingsObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/bindingsObject.json -------------------------------------------------------------------------------- /definitions/2.6.0/channelItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/channelItem.json -------------------------------------------------------------------------------- /definitions/2.6.0/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/channels.json -------------------------------------------------------------------------------- /definitions/2.6.0/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/components.json -------------------------------------------------------------------------------- /definitions/2.6.0/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/contact.json -------------------------------------------------------------------------------- /definitions/2.6.0/correlationId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/correlationId.json -------------------------------------------------------------------------------- /definitions/2.6.0/external.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/external.json -------------------------------------------------------------------------------- /definitions/2.6.0/externalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/externalDocs.json -------------------------------------------------------------------------------- /definitions/2.6.0/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/info.json -------------------------------------------------------------------------------- /definitions/2.6.0/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/license.json -------------------------------------------------------------------------------- /definitions/2.6.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/message.json -------------------------------------------------------------------------------- /definitions/2.6.0/messageTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/messageTrait.json -------------------------------------------------------------------------------- /definitions/2.6.0/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/messages.json -------------------------------------------------------------------------------- /definitions/2.6.0/oauth2Flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/oauth2Flow.json -------------------------------------------------------------------------------- /definitions/2.6.0/oauth2Flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/oauth2Flows.json -------------------------------------------------------------------------------- /definitions/2.6.0/oauth2Scopes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/oauth2Scopes.json -------------------------------------------------------------------------------- /definitions/2.6.0/openIdConnect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/openIdConnect.json -------------------------------------------------------------------------------- /definitions/2.6.0/openapiSchema_3_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/openapiSchema_3_0.json -------------------------------------------------------------------------------- /definitions/2.6.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/operation.json -------------------------------------------------------------------------------- /definitions/2.6.0/operationTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/operationTrait.json -------------------------------------------------------------------------------- /definitions/2.6.0/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/parameter.json -------------------------------------------------------------------------------- /definitions/2.6.0/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/parameters.json -------------------------------------------------------------------------------- /definitions/2.6.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/schema.json -------------------------------------------------------------------------------- /definitions/2.6.0/schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/schemas.json -------------------------------------------------------------------------------- /definitions/2.6.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/server.json -------------------------------------------------------------------------------- /definitions/2.6.0/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/serverVariable.json -------------------------------------------------------------------------------- /definitions/2.6.0/serverVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/serverVariables.json -------------------------------------------------------------------------------- /definitions/2.6.0/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/servers.json -------------------------------------------------------------------------------- /definitions/2.6.0/specificationExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/specificationExtension.json -------------------------------------------------------------------------------- /definitions/2.6.0/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/symmetricEncryption.json -------------------------------------------------------------------------------- /definitions/2.6.0/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/tag.json -------------------------------------------------------------------------------- /definitions/2.6.0/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/2.6.0/userPassword.json -------------------------------------------------------------------------------- /definitions/3.0.0/APIKeyHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/APIKeyHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/3.0.0/BearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/BearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/3.0.0/HTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/HTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/3.0.0/NonBearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/NonBearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /definitions/3.0.0/Reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/Reference.json -------------------------------------------------------------------------------- /definitions/3.0.0/ReferenceObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/ReferenceObject.json -------------------------------------------------------------------------------- /definitions/3.0.0/SaslGssapiSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/SaslGssapiSecurityScheme.json -------------------------------------------------------------------------------- /definitions/3.0.0/SaslPlainSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/SaslPlainSecurityScheme.json -------------------------------------------------------------------------------- /definitions/3.0.0/SaslScramSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/SaslScramSecurityScheme.json -------------------------------------------------------------------------------- /definitions/3.0.0/SaslSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/SaslSecurityScheme.json -------------------------------------------------------------------------------- /definitions/3.0.0/SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/SecurityScheme.json -------------------------------------------------------------------------------- /definitions/3.0.0/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/X509.json -------------------------------------------------------------------------------- /definitions/3.0.0/anySchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/anySchema.json -------------------------------------------------------------------------------- /definitions/3.0.0/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/apiKey.json -------------------------------------------------------------------------------- /definitions/3.0.0/asymmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/asymmetricEncryption.json -------------------------------------------------------------------------------- /definitions/3.0.0/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/asyncapi.json -------------------------------------------------------------------------------- /definitions/3.0.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/channel.json -------------------------------------------------------------------------------- /definitions/3.0.0/channelBindingsObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/channelBindingsObject.json -------------------------------------------------------------------------------- /definitions/3.0.0/channelMessages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/channelMessages.json -------------------------------------------------------------------------------- /definitions/3.0.0/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/channels.json -------------------------------------------------------------------------------- /definitions/3.0.0/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/components.json -------------------------------------------------------------------------------- /definitions/3.0.0/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/contact.json -------------------------------------------------------------------------------- /definitions/3.0.0/correlationId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/correlationId.json -------------------------------------------------------------------------------- /definitions/3.0.0/externalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/externalDocs.json -------------------------------------------------------------------------------- /definitions/3.0.0/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/info.json -------------------------------------------------------------------------------- /definitions/3.0.0/infoExtensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/infoExtensions.json -------------------------------------------------------------------------------- /definitions/3.0.0/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/license.json -------------------------------------------------------------------------------- /definitions/3.0.0/messageBindingsObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/messageBindingsObject.json -------------------------------------------------------------------------------- /definitions/3.0.0/messageExampleObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/messageExampleObject.json -------------------------------------------------------------------------------- /definitions/3.0.0/messageObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/messageObject.json -------------------------------------------------------------------------------- /definitions/3.0.0/messageTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/messageTrait.json -------------------------------------------------------------------------------- /definitions/3.0.0/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/messages.json -------------------------------------------------------------------------------- /definitions/3.0.0/multiFormatSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/multiFormatSchema.json -------------------------------------------------------------------------------- /definitions/3.0.0/oauth2Flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/oauth2Flow.json -------------------------------------------------------------------------------- /definitions/3.0.0/oauth2Flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/oauth2Flows.json -------------------------------------------------------------------------------- /definitions/3.0.0/oauth2Scopes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/oauth2Scopes.json -------------------------------------------------------------------------------- /definitions/3.0.0/openIdConnect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/openIdConnect.json -------------------------------------------------------------------------------- /definitions/3.0.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/operation.json -------------------------------------------------------------------------------- /definitions/3.0.0/operationBindingsObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/operationBindingsObject.json -------------------------------------------------------------------------------- /definitions/3.0.0/operationReply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/operationReply.json -------------------------------------------------------------------------------- /definitions/3.0.0/operationReplyAddress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/operationReplyAddress.json -------------------------------------------------------------------------------- /definitions/3.0.0/operationTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/operationTrait.json -------------------------------------------------------------------------------- /definitions/3.0.0/operations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/operations.json -------------------------------------------------------------------------------- /definitions/3.0.0/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/parameter.json -------------------------------------------------------------------------------- /definitions/3.0.0/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/parameters.json -------------------------------------------------------------------------------- /definitions/3.0.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/schema.json -------------------------------------------------------------------------------- /definitions/3.0.0/securityRequirements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/securityRequirements.json -------------------------------------------------------------------------------- /definitions/3.0.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/server.json -------------------------------------------------------------------------------- /definitions/3.0.0/serverBindingsObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/serverBindingsObject.json -------------------------------------------------------------------------------- /definitions/3.0.0/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/serverVariable.json -------------------------------------------------------------------------------- /definitions/3.0.0/serverVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/serverVariables.json -------------------------------------------------------------------------------- /definitions/3.0.0/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/servers.json -------------------------------------------------------------------------------- /definitions/3.0.0/specificationExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/specificationExtension.json -------------------------------------------------------------------------------- /definitions/3.0.0/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/symmetricEncryption.json -------------------------------------------------------------------------------- /definitions/3.0.0/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/tag.json -------------------------------------------------------------------------------- /definitions/3.0.0/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/definitions/3.0.0/userPassword.json -------------------------------------------------------------------------------- /examples/2.6.0/APIKeyHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/APIKeyHTTPSecurityScheme.json -------------------------------------------------------------------------------- /examples/2.6.0/BearerHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/BearerHTTPSecurityScheme.json -------------------------------------------------------------------------------- /examples/2.6.0/ReferenceObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/ReferenceObject.json -------------------------------------------------------------------------------- /examples/2.6.0/Sasl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/Sasl.json -------------------------------------------------------------------------------- /examples/2.6.0/SecurityRequirement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/SecurityRequirement.json -------------------------------------------------------------------------------- /examples/2.6.0/SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/SecurityScheme.json -------------------------------------------------------------------------------- /examples/2.6.0/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/X509.json -------------------------------------------------------------------------------- /examples/2.6.0/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/apiKey.json -------------------------------------------------------------------------------- /examples/2.6.0/channelItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/channelItem.json -------------------------------------------------------------------------------- /examples/2.6.0/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/channels.json -------------------------------------------------------------------------------- /examples/2.6.0/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/components.json -------------------------------------------------------------------------------- /examples/2.6.0/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/contact.json -------------------------------------------------------------------------------- /examples/2.6.0/correlationId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/correlationId.json -------------------------------------------------------------------------------- /examples/2.6.0/externalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/externalDocs.json -------------------------------------------------------------------------------- /examples/2.6.0/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/info.json -------------------------------------------------------------------------------- /examples/2.6.0/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/license.json -------------------------------------------------------------------------------- /examples/2.6.0/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/message.json -------------------------------------------------------------------------------- /examples/2.6.0/messageTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/messageTrait.json -------------------------------------------------------------------------------- /examples/2.6.0/oauth2Flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/oauth2Flow.json -------------------------------------------------------------------------------- /examples/2.6.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/operation.json -------------------------------------------------------------------------------- /examples/2.6.0/operationTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/operationTrait.json -------------------------------------------------------------------------------- /examples/2.6.0/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/parameter.json -------------------------------------------------------------------------------- /examples/2.6.0/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/parameters.json -------------------------------------------------------------------------------- /examples/2.6.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/schema.json -------------------------------------------------------------------------------- /examples/2.6.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/server.json -------------------------------------------------------------------------------- /examples/2.6.0/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/servers.json -------------------------------------------------------------------------------- /examples/2.6.0/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/symmetricEncryption.json -------------------------------------------------------------------------------- /examples/2.6.0/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/tag.json -------------------------------------------------------------------------------- /examples/2.6.0/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/2.6.0/userPassword.json -------------------------------------------------------------------------------- /examples/3.0.0/APIKeyHTTPSecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/APIKeyHTTPSecurityScheme.json -------------------------------------------------------------------------------- /examples/3.0.0/ReferenceObject.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "$ref": "#/components/schemas/Pet" 3 | }] -------------------------------------------------------------------------------- /examples/3.0.0/Sasl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/Sasl.json -------------------------------------------------------------------------------- /examples/3.0.0/SecurityScheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/SecurityScheme.json -------------------------------------------------------------------------------- /examples/3.0.0/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/X509.json -------------------------------------------------------------------------------- /examples/3.0.0/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/apiKey.json -------------------------------------------------------------------------------- /examples/3.0.0/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/channel.json -------------------------------------------------------------------------------- /examples/3.0.0/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/channels.json -------------------------------------------------------------------------------- /examples/3.0.0/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/components.json -------------------------------------------------------------------------------- /examples/3.0.0/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/contact.json -------------------------------------------------------------------------------- /examples/3.0.0/correlationId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/correlationId.json -------------------------------------------------------------------------------- /examples/3.0.0/externalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/externalDocs.json -------------------------------------------------------------------------------- /examples/3.0.0/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/info.json -------------------------------------------------------------------------------- /examples/3.0.0/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/license.json -------------------------------------------------------------------------------- /examples/3.0.0/messageObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/messageObject.json -------------------------------------------------------------------------------- /examples/3.0.0/messageTrait.json: -------------------------------------------------------------------------------- 1 | [ { 2 | "contentType": "application/json" 3 | } ] -------------------------------------------------------------------------------- /examples/3.0.0/oauth2Flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/oauth2Flow.json -------------------------------------------------------------------------------- /examples/3.0.0/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/operation.json -------------------------------------------------------------------------------- /examples/3.0.0/operationReplyAddress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/operationReplyAddress.json -------------------------------------------------------------------------------- /examples/3.0.0/operationTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/operationTrait.json -------------------------------------------------------------------------------- /examples/3.0.0/operations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/operations.json -------------------------------------------------------------------------------- /examples/3.0.0/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/parameter.json -------------------------------------------------------------------------------- /examples/3.0.0/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/parameters.json -------------------------------------------------------------------------------- /examples/3.0.0/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/server.json -------------------------------------------------------------------------------- /examples/3.0.0/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/serverVariable.json -------------------------------------------------------------------------------- /examples/3.0.0/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/servers.json -------------------------------------------------------------------------------- /examples/3.0.0/symmetricEncryption.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "type": "symmetricEncryption" 3 | }] -------------------------------------------------------------------------------- /examples/3.0.0/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/tag.json -------------------------------------------------------------------------------- /examples/3.0.0/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/examples/3.0.0/userPassword.json -------------------------------------------------------------------------------- /extensions/linkedin/0.1.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/extensions/linkedin/0.1.0/schema.json -------------------------------------------------------------------------------- /extensions/x/0.1.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/extensions/x/0.1.0/schema.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/go.sum -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/index.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/jsconfig.json -------------------------------------------------------------------------------- /migrations/migrate-to-version-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/migrations/migrate-to-version-3.md -------------------------------------------------------------------------------- /migrations/migrate-to-version-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/migrations/migrate-to-version-4.md -------------------------------------------------------------------------------- /migrations/migrate-to-version-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/migrations/migrate-to-version-5.md -------------------------------------------------------------------------------- /migrations/migrate-to-version-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/migrations/migrate-to-version-6.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/package.json -------------------------------------------------------------------------------- /schemas/1.0.0-without-$id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/1.0.0-without-$id.json -------------------------------------------------------------------------------- /schemas/1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/1.0.0.json -------------------------------------------------------------------------------- /schemas/1.1.0-without-$id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/1.1.0-without-$id.json -------------------------------------------------------------------------------- /schemas/1.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/1.1.0.json -------------------------------------------------------------------------------- /schemas/1.2.0-without-$id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/1.2.0-without-$id.json -------------------------------------------------------------------------------- /schemas/1.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/1.2.0.json -------------------------------------------------------------------------------- /schemas/2.0.0-rc1-without-$id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.0.0-rc1-without-$id.json -------------------------------------------------------------------------------- /schemas/2.0.0-rc1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.0.0-rc1.json -------------------------------------------------------------------------------- /schemas/2.0.0-rc2-without-$id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.0.0-rc2-without-$id.json -------------------------------------------------------------------------------- /schemas/2.0.0-rc2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.0.0-rc2.json -------------------------------------------------------------------------------- /schemas/2.0.0-without-$id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.0.0-without-$id.json -------------------------------------------------------------------------------- /schemas/2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.0.0.json -------------------------------------------------------------------------------- /schemas/2.1.0-without-$id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.1.0-without-$id.json -------------------------------------------------------------------------------- /schemas/2.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.1.0.json -------------------------------------------------------------------------------- /schemas/2.2.0-without-$id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.2.0-without-$id.json -------------------------------------------------------------------------------- /schemas/2.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.2.0.json -------------------------------------------------------------------------------- /schemas/2.3.0-without-$id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.3.0-without-$id.json -------------------------------------------------------------------------------- /schemas/2.3.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.3.0.json -------------------------------------------------------------------------------- /schemas/2.4.0-without-$id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.4.0-without-$id.json -------------------------------------------------------------------------------- /schemas/2.4.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.4.0.json -------------------------------------------------------------------------------- /schemas/2.5.0-without-$id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.5.0-without-$id.json -------------------------------------------------------------------------------- /schemas/2.5.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.5.0.json -------------------------------------------------------------------------------- /schemas/2.6.0-without-$id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.6.0-without-$id.json -------------------------------------------------------------------------------- /schemas/2.6.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/2.6.0.json -------------------------------------------------------------------------------- /schemas/3.0.0-without-$id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/3.0.0-without-$id.json -------------------------------------------------------------------------------- /schemas/3.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/3.0.0.json -------------------------------------------------------------------------------- /schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/README.md -------------------------------------------------------------------------------- /schemas/all.schema-store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/schemas/all.schema-store.json -------------------------------------------------------------------------------- /scripts/add-new-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/scripts/add-new-version.js -------------------------------------------------------------------------------- /scripts/validate-schemas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/scripts/validate-schemas.js -------------------------------------------------------------------------------- /spec-json-schemas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/spec-json-schemas.go -------------------------------------------------------------------------------- /spec-json-schemas_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/spec-json-schemas_test.go -------------------------------------------------------------------------------- /test/ajv-schemes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/ajv-schemes.js -------------------------------------------------------------------------------- /test/bindings/amqp/amqp channel binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/amqp/amqp channel binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/amqp/amqp message binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/amqp/amqp message binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/amqp/amqp operation binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/amqp/amqp operation binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/http/http message binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/http/http message binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/http/http operation binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/http/http operation binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/ibmmq/ibmmq channel binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/ibmmq/ibmmq channel binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/ibmmq/ibmmq message binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/ibmmq/ibmmq message binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/ibmmq/ibmmq server binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/ibmmq/ibmmq server binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/jms/jms channel binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/jms/jms channel binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/jms/jms message binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/jms/jms message binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/jms/jms server binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/jms/jms server binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/kafka/kafka channel binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/kafka/kafka channel binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/kafka/kafka message binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/kafka/kafka message binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/kafka/kafka server binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/kafka/kafka server binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/mqtt/mqtt message binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/mqtt/mqtt message binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/mqtt/mqtt operation binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/mqtt/mqtt operation binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/mqtt/mqtt server binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/mqtt/mqtt server binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/nats/nats operation binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/nats/nats operation binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/sns/sns channel binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/sns/sns channel binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/sns/sns operation binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/sns/sns operation binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/sqs/sqs channel binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/sqs/sqs channel binding.test.mjs -------------------------------------------------------------------------------- /test/bindings/sqs/sqs operation binding.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bindings/sqs/sqs operation binding.test.mjs -------------------------------------------------------------------------------- /test/bundler.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/bundler.test.mjs -------------------------------------------------------------------------------- /test/definitions/3.0.0/models/info/info.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/definitions/3.0.0/models/info/info.test.mjs -------------------------------------------------------------------------------- /test/definitions/3.0.0/models/tag/tag.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/definitions/3.0.0/models/tag/tag.test.mjs -------------------------------------------------------------------------------- /test/definitions/3.0.0/security/apiKey.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/definitions/3.0.0/security/apiKey.test.mjs -------------------------------------------------------------------------------- /test/definitions/3.0.0/security/http/http.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/definitions/3.0.0/security/http/http.test.mjs -------------------------------------------------------------------------------- /test/definitions/3.0.0/security/http/httpApiKey/without required properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "httpApiKey" 3 | } 4 | -------------------------------------------------------------------------------- /test/definitions/3.0.0/security/http/httpBasic/without required properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "http" 3 | } 4 | -------------------------------------------------------------------------------- /test/definitions/base-schema-test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/definitions/base-schema-test.mjs -------------------------------------------------------------------------------- /test/docs/3.0.0/streetlights-all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/docs/3.0.0/streetlights-all.json -------------------------------------------------------------------------------- /test/docs/3.0.0/streetlights-asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/docs/3.0.0/streetlights-asyncapi.json -------------------------------------------------------------------------------- /test/docs/3.0.0/streetlights-avro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/docs/3.0.0/streetlights-avro.json -------------------------------------------------------------------------------- /test/docs/3.0.0/streetlights-json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/docs/3.0.0/streetlights-json.json -------------------------------------------------------------------------------- /test/docs/3.0.0/streetlights-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/docs/3.0.0/streetlights-openapi.json -------------------------------------------------------------------------------- /test/docs/3.0.0/streetlights-unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/docs/3.0.0/streetlights-unknown.json -------------------------------------------------------------------------------- /test/fixtures/asyncapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/fixtures/asyncapi.yml -------------------------------------------------------------------------------- /test/schemas.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/schemas.test.mjs -------------------------------------------------------------------------------- /test/test-helper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/test/test-helper.mjs -------------------------------------------------------------------------------- /tools/bundler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/tools/bundler/index.js -------------------------------------------------------------------------------- /tools/bundler/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/tools/bundler/package-lock.json -------------------------------------------------------------------------------- /tools/bundler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/tools/bundler/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/spec-json-schemas/HEAD/vite.config.mts --------------------------------------------------------------------------------