├── .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 │ ├── 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 │ ├── publish-gh-pages.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 ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── package.json ├── runner ├── .gitignore ├── Makefile ├── README.md ├── go │ ├── README.md │ ├── main.go │ ├── parsers.go │ └── utils.go ├── java │ ├── README.md │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── asyncapi │ │ ├── parsers │ │ ├── AmfParser.java │ │ └── IParser.java │ │ ├── runner │ │ └── AsyncapiTckRunner.java │ │ └── utils │ │ └── Utils.java ├── js │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── index.js │ │ ├── parsers.js │ │ └── utils.js ├── package-lock.json └── package.json └── tests ├── asyncapi-2.0 ├── AsyncAPI Object │ ├── Fields Types │ │ ├── invalid-asyncapi-type.yaml │ │ ├── invalid-channels-type.yaml │ │ ├── invalid-components-type.yaml │ │ ├── invalid-externalDocs-type.yaml │ │ ├── invalid-id-type.yaml │ │ ├── invalid-info-type.yaml │ │ ├── invalid-servers-type.yaml │ │ └── invalid-tags-type.yaml │ ├── invalid-duplicate-tags.yaml │ ├── invalid-missing-asyncapi.yaml │ ├── invalid-missing-channels.yaml │ ├── invalid-missing-info.yaml │ └── valid.yaml ├── AsyncAPI Version String │ ├── invalid-missing-patch.yaml │ ├── invalid-version-string-format.yaml │ ├── valid-major-minor-patch.yaml │ └── valid-with-hyphen.yaml ├── Channel Bindings Object │ └── valid-empty-object.yaml ├── Channel Item Object │ ├── Fields Types │ │ ├── invalid-bindings-type.yaml │ │ ├── invalid-description-type.yaml │ │ ├── invalid-parameters-type.yaml │ │ ├── invalid-publish-type.yaml │ │ ├── invalid-ref-type.yaml │ │ └── invalid-subscribe-type.yaml │ ├── invalid-external-ref-structure.yaml │ ├── referenced.yml │ ├── referencedInvalid.yml │ ├── valid-empty-object.yaml │ ├── valid-external-ref.yaml │ ├── valid-publish.yaml │ └── valid-subscribe.yaml ├── Channels Object │ ├── Fields Types │ │ └── invalid-channel-type.yaml │ ├── invalid-query-param-used.yaml │ └── valid.yaml ├── Components Object │ ├── Fields Types │ │ ├── invalid-channelBindings-type.yaml │ │ ├── invalid-correlationIds-type.yaml │ │ ├── invalid-messageBindings-type.yaml │ │ ├── invalid-messageTraits-type.yaml │ │ ├── invalid-messages-type.yaml │ │ ├── invalid-operationBindings-type.yaml │ │ ├── invalid-operationTraits-type.yaml │ │ ├── invalid-parameters-type.yaml │ │ ├── invalid-schemas-type.yaml │ │ ├── invalid-securitySchemes-type.yaml │ │ └── invalid-serverBindings-type.yaml │ ├── invalid-channelBindings-key.yaml │ ├── invalid-correlationIds-key.yaml │ ├── invalid-messageBindings-key.yaml │ ├── invalid-messageTraits-key.yaml │ ├── invalid-messages-key.yaml │ ├── invalid-operationBindings-key.yaml │ ├── invalid-operationTraits-key.yaml │ ├── invalid-parameters-key.yaml │ ├── invalid-schemas-key.yaml │ ├── invalid-securitySchemes-key.yaml │ ├── invalid-serverBindings-key.yaml │ └── valid-complete.yaml ├── Contact Object │ ├── Fields Types │ │ ├── invalid-email-type.yaml │ │ ├── invalid-name-type.yaml │ │ └── invalid-url-type.yaml │ ├── invalid-email-format.yaml │ ├── invalid-url-format.yaml │ ├── valid-empty-object.yaml │ └── valid.yaml ├── Correlation ID Object │ ├── Fields Types │ │ ├── invalid-description-type.yaml │ │ └── invalid-location-type.yaml │ ├── invalid-location-expression.yaml │ ├── invalid-missing-location.yaml │ └── valid.yaml ├── External Documentation Object │ ├── Fields Types │ │ ├── invalid-description-type.yaml │ │ └── invalid-url-type.yaml │ ├── invalid-missing-url.yaml │ ├── invalid-url-format.yaml │ └── valid.yaml ├── File Structure │ ├── common.yml │ ├── invalid-incorrect-json-pointer-no-slash.yaml │ ├── invalid-incorrect-json-pointer-ref.yaml │ ├── invalid-inexisting-file-ref.yaml │ └── valid.yaml ├── Format │ ├── invalid-case-sensitive.yaml │ ├── invalid-json-schema-tag.yaml │ ├── invalid-key.yaml │ ├── invalid-syntax.yaml │ └── valid.yaml ├── Identifier │ ├── invalid-uri-format.yaml │ ├── valid-uri.yaml │ └── valid-urn.yaml ├── Info Object │ ├── Fields Types │ │ ├── invalid-contact-type.yaml │ │ ├── invalid-description-type.yaml │ │ ├── invalid-license-type.yaml │ │ ├── invalid-termsOfService-type.yaml │ │ ├── invalid-title-type.yaml │ │ └── invalid-version-type.yaml │ ├── invalid-missing-title.yaml │ ├── invalid-missing-version.yaml │ ├── invalid-termsofservice-url-format.yaml │ └── valid.yaml ├── License Object │ ├── Fields Types │ │ ├── invalid-name-type.yaml │ │ └── invalid-url-type.yaml │ ├── invalid-missing-name.yaml │ ├── invalid-url-format.yaml │ └── valid.yaml ├── Message Bindings Object │ └── valid-empty-object.yaml ├── Message Object │ ├── Fields Types │ │ ├── invalid-bindings-type.yaml │ │ ├── invalid-contentType-type.yaml │ │ ├── invalid-correlationId-type.yaml │ │ ├── invalid-description-type.yaml │ │ ├── invalid-examples-type.yaml │ │ ├── invalid-externalDocs-type.yaml │ │ ├── invalid-headers-type.yaml │ │ ├── invalid-name-type.yaml │ │ ├── invalid-schemaFormat-type.yaml │ │ ├── invalid-summary-type.yaml │ │ ├── invalid-tags-type.yaml │ │ ├── invalid-title-type.yaml │ │ └── invalid-traits-type.yaml │ ├── Payloads │ │ ├── includes │ │ │ ├── user-api.raml │ │ │ ├── user-avro-schema-optional.yaml │ │ │ ├── user-avro-schema.json │ │ │ ├── user-datatype.raml │ │ │ ├── user-json-schema-optional.yaml │ │ │ ├── user-json-schema.json │ │ │ ├── user-library.raml │ │ │ ├── user-oas-schema-object-optional.yaml │ │ │ └── user-oas-schema-object.json │ │ ├── valid-json-schema-json.yaml │ │ ├── valid-json-schema-yaml.yaml │ │ ├── valid-optional-avro-schema-json.yaml │ │ ├── valid-optional-avro-schema-yaml.yaml │ │ ├── valid-optional-oas-schema-object-json.yaml │ │ ├── valid-optional-oas-schema-object-yaml.yaml │ │ ├── valid-optional-raml-api.yaml │ │ ├── valid-optional-raml-datatype.yaml │ │ └── valid-optional-raml-library.yaml │ ├── invalid-duplicate-tags.yaml │ ├── invalid-examples-item.yaml │ ├── invalid-headers-type.yaml │ ├── valid-empty-object.yaml │ ├── valid-internal-ref-correlationId.yaml │ ├── valid-internal-ref-header.yaml │ ├── valid-missing-contentType.yaml │ ├── valid-using-defaultContentType.yaml │ └── valid.yaml ├── Message Trait Object │ ├── Fields Types │ │ ├── invalid-bindings-type.yaml │ │ ├── invalid-contentType-type.yaml │ │ ├── invalid-correlationId-type.yaml │ │ ├── invalid-description-type.yaml │ │ ├── invalid-examples-type.yaml │ │ ├── invalid-externalDocs-type.yaml │ │ ├── invalid-headers-type.yaml │ │ ├── invalid-schemaFormat-type.yaml │ │ ├── invalid-summary-type.yaml │ │ ├── invalid-tags-type.yaml │ │ └── invalid-title-type.yaml │ ├── invalid-defines-payload.yaml │ ├── invalid-defines-traits.yaml │ ├── invalid-duplicate-tags.yaml │ ├── invalid-examples-item.yaml │ ├── invalid-headers-type.yaml │ ├── valid-empty-object.yaml │ ├── valid-internal-ref-correlationId.yaml │ ├── valid-internal-ref-header.yaml │ ├── valid-missing-content-type.yaml │ ├── valid-using-defaultContentType.yaml │ └── valid.yaml ├── Operation Bindings Object │ └── valid-empty-object.yaml ├── Operation Object │ ├── Fields Types │ │ ├── invalid-bindings-type.yaml │ │ ├── invalid-description-type.yaml │ │ ├── invalid-externalDocs-type.yaml │ │ ├── invalid-message-type.yaml │ │ ├── invalid-operationId-type.yaml │ │ ├── invalid-summary-type.yaml │ │ ├── invalid-tags-type.yaml │ │ └── invalid-traits-type.yaml │ ├── invalid-duplicate-operationId.yaml │ ├── invalid-duplicate-tags.yaml │ ├── valid-bare-minimum.yaml │ ├── valid-case-sensitive-operationId.yaml │ ├── valid-empty-object.yaml │ ├── valid-multiple-messages.yaml │ └── valid.yaml ├── Operation Trait Object │ ├── Fields Types │ │ ├── invalid-bindings-type.yaml │ │ ├── invalid-description-type.yaml │ │ ├── invalid-externalDocs-type.yaml │ │ ├── invalid-operationId-type.yaml │ │ ├── invalid-summary-type.yaml │ │ └── invalid-tags-type.yaml │ ├── invalid-duplicate-operationId.yaml │ ├── invalid-duplicate-tags.yaml │ ├── invalid-trait-with-message.yaml │ ├── invalid-trait-with-traits.yaml │ ├── valid-case-sensetive-operationId.yaml │ ├── valid-empty-object.yaml │ ├── valid-empty-trait.yaml │ └── valid.yaml ├── Parameter Object │ ├── Fields Types │ │ ├── invalid-description-type.yaml │ │ ├── invalid-location-type.yaml │ │ └── invalid-schema-type.yaml │ ├── invalid-runtime-expression.yaml │ ├── valid-empty-object.yaml │ ├── valid-extra-parameter.yaml │ ├── valid-parameter-not-defined.yaml │ ├── valid-ref-schema.yaml │ └── valid.yaml ├── Parameters Object │ ├── Fields Types │ │ └── invalid-parameter-type.yaml │ ├── invalid-pattern-field.yaml │ ├── valid-internal-ref.yaml │ └── valid.yaml ├── Reference Object │ ├── Fields Types │ │ └── invalid-ref-type.yaml │ ├── lib.yml │ ├── valid-external-ref-channelBindings.yaml │ ├── valid-external-ref-correlationId.yaml │ ├── valid-external-ref-message.yaml │ ├── valid-external-ref-messageBindings.yaml │ ├── valid-external-ref-messageTraits.yaml │ ├── valid-external-ref-operationBindings.yaml │ ├── valid-external-ref-operationTraits.yaml │ ├── valid-external-ref-parameter.yaml │ ├── valid-external-ref-schema.yaml │ ├── valid-external-ref-securityScheme.yaml │ └── valid-external-ref-serverBindings.yaml ├── Schema Object │ ├── invalid-polymorphism-discriminated-field-not-required.yaml │ ├── valid-composition.yaml │ ├── valid-polymorphism.yaml │ └── valid.yaml ├── Security Requirement Object │ ├── Fields Types │ │ └── invalid-name-type.yaml │ ├── invalid-X509-non-empty-array.yaml │ ├── invalid-apiKey-non-empty-array.yaml │ ├── invalid-asymmetricEncryption-non-empty-array.yaml │ ├── invalid-http-non-empty-array.yaml │ ├── invalid-httpApiKey-non-empty-array.yaml │ ├── invalid-inexisting-scheme.yaml │ ├── invalid-symmetricEncryption-non-empty-array.yaml │ ├── invalid-userPassword-non-empty-array.yaml │ ├── valid-oauth2-without-scopes.yaml │ └── valid-openIdConnect-without-scopes.yaml ├── Security Scheme Object │ ├── Fields Types │ │ ├── invalid-bearerFormat-type.yaml │ │ ├── invalid-description-type.yaml │ │ ├── invalid-flows-type.yaml │ │ ├── invalid-in-type.yaml │ │ ├── invalid-name-type.yaml │ │ ├── invalid-openIdConnectUrl-type.yaml │ │ ├── invalid-scheme-type.yaml │ │ └── invalid-type-type.yaml │ ├── X509 │ │ └── valid.yaml │ ├── apiKey │ │ ├── invalid-in-value.yaml │ │ ├── invalid-missing-in-property.yaml │ │ └── valid.yaml │ ├── asymmetricEncryption │ │ └── valid.yaml │ ├── http │ │ ├── invalid-missing-scheme.yaml │ │ └── valid.yaml │ ├── httpApiKey │ │ ├── invalid-in-value.yaml │ │ ├── invalid-missing-in-property.yaml │ │ ├── invalid-missing-name.yaml │ │ └── valid.yaml │ ├── oauth2 │ │ ├── Fields Types │ │ │ ├── invalid-authorizationCode-type.yaml │ │ │ ├── invalid-authorizationUrl-type.yaml │ │ │ ├── invalid-clientCredentials-type.yaml │ │ │ ├── invalid-implicit-type.yaml │ │ │ ├── invalid-password-type.yaml │ │ │ ├── invalid-refreshUrl-type.yaml │ │ │ ├── invalid-scopes-type.yaml │ │ │ └── invalid-tokenUrl-type.yaml │ │ ├── invalid-authorizationUrl-format.yaml │ │ ├── invalid-missing-authorizationCode-authrozationUrl.yaml │ │ ├── invalid-missing-authorizationCode-tokenUrl.yaml │ │ ├── invalid-missing-clientCredentials-tokenUrl.yaml │ │ ├── invalid-missing-flows.yaml │ │ ├── invalid-missing-implicit-authorizationUrl.yaml │ │ ├── invalid-missing-scopes.yaml │ │ ├── invalid-password-missing-tokenUrl.yaml │ │ ├── invalid-refreshUrl-format.yaml │ │ ├── invalid-tokenUrl-format.yaml │ │ ├── valid-empty-flows.yaml │ │ └── valid.yaml │ ├── openIdConnect │ │ └── valid.yaml │ ├── symmetricEncryption │ │ └── valid.yaml │ └── userPassword │ │ ├── invalid-missing-type.yaml │ │ └── valid.yaml ├── Server Bindings Object │ └── valid-empty-object.yaml ├── Server Object │ ├── Fields Types │ │ ├── invalid-bindings-type.yaml │ │ ├── invalid-description-type.yaml │ │ ├── invalid-protocol-type.yaml │ │ ├── invalid-protocolVersion-type.yaml │ │ ├── invalid-security-type.yaml │ │ ├── invalid-url-type.yaml │ │ └── invalid-variables-type.yaml │ ├── invalid-inexisting-security-scheme.yaml │ ├── invalid-missing-protocol.yaml │ ├── invalid-missing-url.yaml │ ├── valid-multiple-servers.yaml │ ├── valid-not-official-protocol.yaml │ ├── valid-relative-url.yaml │ ├── valid-security.yaml │ └── valid.yaml ├── Server Variable Object │ ├── Fields Types │ │ ├── invalid-default-type.yaml │ │ ├── invalid-description-type.yaml │ │ ├── invalid-enum-type.yaml │ │ └── invalid-examples-type.yaml │ ├── invalid-examples-item.yaml │ ├── valid-empty-object.yaml │ ├── valid-extra-variable.yaml │ ├── valid-variable-not-defined.yaml │ └── valid.yaml ├── Servers Object │ ├── invalid-patterned-field.yaml │ └── valid.yaml ├── Specification Extensions │ └── valid.yaml └── Tag Object │ ├── Fields Types │ ├── invalid-description-type.yaml │ ├── invalid-externalDocs-type.yaml │ └── invalid-name-type.yaml │ ├── invalid-missing-name.yaml │ └── valid.yaml ├── asyncapi-2.1 ├── Message Object │ └── valid-examples.yaml ├── Message Trait Object │ └── valid-examples.yaml └── Security Scheme Object │ ├── gssapi │ └── valid.yaml │ ├── plain │ └── valid.yaml │ ├── scramSha256 │ └── valid.yaml │ └── scramSha512 │ └── valid.yaml └── bindings ├── amqp └── 0.1.0 │ ├── Channel Bindings Object │ ├── Fields Types │ │ ├── invalid-bindingVersion-type.yaml │ │ ├── invalid-exchange-autoDelete-type.yaml │ │ ├── invalid-exchange-durable-type.yaml │ │ ├── invalid-exchange-name-type.yaml │ │ ├── invalid-exchange-type-type.yaml │ │ ├── invalid-exchange-type.yaml │ │ ├── invalid-exchange-vhost-type.yaml │ │ ├── invalid-is-type.yaml │ │ ├── invalid-queue-autoDelete-type.yaml │ │ ├── invalid-queue-durable-type.yaml │ │ ├── invalid-queue-exclusive-type.yaml │ │ ├── invalid-queue-name-type.yaml │ │ ├── invalid-queue-type.yaml │ │ └── invalid-queue-vhost-type.yaml │ ├── invalid-exchange-name-length.yaml.yaml │ ├── invalid-exchange-type.yaml │ ├── invalid-is-value.yaml │ ├── invalid-queue-name-length.yaml │ └── valid.yaml │ ├── Message Bindings Object │ ├── Fields Types │ │ ├── invalid-bindingVersion-type.yaml │ │ ├── invalid-contentEncoding-type.yaml │ │ └── invalid-messageType-type.yaml │ ├── invalid-extra-properties.yaml │ └── valid.yaml │ └── Operation Bindings Object │ ├── Fields Types │ ├── invalid-ack-type.yaml │ ├── invalid-bcc-type.yaml │ ├── invalid-bindingVersion-type.yaml │ ├── invalid-cc-type.yaml │ ├── invalid-deliveryMode-type.yaml │ ├── invalid-expiration-type.yaml │ ├── invalid-mandatory-type.yaml │ ├── invalid-priority-type.yaml │ ├── invalid-replyTo-type.yaml │ ├── invalid-timestamp-type.yaml │ └── invalid-userId-type.yaml │ ├── invalid-deliveryMode-value.yaml │ ├── invalid-expiration-below-zero.yaml │ ├── invalid-extra-properties.yaml │ └── valid.yaml ├── http └── 0.1.0 │ ├── Message Bindings Object │ ├── Fields Types │ │ ├── invalid-bindingVersion-type.yaml │ │ └── invalid-headers-type.yaml │ ├── invalid-extra-properties.yaml │ ├── invalid-headers-type.yaml │ └── valid.yaml │ └── Operation Bindings Object │ ├── Fields Types │ ├── invalid-bindingVersion-type.yaml │ ├── invalid-method-type.yaml │ ├── invalid-query-type.yaml │ └── invalid-type-type.yaml │ ├── invalid-method-value.yaml │ ├── invalid-missing-type.yaml │ ├── invalid-query-schema-type.yaml │ ├── invalid-type-value.yaml │ └── valid.yaml ├── ibmmq └── 0.1.0 │ ├── Channel Bindings Object │ ├── Fields Types │ │ ├── invalid-binding-version-type.yaml │ │ ├── invalid-destination-type.yaml │ │ ├── invalid-max-msg-length-type.yaml │ │ ├── invalid-queue-exclusive-type.yaml │ │ ├── invalid-queue-is-partitioned-type.yaml │ │ ├── invalid-queue-required-objectName.yaml │ │ ├── invalid-topic-durable-permitted-type.yaml │ │ └── invalid-topic-last-msg-retained-type.yaml │ ├── invalid-both-types.yaml │ ├── valid-queue.yaml │ └── valid-topic.yaml │ ├── Message Bindings Object │ ├── Fields Types │ │ ├── invalid-binding-version-type.yaml │ │ ├── invalid-expiry-value.yaml │ │ ├── invalid-type-type.yaml │ │ └── invalid-type-value.yaml │ └── valid.yaml │ └── Server BIndings Object │ ├── Fields Types │ └── invalid-heartbeat-interval.yaml │ ├── invalid-extra-properties.yaml │ └── valid.yaml ├── kafka └── 0.1.0 │ ├── Message Bindings Object │ ├── Fields Types │ │ ├── invalid-bindingVersion-type.yaml │ │ └── invalid-key-type.yaml │ ├── invalid-extra-properties.yaml │ └── valid.yaml │ └── Operation Bindings Object │ ├── Fields Types │ ├── invalid-bindingVersion-type.yaml │ ├── invalid-clientId-type.yaml │ └── invalid-groupId-type.yaml │ ├── invalid-extra-properties.yaml │ └── valid.yaml ├── mqtt └── 0.1.0 │ ├── Message Bindings Object │ ├── Fields Types │ │ └── invalid-bindingVersion-type.yaml │ ├── invalid-extra-properties.yaml │ └── valid.yaml │ ├── Operation Bindings Object │ ├── Fields Types │ │ ├── invalid-bindingVersion-type.yaml │ │ ├── invalid-qos-type.yaml │ │ └── invalid-retain-type.yaml │ ├── invalid-extra-properties.yaml │ ├── invalid-qos-value.yaml │ └── valid.yaml │ └── Server Bindings Object │ ├── Fields Types │ ├── invalid-bindingVersion-type.yaml │ ├── invalid-cleanSession-type.yaml │ ├── invalid-clientId-type.yaml │ ├── invalid-keepAlive-type.yaml │ ├── invalid-lastWill-message-type.yaml │ ├── invalid-lastWill-qos-type.yaml │ ├── invalid-lastWill-retain-type.yaml │ ├── invalid-lastWill-topic-type.yaml │ └── invalid-lastWill-type.yaml │ ├── invalid-extra-properties.yaml │ └── valid.yaml └── ws └── 1.1.1 └── Channel Bindings Object ├── Fields Types ├── invalid-bindingVersion-type.yaml ├── invalid-headers-type.yaml ├── invalid-method-type.yaml └── invalid-query-type.yaml ├── invalid-extra-properties.yaml ├── invalid-headers-type.yaml ├── invalid-method.yaml ├── invalid-query-type.yaml └── valid.yaml /.github/workflows/add-good-first-issue-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/add-good-first-issue-labels.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-for-humans-add-ready-to-merge-or-do-not-merge-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/automerge-for-humans-add-ready-to-merge-or-do-not-merge-label.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-for-humans-merging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/automerge-for-humans-merging.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-for-humans-remove-ready-to-merge-label-on-edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/automerge-for-humans-remove-ready-to-merge-label-on-edit.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-orphans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/automerge-orphans.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/autoupdate.yml -------------------------------------------------------------------------------- /.github/workflows/bounty-program-commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/bounty-program-commands.yml -------------------------------------------------------------------------------- /.github/workflows/bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/bump.yml -------------------------------------------------------------------------------- /.github/workflows/help-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/help-command.yml -------------------------------------------------------------------------------- /.github/workflows/if-nodejs-pr-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/if-nodejs-pr-testing.yml -------------------------------------------------------------------------------- /.github/workflows/if-nodejs-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/if-nodejs-release.yml -------------------------------------------------------------------------------- /.github/workflows/if-nodejs-version-bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/if-nodejs-version-bump.yml -------------------------------------------------------------------------------- /.github/workflows/issues-prs-notifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/issues-prs-notifications.yml -------------------------------------------------------------------------------- /.github/workflows/lint-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/lint-pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/notify-tsc-members-mention.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/notify-tsc-members-mention.yml -------------------------------------------------------------------------------- /.github/workflows/please-take-a-look-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/please-take-a-look-command.yml -------------------------------------------------------------------------------- /.github/workflows/publish-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/publish-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/release-announcements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/release-announcements.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/scripts/README.md -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/htmlContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/scripts/mailchimp/htmlContent.js -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/scripts/mailchimp/index.js -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/scripts/mailchimp/package-lock.json -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/scripts/mailchimp/package.json -------------------------------------------------------------------------------- /.github/workflows/stale-issues-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/stale-issues-prs.yml -------------------------------------------------------------------------------- /.github/workflows/transfer-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/transfer-issue.yml -------------------------------------------------------------------------------- /.github/workflows/update-maintainers-trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/update-maintainers-trigger.yaml -------------------------------------------------------------------------------- /.github/workflows/update-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/update-pr.yml -------------------------------------------------------------------------------- /.github/workflows/welcome-first-time-contrib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/.github/workflows/welcome-first-time-contrib.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/package.json -------------------------------------------------------------------------------- /runner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/.gitignore -------------------------------------------------------------------------------- /runner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/Makefile -------------------------------------------------------------------------------- /runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/README.md -------------------------------------------------------------------------------- /runner/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/go/README.md -------------------------------------------------------------------------------- /runner/go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/go/main.go -------------------------------------------------------------------------------- /runner/go/parsers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/go/parsers.go -------------------------------------------------------------------------------- /runner/go/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/go/utils.go -------------------------------------------------------------------------------- /runner/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/java/README.md -------------------------------------------------------------------------------- /runner/java/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/java/build.gradle -------------------------------------------------------------------------------- /runner/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /runner/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/java/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /runner/java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/java/gradlew -------------------------------------------------------------------------------- /runner/java/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/java/gradlew.bat -------------------------------------------------------------------------------- /runner/java/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'asyncapi-tck-runner' 2 | -------------------------------------------------------------------------------- /runner/java/src/main/java/org/asyncapi/parsers/AmfParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/java/src/main/java/org/asyncapi/parsers/AmfParser.java -------------------------------------------------------------------------------- /runner/java/src/main/java/org/asyncapi/parsers/IParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/java/src/main/java/org/asyncapi/parsers/IParser.java -------------------------------------------------------------------------------- /runner/java/src/main/java/org/asyncapi/runner/AsyncapiTckRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/java/src/main/java/org/asyncapi/runner/AsyncapiTckRunner.java -------------------------------------------------------------------------------- /runner/java/src/main/java/org/asyncapi/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/java/src/main/java/org/asyncapi/utils/Utils.java -------------------------------------------------------------------------------- /runner/js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/js/.gitignore -------------------------------------------------------------------------------- /runner/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/js/README.md -------------------------------------------------------------------------------- /runner/js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/js/package-lock.json -------------------------------------------------------------------------------- /runner/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/js/package.json -------------------------------------------------------------------------------- /runner/js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/js/src/index.js -------------------------------------------------------------------------------- /runner/js/src/parsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/js/src/parsers.js -------------------------------------------------------------------------------- /runner/js/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/js/src/utils.js -------------------------------------------------------------------------------- /runner/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/package-lock.json -------------------------------------------------------------------------------- /runner/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/runner/package.json -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-asyncapi-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-asyncapi-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-channels-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-channels-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-components-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-components-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-externalDocs-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-externalDocs-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-id-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-id-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-info-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-info-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-servers-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-servers-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-tags-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Object/Fields Types/invalid-tags-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Object/invalid-duplicate-tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Object/invalid-duplicate-tags.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Object/invalid-missing-asyncapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Object/invalid-missing-asyncapi.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Object/invalid-missing-channels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Object/invalid-missing-channels.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Object/invalid-missing-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Object/invalid-missing-info.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Version String/invalid-missing-patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Version String/invalid-missing-patch.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Version String/invalid-version-string-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Version String/invalid-version-string-format.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Version String/valid-major-minor-patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Version String/valid-major-minor-patch.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/AsyncAPI Version String/valid-with-hyphen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/AsyncAPI Version String/valid-with-hyphen.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channel Bindings Object/valid-empty-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channel Bindings Object/valid-empty-object.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channel Item Object/Fields Types/invalid-bindings-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channel Item Object/Fields Types/invalid-bindings-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channel Item Object/Fields Types/invalid-description-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channel Item Object/Fields Types/invalid-description-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channel Item Object/Fields Types/invalid-parameters-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channel Item Object/Fields Types/invalid-parameters-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channel Item Object/Fields Types/invalid-publish-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channel Item Object/Fields Types/invalid-publish-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channel Item Object/Fields Types/invalid-ref-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channel Item Object/Fields Types/invalid-ref-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channel Item Object/Fields Types/invalid-subscribe-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channel Item Object/Fields Types/invalid-subscribe-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channel Item Object/invalid-external-ref-structure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channel Item Object/invalid-external-ref-structure.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channel Item Object/referenced.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channel Item Object/referenced.yml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channel Item Object/referencedInvalid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channel Item Object/referencedInvalid.yml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channel Item Object/valid-empty-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channel Item Object/valid-empty-object.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channel Item Object/valid-external-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channel Item Object/valid-external-ref.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channel Item Object/valid-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channel Item Object/valid-publish.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channel Item Object/valid-subscribe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channel Item Object/valid-subscribe.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channels Object/Fields Types/invalid-channel-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channels Object/Fields Types/invalid-channel-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channels Object/invalid-query-param-used.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channels Object/invalid-query-param-used.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Channels Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Channels Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/Fields Types/invalid-channelBindings-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/Fields Types/invalid-channelBindings-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/Fields Types/invalid-correlationIds-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/Fields Types/invalid-correlationIds-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/Fields Types/invalid-messageBindings-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/Fields Types/invalid-messageBindings-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/Fields Types/invalid-messageTraits-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/Fields Types/invalid-messageTraits-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/Fields Types/invalid-messages-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/Fields Types/invalid-messages-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/Fields Types/invalid-operationBindings-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/Fields Types/invalid-operationBindings-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/Fields Types/invalid-operationTraits-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/Fields Types/invalid-operationTraits-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/Fields Types/invalid-parameters-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/Fields Types/invalid-parameters-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/Fields Types/invalid-schemas-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/Fields Types/invalid-schemas-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/Fields Types/invalid-securitySchemes-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/Fields Types/invalid-securitySchemes-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/Fields Types/invalid-serverBindings-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/Fields Types/invalid-serverBindings-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/invalid-channelBindings-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/invalid-channelBindings-key.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/invalid-correlationIds-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/invalid-correlationIds-key.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/invalid-messageBindings-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/invalid-messageBindings-key.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/invalid-messageTraits-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/invalid-messageTraits-key.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/invalid-messages-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/invalid-messages-key.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/invalid-operationBindings-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/invalid-operationBindings-key.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/invalid-operationTraits-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/invalid-operationTraits-key.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/invalid-parameters-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/invalid-parameters-key.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/invalid-schemas-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/invalid-schemas-key.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/invalid-securitySchemes-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/invalid-securitySchemes-key.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/invalid-serverBindings-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/invalid-serverBindings-key.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Components Object/valid-complete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Components Object/valid-complete.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Contact Object/Fields Types/invalid-email-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Contact Object/Fields Types/invalid-email-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Contact Object/Fields Types/invalid-name-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Contact Object/Fields Types/invalid-name-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Contact Object/Fields Types/invalid-url-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Contact Object/Fields Types/invalid-url-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Contact Object/invalid-email-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Contact Object/invalid-email-format.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Contact Object/invalid-url-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Contact Object/invalid-url-format.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Contact Object/valid-empty-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Contact Object/valid-empty-object.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Contact Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Contact Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Correlation ID Object/Fields Types/invalid-description-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Correlation ID Object/Fields Types/invalid-description-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Correlation ID Object/Fields Types/invalid-location-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Correlation ID Object/Fields Types/invalid-location-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Correlation ID Object/invalid-location-expression.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Correlation ID Object/invalid-location-expression.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Correlation ID Object/invalid-missing-location.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Correlation ID Object/invalid-missing-location.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Correlation ID Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Correlation ID Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/External Documentation Object/Fields Types/invalid-description-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/External Documentation Object/Fields Types/invalid-description-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/External Documentation Object/Fields Types/invalid-url-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/External Documentation Object/Fields Types/invalid-url-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/External Documentation Object/invalid-missing-url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/External Documentation Object/invalid-missing-url.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/External Documentation Object/invalid-url-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/External Documentation Object/invalid-url-format.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/External Documentation Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/External Documentation Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/File Structure/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/File Structure/common.yml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/File Structure/invalid-incorrect-json-pointer-no-slash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/File Structure/invalid-incorrect-json-pointer-no-slash.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/File Structure/invalid-incorrect-json-pointer-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/File Structure/invalid-incorrect-json-pointer-ref.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/File Structure/invalid-inexisting-file-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/File Structure/invalid-inexisting-file-ref.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/File Structure/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/File Structure/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Format/invalid-case-sensitive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Format/invalid-case-sensitive.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Format/invalid-json-schema-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Format/invalid-json-schema-tag.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Format/invalid-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Format/invalid-key.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Format/invalid-syntax.yaml: -------------------------------------------------------------------------------- 1 | qwe 2 | asd 3 | zxc 4 | 123 5 | -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Format/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Format/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Identifier/invalid-uri-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Identifier/invalid-uri-format.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Identifier/valid-uri.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Identifier/valid-uri.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Identifier/valid-urn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Identifier/valid-urn.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Info Object/Fields Types/invalid-contact-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Info Object/Fields Types/invalid-contact-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Info Object/Fields Types/invalid-description-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Info Object/Fields Types/invalid-description-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Info Object/Fields Types/invalid-license-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Info Object/Fields Types/invalid-license-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Info Object/Fields Types/invalid-termsOfService-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Info Object/Fields Types/invalid-termsOfService-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Info Object/Fields Types/invalid-title-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Info Object/Fields Types/invalid-title-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Info Object/Fields Types/invalid-version-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Info Object/Fields Types/invalid-version-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Info Object/invalid-missing-title.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Info Object/invalid-missing-title.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Info Object/invalid-missing-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Info Object/invalid-missing-version.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Info Object/invalid-termsofservice-url-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Info Object/invalid-termsofservice-url-format.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Info Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Info Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/License Object/Fields Types/invalid-name-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/License Object/Fields Types/invalid-name-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/License Object/Fields Types/invalid-url-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/License Object/Fields Types/invalid-url-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/License Object/invalid-missing-name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/License Object/invalid-missing-name.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/License Object/invalid-url-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/License Object/invalid-url-format.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/License Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/License Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Bindings Object/valid-empty-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Bindings Object/valid-empty-object.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Fields Types/invalid-bindings-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Fields Types/invalid-bindings-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Fields Types/invalid-contentType-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Fields Types/invalid-contentType-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Fields Types/invalid-correlationId-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Fields Types/invalid-correlationId-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Fields Types/invalid-description-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Fields Types/invalid-description-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Fields Types/invalid-examples-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Fields Types/invalid-examples-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Fields Types/invalid-externalDocs-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Fields Types/invalid-externalDocs-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Fields Types/invalid-headers-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Fields Types/invalid-headers-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Fields Types/invalid-name-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Fields Types/invalid-name-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Fields Types/invalid-schemaFormat-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Fields Types/invalid-schemaFormat-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Fields Types/invalid-summary-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Fields Types/invalid-summary-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Fields Types/invalid-tags-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Fields Types/invalid-tags-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Fields Types/invalid-title-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Fields Types/invalid-title-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Fields Types/invalid-traits-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Fields Types/invalid-traits-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/includes/user-api.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/includes/user-api.raml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/includes/user-avro-schema-optional.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/includes/user-avro-schema-optional.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/includes/user-avro-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/includes/user-avro-schema.json -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/includes/user-datatype.raml: -------------------------------------------------------------------------------- 1 | #%RAML 1.0 DataType 2 | 3 | properties: 4 | username: 5 | -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/includes/user-json-schema-optional.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/includes/user-json-schema-optional.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/includes/user-json-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/includes/user-json-schema.json -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/includes/user-library.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/includes/user-library.raml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/includes/user-oas-schema-object-optional.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/includes/user-oas-schema-object-optional.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/includes/user-oas-schema-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/includes/user-oas-schema-object.json -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/valid-json-schema-json.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/valid-json-schema-json.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/valid-json-schema-yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/valid-json-schema-yaml.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/valid-optional-avro-schema-json.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/valid-optional-avro-schema-json.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/valid-optional-avro-schema-yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/valid-optional-avro-schema-yaml.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/valid-optional-oas-schema-object-json.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/valid-optional-oas-schema-object-json.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/valid-optional-oas-schema-object-yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/valid-optional-oas-schema-object-yaml.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/valid-optional-raml-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/valid-optional-raml-api.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/valid-optional-raml-datatype.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/valid-optional-raml-datatype.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/Payloads/valid-optional-raml-library.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/Payloads/valid-optional-raml-library.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/invalid-duplicate-tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/invalid-duplicate-tags.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/invalid-examples-item.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/invalid-examples-item.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/invalid-headers-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/invalid-headers-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/valid-empty-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/valid-empty-object.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/valid-internal-ref-correlationId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/valid-internal-ref-correlationId.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/valid-internal-ref-header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/valid-internal-ref-header.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/valid-missing-contentType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/valid-missing-contentType.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/valid-using-defaultContentType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/valid-using-defaultContentType.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-bindings-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-bindings-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-contentType-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-contentType-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-correlationId-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-correlationId-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-description-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-description-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-examples-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-examples-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-externalDocs-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-externalDocs-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-headers-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-headers-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-schemaFormat-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-schemaFormat-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-summary-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-summary-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-tags-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-tags-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-title-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/Fields Types/invalid-title-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/invalid-defines-payload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/invalid-defines-payload.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/invalid-defines-traits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/invalid-defines-traits.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/invalid-duplicate-tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/invalid-duplicate-tags.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/invalid-examples-item.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/invalid-examples-item.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/invalid-headers-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/invalid-headers-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/valid-empty-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/valid-empty-object.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/valid-internal-ref-correlationId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/valid-internal-ref-correlationId.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/valid-internal-ref-header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/valid-internal-ref-header.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/valid-missing-content-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/valid-missing-content-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/valid-using-defaultContentType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/valid-using-defaultContentType.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Message Trait Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Message Trait Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Bindings Object/valid-empty-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Bindings Object/valid-empty-object.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Object/Fields Types/invalid-bindings-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Object/Fields Types/invalid-bindings-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Object/Fields Types/invalid-description-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Object/Fields Types/invalid-description-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Object/Fields Types/invalid-externalDocs-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Object/Fields Types/invalid-externalDocs-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Object/Fields Types/invalid-message-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Object/Fields Types/invalid-message-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Object/Fields Types/invalid-operationId-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Object/Fields Types/invalid-operationId-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Object/Fields Types/invalid-summary-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Object/Fields Types/invalid-summary-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Object/Fields Types/invalid-tags-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Object/Fields Types/invalid-tags-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Object/Fields Types/invalid-traits-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Object/Fields Types/invalid-traits-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Object/invalid-duplicate-operationId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Object/invalid-duplicate-operationId.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Object/invalid-duplicate-tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Object/invalid-duplicate-tags.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Object/valid-bare-minimum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Object/valid-bare-minimum.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Object/valid-case-sensitive-operationId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Object/valid-case-sensitive-operationId.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Object/valid-empty-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Object/valid-empty-object.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Object/valid-multiple-messages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Object/valid-multiple-messages.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Trait Object/Fields Types/invalid-bindings-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Trait Object/Fields Types/invalid-bindings-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Trait Object/Fields Types/invalid-description-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Trait Object/Fields Types/invalid-description-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Trait Object/Fields Types/invalid-externalDocs-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Trait Object/Fields Types/invalid-externalDocs-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Trait Object/Fields Types/invalid-operationId-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Trait Object/Fields Types/invalid-operationId-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Trait Object/Fields Types/invalid-summary-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Trait Object/Fields Types/invalid-summary-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Trait Object/Fields Types/invalid-tags-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Trait Object/Fields Types/invalid-tags-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Trait Object/invalid-duplicate-operationId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Trait Object/invalid-duplicate-operationId.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Trait Object/invalid-duplicate-tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Trait Object/invalid-duplicate-tags.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Trait Object/invalid-trait-with-message.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Trait Object/invalid-trait-with-message.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Trait Object/invalid-trait-with-traits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Trait Object/invalid-trait-with-traits.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Trait Object/valid-case-sensetive-operationId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Trait Object/valid-case-sensetive-operationId.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Trait Object/valid-empty-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Trait Object/valid-empty-object.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Trait Object/valid-empty-trait.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Trait Object/valid-empty-trait.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Operation Trait Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Operation Trait Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Parameter Object/Fields Types/invalid-description-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Parameter Object/Fields Types/invalid-description-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Parameter Object/Fields Types/invalid-location-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Parameter Object/Fields Types/invalid-location-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Parameter Object/Fields Types/invalid-schema-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Parameter Object/Fields Types/invalid-schema-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Parameter Object/invalid-runtime-expression.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Parameter Object/invalid-runtime-expression.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Parameter Object/valid-empty-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Parameter Object/valid-empty-object.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Parameter Object/valid-extra-parameter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Parameter Object/valid-extra-parameter.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Parameter Object/valid-parameter-not-defined.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Parameter Object/valid-parameter-not-defined.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Parameter Object/valid-ref-schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Parameter Object/valid-ref-schema.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Parameter Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Parameter Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Parameters Object/Fields Types/invalid-parameter-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Parameters Object/Fields Types/invalid-parameter-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Parameters Object/invalid-pattern-field.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Parameters Object/invalid-pattern-field.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Parameters Object/valid-internal-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Parameters Object/valid-internal-ref.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Parameters Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Parameters Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Reference Object/Fields Types/invalid-ref-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Reference Object/Fields Types/invalid-ref-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Reference Object/lib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Reference Object/lib.yml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Reference Object/valid-external-ref-channelBindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Reference Object/valid-external-ref-channelBindings.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Reference Object/valid-external-ref-correlationId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Reference Object/valid-external-ref-correlationId.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Reference Object/valid-external-ref-message.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Reference Object/valid-external-ref-message.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Reference Object/valid-external-ref-messageBindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Reference Object/valid-external-ref-messageBindings.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Reference Object/valid-external-ref-messageTraits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Reference Object/valid-external-ref-messageTraits.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Reference Object/valid-external-ref-operationBindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Reference Object/valid-external-ref-operationBindings.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Reference Object/valid-external-ref-operationTraits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Reference Object/valid-external-ref-operationTraits.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Reference Object/valid-external-ref-parameter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Reference Object/valid-external-ref-parameter.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Reference Object/valid-external-ref-schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Reference Object/valid-external-ref-schema.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Reference Object/valid-external-ref-securityScheme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Reference Object/valid-external-ref-securityScheme.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Reference Object/valid-external-ref-serverBindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Reference Object/valid-external-ref-serverBindings.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Schema Object/invalid-polymorphism-discriminated-field-not-required.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Schema Object/invalid-polymorphism-discriminated-field-not-required.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Schema Object/valid-composition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Schema Object/valid-composition.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Schema Object/valid-polymorphism.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Schema Object/valid-polymorphism.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Schema Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Schema Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Requirement Object/Fields Types/invalid-name-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Requirement Object/Fields Types/invalid-name-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Requirement Object/invalid-X509-non-empty-array.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Requirement Object/invalid-X509-non-empty-array.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Requirement Object/invalid-apiKey-non-empty-array.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Requirement Object/invalid-apiKey-non-empty-array.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Requirement Object/invalid-asymmetricEncryption-non-empty-array.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Requirement Object/invalid-asymmetricEncryption-non-empty-array.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Requirement Object/invalid-http-non-empty-array.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Requirement Object/invalid-http-non-empty-array.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Requirement Object/invalid-httpApiKey-non-empty-array.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Requirement Object/invalid-httpApiKey-non-empty-array.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Requirement Object/invalid-inexisting-scheme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Requirement Object/invalid-inexisting-scheme.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Requirement Object/invalid-symmetricEncryption-non-empty-array.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Requirement Object/invalid-symmetricEncryption-non-empty-array.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Requirement Object/invalid-userPassword-non-empty-array.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Requirement Object/invalid-userPassword-non-empty-array.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Requirement Object/valid-oauth2-without-scopes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Requirement Object/valid-oauth2-without-scopes.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Requirement Object/valid-openIdConnect-without-scopes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Requirement Object/valid-openIdConnect-without-scopes.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-bearerFormat-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-bearerFormat-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-description-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-description-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-flows-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-flows-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-in-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-in-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-name-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-name-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-openIdConnectUrl-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-openIdConnectUrl-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-scheme-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-scheme-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-type-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/Fields Types/invalid-type-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/X509/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/X509/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/apiKey/invalid-in-value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/apiKey/invalid-in-value.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/apiKey/invalid-missing-in-property.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/apiKey/invalid-missing-in-property.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/apiKey/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/apiKey/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/asymmetricEncryption/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/asymmetricEncryption/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/http/invalid-missing-scheme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/http/invalid-missing-scheme.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/http/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/http/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/httpApiKey/invalid-in-value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/httpApiKey/invalid-in-value.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/httpApiKey/invalid-missing-in-property.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/httpApiKey/invalid-missing-in-property.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/httpApiKey/invalid-missing-name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/httpApiKey/invalid-missing-name.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/httpApiKey/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/httpApiKey/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-authorizationCode-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-authorizationCode-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-authorizationUrl-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-authorizationUrl-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-clientCredentials-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-clientCredentials-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-implicit-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-implicit-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-password-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-password-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-refreshUrl-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-refreshUrl-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-scopes-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-scopes-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-tokenUrl-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/Fields Types/invalid-tokenUrl-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-authorizationUrl-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-authorizationUrl-format.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-missing-authorizationCode-authrozationUrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-missing-authorizationCode-authrozationUrl.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-missing-authorizationCode-tokenUrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-missing-authorizationCode-tokenUrl.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-missing-clientCredentials-tokenUrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-missing-clientCredentials-tokenUrl.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-missing-flows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-missing-flows.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-missing-implicit-authorizationUrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-missing-implicit-authorizationUrl.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-missing-scopes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-missing-scopes.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-password-missing-tokenUrl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-password-missing-tokenUrl.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-refreshUrl-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-refreshUrl-format.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-tokenUrl-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/invalid-tokenUrl-format.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/valid-empty-flows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/valid-empty-flows.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/oauth2/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/oauth2/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/openIdConnect/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/openIdConnect/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/symmetricEncryption/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/symmetricEncryption/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/userPassword/invalid-missing-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/userPassword/invalid-missing-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Security Scheme Object/userPassword/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Security Scheme Object/userPassword/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Bindings Object/valid-empty-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Bindings Object/valid-empty-object.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Object/Fields Types/invalid-bindings-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Object/Fields Types/invalid-bindings-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Object/Fields Types/invalid-description-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Object/Fields Types/invalid-description-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Object/Fields Types/invalid-protocol-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Object/Fields Types/invalid-protocol-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Object/Fields Types/invalid-protocolVersion-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Object/Fields Types/invalid-protocolVersion-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Object/Fields Types/invalid-security-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Object/Fields Types/invalid-security-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Object/Fields Types/invalid-url-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Object/Fields Types/invalid-url-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Object/Fields Types/invalid-variables-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Object/Fields Types/invalid-variables-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Object/invalid-inexisting-security-scheme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Object/invalid-inexisting-security-scheme.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Object/invalid-missing-protocol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Object/invalid-missing-protocol.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Object/invalid-missing-url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Object/invalid-missing-url.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Object/valid-multiple-servers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Object/valid-multiple-servers.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Object/valid-not-official-protocol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Object/valid-not-official-protocol.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Object/valid-relative-url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Object/valid-relative-url.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Object/valid-security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Object/valid-security.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Variable Object/Fields Types/invalid-default-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Variable Object/Fields Types/invalid-default-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Variable Object/Fields Types/invalid-description-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Variable Object/Fields Types/invalid-description-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Variable Object/Fields Types/invalid-enum-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Variable Object/Fields Types/invalid-enum-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Variable Object/Fields Types/invalid-examples-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Variable Object/Fields Types/invalid-examples-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Variable Object/invalid-examples-item.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Variable Object/invalid-examples-item.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Variable Object/valid-empty-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Variable Object/valid-empty-object.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Variable Object/valid-extra-variable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Variable Object/valid-extra-variable.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Variable Object/valid-variable-not-defined.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Variable Object/valid-variable-not-defined.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Server Variable Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Server Variable Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Servers Object/invalid-patterned-field.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Servers Object/invalid-patterned-field.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Servers Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Servers Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Specification Extensions/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Specification Extensions/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Tag Object/Fields Types/invalid-description-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Tag Object/Fields Types/invalid-description-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Tag Object/Fields Types/invalid-externalDocs-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Tag Object/Fields Types/invalid-externalDocs-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Tag Object/Fields Types/invalid-name-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Tag Object/Fields Types/invalid-name-type.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Tag Object/invalid-missing-name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Tag Object/invalid-missing-name.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.0/Tag Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.0/Tag Object/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.1/Message Object/valid-examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.1/Message Object/valid-examples.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.1/Message Trait Object/valid-examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.1/Message Trait Object/valid-examples.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.1/Security Scheme Object/gssapi/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.1/Security Scheme Object/gssapi/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.1/Security Scheme Object/plain/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.1/Security Scheme Object/plain/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.1/Security Scheme Object/scramSha256/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.1/Security Scheme Object/scramSha256/valid.yaml -------------------------------------------------------------------------------- /tests/asyncapi-2.1/Security Scheme Object/scramSha512/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/asyncapi-2.1/Security Scheme Object/scramSha512/valid.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-bindingVersion-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-bindingVersion-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-exchange-autoDelete-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-exchange-autoDelete-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-exchange-durable-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-exchange-durable-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-exchange-name-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-exchange-name-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-exchange-type-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-exchange-type-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-exchange-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-exchange-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-exchange-vhost-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-exchange-vhost-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-is-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-is-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-autoDelete-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-autoDelete-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-durable-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-durable-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-exclusive-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-exclusive-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-name-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-name-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-vhost-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-vhost-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/invalid-exchange-name-length.yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/invalid-exchange-name-length.yaml.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/invalid-exchange-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/invalid-exchange-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/invalid-is-value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/invalid-is-value.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/invalid-queue-name-length.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/invalid-queue-name-length.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Channel Bindings Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Channel Bindings Object/valid.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Message Bindings Object/Fields Types/invalid-bindingVersion-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Message Bindings Object/Fields Types/invalid-bindingVersion-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Message Bindings Object/Fields Types/invalid-contentEncoding-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Message Bindings Object/Fields Types/invalid-contentEncoding-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Message Bindings Object/Fields Types/invalid-messageType-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Message Bindings Object/Fields Types/invalid-messageType-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Message Bindings Object/invalid-extra-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Message Bindings Object/invalid-extra-properties.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Message Bindings Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Message Bindings Object/valid.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-ack-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-ack-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-bcc-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-bcc-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-bindingVersion-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-bindingVersion-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-cc-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-cc-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-deliveryMode-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-deliveryMode-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-expiration-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-expiration-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-mandatory-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-mandatory-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-priority-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-priority-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-replyTo-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-replyTo-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-timestamp-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-timestamp-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-userId-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Operation Bindings Object/Fields Types/invalid-userId-type.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Operation Bindings Object/invalid-deliveryMode-value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Operation Bindings Object/invalid-deliveryMode-value.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Operation Bindings Object/invalid-expiration-below-zero.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Operation Bindings Object/invalid-expiration-below-zero.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Operation Bindings Object/invalid-extra-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Operation Bindings Object/invalid-extra-properties.yaml -------------------------------------------------------------------------------- /tests/bindings/amqp/0.1.0/Operation Bindings Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/amqp/0.1.0/Operation Bindings Object/valid.yaml -------------------------------------------------------------------------------- /tests/bindings/http/0.1.0/Message Bindings Object/Fields Types/invalid-bindingVersion-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/http/0.1.0/Message Bindings Object/Fields Types/invalid-bindingVersion-type.yaml -------------------------------------------------------------------------------- /tests/bindings/http/0.1.0/Message Bindings Object/Fields Types/invalid-headers-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/http/0.1.0/Message Bindings Object/Fields Types/invalid-headers-type.yaml -------------------------------------------------------------------------------- /tests/bindings/http/0.1.0/Message Bindings Object/invalid-extra-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/http/0.1.0/Message Bindings Object/invalid-extra-properties.yaml -------------------------------------------------------------------------------- /tests/bindings/http/0.1.0/Message Bindings Object/invalid-headers-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/http/0.1.0/Message Bindings Object/invalid-headers-type.yaml -------------------------------------------------------------------------------- /tests/bindings/http/0.1.0/Message Bindings Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/http/0.1.0/Message Bindings Object/valid.yaml -------------------------------------------------------------------------------- /tests/bindings/http/0.1.0/Operation Bindings Object/Fields Types/invalid-bindingVersion-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/http/0.1.0/Operation Bindings Object/Fields Types/invalid-bindingVersion-type.yaml -------------------------------------------------------------------------------- /tests/bindings/http/0.1.0/Operation Bindings Object/Fields Types/invalid-method-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/http/0.1.0/Operation Bindings Object/Fields Types/invalid-method-type.yaml -------------------------------------------------------------------------------- /tests/bindings/http/0.1.0/Operation Bindings Object/Fields Types/invalid-query-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/http/0.1.0/Operation Bindings Object/Fields Types/invalid-query-type.yaml -------------------------------------------------------------------------------- /tests/bindings/http/0.1.0/Operation Bindings Object/Fields Types/invalid-type-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/http/0.1.0/Operation Bindings Object/Fields Types/invalid-type-type.yaml -------------------------------------------------------------------------------- /tests/bindings/http/0.1.0/Operation Bindings Object/invalid-method-value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/http/0.1.0/Operation Bindings Object/invalid-method-value.yaml -------------------------------------------------------------------------------- /tests/bindings/http/0.1.0/Operation Bindings Object/invalid-missing-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/http/0.1.0/Operation Bindings Object/invalid-missing-type.yaml -------------------------------------------------------------------------------- /tests/bindings/http/0.1.0/Operation Bindings Object/invalid-query-schema-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/http/0.1.0/Operation Bindings Object/invalid-query-schema-type.yaml -------------------------------------------------------------------------------- /tests/bindings/http/0.1.0/Operation Bindings Object/invalid-type-value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/http/0.1.0/Operation Bindings Object/invalid-type-value.yaml -------------------------------------------------------------------------------- /tests/bindings/http/0.1.0/Operation Bindings Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/http/0.1.0/Operation Bindings Object/valid.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-binding-version-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-binding-version-type.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-destination-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-destination-type.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-max-msg-length-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-max-msg-length-type.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-exclusive-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-exclusive-type.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-is-partitioned-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-is-partitioned-type.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-required-objectName.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-queue-required-objectName.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-topic-durable-permitted-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-topic-durable-permitted-type.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-topic-last-msg-retained-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Channel Bindings Object/Fields Types/invalid-topic-last-msg-retained-type.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Channel Bindings Object/invalid-both-types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Channel Bindings Object/invalid-both-types.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Channel Bindings Object/valid-queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Channel Bindings Object/valid-queue.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Channel Bindings Object/valid-topic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Channel Bindings Object/valid-topic.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Message Bindings Object/Fields Types/invalid-binding-version-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Message Bindings Object/Fields Types/invalid-binding-version-type.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Message Bindings Object/Fields Types/invalid-expiry-value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Message Bindings Object/Fields Types/invalid-expiry-value.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Message Bindings Object/Fields Types/invalid-type-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Message Bindings Object/Fields Types/invalid-type-type.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Message Bindings Object/Fields Types/invalid-type-value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Message Bindings Object/Fields Types/invalid-type-value.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Message Bindings Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Message Bindings Object/valid.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Server BIndings Object/Fields Types/invalid-heartbeat-interval.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Server BIndings Object/Fields Types/invalid-heartbeat-interval.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Server BIndings Object/invalid-extra-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Server BIndings Object/invalid-extra-properties.yaml -------------------------------------------------------------------------------- /tests/bindings/ibmmq/0.1.0/Server BIndings Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ibmmq/0.1.0/Server BIndings Object/valid.yaml -------------------------------------------------------------------------------- /tests/bindings/kafka/0.1.0/Message Bindings Object/Fields Types/invalid-bindingVersion-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/kafka/0.1.0/Message Bindings Object/Fields Types/invalid-bindingVersion-type.yaml -------------------------------------------------------------------------------- /tests/bindings/kafka/0.1.0/Message Bindings Object/Fields Types/invalid-key-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/kafka/0.1.0/Message Bindings Object/Fields Types/invalid-key-type.yaml -------------------------------------------------------------------------------- /tests/bindings/kafka/0.1.0/Message Bindings Object/invalid-extra-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/kafka/0.1.0/Message Bindings Object/invalid-extra-properties.yaml -------------------------------------------------------------------------------- /tests/bindings/kafka/0.1.0/Message Bindings Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/kafka/0.1.0/Message Bindings Object/valid.yaml -------------------------------------------------------------------------------- /tests/bindings/kafka/0.1.0/Operation Bindings Object/Fields Types/invalid-bindingVersion-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/kafka/0.1.0/Operation Bindings Object/Fields Types/invalid-bindingVersion-type.yaml -------------------------------------------------------------------------------- /tests/bindings/kafka/0.1.0/Operation Bindings Object/Fields Types/invalid-clientId-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/kafka/0.1.0/Operation Bindings Object/Fields Types/invalid-clientId-type.yaml -------------------------------------------------------------------------------- /tests/bindings/kafka/0.1.0/Operation Bindings Object/Fields Types/invalid-groupId-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/kafka/0.1.0/Operation Bindings Object/Fields Types/invalid-groupId-type.yaml -------------------------------------------------------------------------------- /tests/bindings/kafka/0.1.0/Operation Bindings Object/invalid-extra-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/kafka/0.1.0/Operation Bindings Object/invalid-extra-properties.yaml -------------------------------------------------------------------------------- /tests/bindings/kafka/0.1.0/Operation Bindings Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/kafka/0.1.0/Operation Bindings Object/valid.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Message Bindings Object/Fields Types/invalid-bindingVersion-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Message Bindings Object/Fields Types/invalid-bindingVersion-type.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Message Bindings Object/invalid-extra-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Message Bindings Object/invalid-extra-properties.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Message Bindings Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Message Bindings Object/valid.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Operation Bindings Object/Fields Types/invalid-bindingVersion-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Operation Bindings Object/Fields Types/invalid-bindingVersion-type.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Operation Bindings Object/Fields Types/invalid-qos-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Operation Bindings Object/Fields Types/invalid-qos-type.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Operation Bindings Object/Fields Types/invalid-retain-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Operation Bindings Object/Fields Types/invalid-retain-type.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Operation Bindings Object/invalid-extra-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Operation Bindings Object/invalid-extra-properties.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Operation Bindings Object/invalid-qos-value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Operation Bindings Object/invalid-qos-value.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Operation Bindings Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Operation Bindings Object/valid.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-bindingVersion-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-bindingVersion-type.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-cleanSession-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-cleanSession-type.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-clientId-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-clientId-type.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-keepAlive-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-keepAlive-type.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-lastWill-message-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-lastWill-message-type.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-lastWill-qos-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-lastWill-qos-type.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-lastWill-retain-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-lastWill-retain-type.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-lastWill-topic-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-lastWill-topic-type.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-lastWill-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Server Bindings Object/Fields Types/invalid-lastWill-type.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Server Bindings Object/invalid-extra-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Server Bindings Object/invalid-extra-properties.yaml -------------------------------------------------------------------------------- /tests/bindings/mqtt/0.1.0/Server Bindings Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/mqtt/0.1.0/Server Bindings Object/valid.yaml -------------------------------------------------------------------------------- /tests/bindings/ws/1.1.1/Channel Bindings Object/Fields Types/invalid-bindingVersion-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ws/1.1.1/Channel Bindings Object/Fields Types/invalid-bindingVersion-type.yaml -------------------------------------------------------------------------------- /tests/bindings/ws/1.1.1/Channel Bindings Object/Fields Types/invalid-headers-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ws/1.1.1/Channel Bindings Object/Fields Types/invalid-headers-type.yaml -------------------------------------------------------------------------------- /tests/bindings/ws/1.1.1/Channel Bindings Object/Fields Types/invalid-method-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ws/1.1.1/Channel Bindings Object/Fields Types/invalid-method-type.yaml -------------------------------------------------------------------------------- /tests/bindings/ws/1.1.1/Channel Bindings Object/Fields Types/invalid-query-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ws/1.1.1/Channel Bindings Object/Fields Types/invalid-query-type.yaml -------------------------------------------------------------------------------- /tests/bindings/ws/1.1.1/Channel Bindings Object/invalid-extra-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ws/1.1.1/Channel Bindings Object/invalid-extra-properties.yaml -------------------------------------------------------------------------------- /tests/bindings/ws/1.1.1/Channel Bindings Object/invalid-headers-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ws/1.1.1/Channel Bindings Object/invalid-headers-type.yaml -------------------------------------------------------------------------------- /tests/bindings/ws/1.1.1/Channel Bindings Object/invalid-method.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ws/1.1.1/Channel Bindings Object/invalid-method.yaml -------------------------------------------------------------------------------- /tests/bindings/ws/1.1.1/Channel Bindings Object/invalid-query-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ws/1.1.1/Channel Bindings Object/invalid-query-type.yaml -------------------------------------------------------------------------------- /tests/bindings/ws/1.1.1/Channel Bindings Object/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/tck/HEAD/tests/bindings/ws/1.1.1/Channel Bindings Object/valid.yaml --------------------------------------------------------------------------------