├── .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 │ ├── help-command.yml │ ├── issues-prs-notifications.yml │ ├── lint-pr-title.yml │ ├── notify-tsc-members-mention.yml │ ├── please-take-a-look-command.yml │ ├── release-announcements.yml │ ├── scripts │ ├── README.md │ └── mailchimp │ │ ├── htmlContent.js │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json │ ├── stale-issues-prs.yml │ ├── transfer-issue.yml │ ├── update-maintainers-trigger.yaml │ ├── update-pr.yml │ └── welcome-first-time-contrib.yml ├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── icon.svg ├── jarRepositories.xml ├── kotlinScripting.xml ├── kotlinc.xml ├── misc.xml └── vcs.xml ├── .sdkmanrc ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── assets └── logo.png ├── asyncapi-core ├── README.md ├── asyncapi-core.iml ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── asyncapi │ │ ├── bindings │ │ ├── BindingsMapDeserializer.java │ │ ├── ChannelBinding.java │ │ ├── ChannelBindingsDeserializer.java │ │ ├── MessageBinding.java │ │ ├── MessageBindingsDeserializer.java │ │ ├── OperationBinding.java │ │ ├── OperationBindingsDeserializer.java │ │ ├── ServerBinding.java │ │ ├── ServerBindingsDeserializer.java │ │ ├── amqp │ │ │ ├── AMQPChannelBinding.java │ │ │ ├── AMQPMessageBinding.java │ │ │ ├── AMQPOperationBinding.java │ │ │ ├── AMQPServerBinding.java │ │ │ └── v0 │ │ │ │ ├── _1_0 │ │ │ │ ├── channel │ │ │ │ │ ├── AMQPChannelBinding.java │ │ │ │ │ ├── AMQPChannelType.java │ │ │ │ │ ├── exchange │ │ │ │ │ │ ├── AMQPChannelExchangeProperties.java │ │ │ │ │ │ └── AMQPChannelExchangeType.java │ │ │ │ │ └── queue │ │ │ │ │ │ └── AMQPChannelQueueProperties.java │ │ │ │ ├── message │ │ │ │ │ └── AMQPMessageBinding.java │ │ │ │ ├── operation │ │ │ │ │ └── AMQPOperationBinding.java │ │ │ │ └── server │ │ │ │ │ └── AMQPServerBinding.java │ │ │ │ ├── _2_0 │ │ │ │ ├── channel │ │ │ │ │ ├── AMQPChannelBinding.java │ │ │ │ │ ├── AMQPChannelType.java │ │ │ │ │ ├── exchange │ │ │ │ │ │ ├── AMQPChannelExchangeProperties.java │ │ │ │ │ │ └── AMQPChannelExchangeType.java │ │ │ │ │ └── queue │ │ │ │ │ │ └── AMQPChannelQueueProperties.java │ │ │ │ ├── message │ │ │ │ │ └── AMQPMessageBinding.java │ │ │ │ ├── operation │ │ │ │ │ └── AMQPOperationBinding.java │ │ │ │ └── server │ │ │ │ │ └── AMQPServerBinding.java │ │ │ │ └── _3_0 │ │ │ │ ├── channel │ │ │ │ ├── AMQPChannelBinding.java │ │ │ │ ├── AMQPChannelType.java │ │ │ │ ├── exchange │ │ │ │ │ ├── AMQPChannelExchangeProperties.java │ │ │ │ │ └── AMQPChannelExchangeType.java │ │ │ │ └── queue │ │ │ │ │ └── AMQPChannelQueueProperties.java │ │ │ │ ├── message │ │ │ │ └── AMQPMessageBinding.java │ │ │ │ ├── operation │ │ │ │ └── AMQPOperationBinding.java │ │ │ │ └── server │ │ │ │ └── AMQPServerBinding.java │ │ ├── amqp1 │ │ │ ├── AMQP1ChannelBinding.java │ │ │ ├── AMQP1MessageBinding.java │ │ │ ├── AMQP1OperationBinding.java │ │ │ ├── AMQP1ServerBinding.java │ │ │ └── v0 │ │ │ │ └── _1_0 │ │ │ │ ├── channel │ │ │ │ └── AMQP1ChannelBinding.java │ │ │ │ ├── message │ │ │ │ └── AMQP1MessageBinding.java │ │ │ │ ├── operation │ │ │ │ └── AMQP1OperationBinding.java │ │ │ │ └── server │ │ │ │ └── AMQP1ServerBinding.java │ │ ├── anypointmq │ │ │ ├── AnypointMQChannelBinding.java │ │ │ ├── AnypointMQMessageBinding.java │ │ │ ├── AnypointMQOperationBinding.java │ │ │ ├── AnypointMQServerBinding.java │ │ │ └── v0 │ │ │ │ └── _0_1 │ │ │ │ ├── channel │ │ │ │ ├── AnypointMQChannelBinding.java │ │ │ │ └── AnypointMQChannelDestinationType.java │ │ │ │ ├── message │ │ │ │ └── AnypointMQMessageBinding.java │ │ │ │ ├── operation │ │ │ │ └── AnypointMQOperationBinding.java │ │ │ │ └── server │ │ │ │ └── AnypointMQServerBinding.java │ │ ├── googlepubsub │ │ │ ├── GooglePubSubChannelBinding.java │ │ │ ├── GooglePubSubMessageBinding.java │ │ │ ├── GooglePubSubOperationBinding.java │ │ │ ├── GooglePubSubServerBinding.java │ │ │ └── v0 │ │ │ │ ├── _1_0 │ │ │ │ ├── channel │ │ │ │ │ ├── GooglePubSubChannelBinding.java │ │ │ │ │ ├── GooglePubSubChannelMessageStoragePolicy.java │ │ │ │ │ └── GooglePubSubChannelSchemaSettings.java │ │ │ │ ├── message │ │ │ │ │ ├── GooglePubSubMessageBinding.java │ │ │ │ │ ├── GooglePubSubMessageSchemaDefinition.java │ │ │ │ │ └── GooglePubSubMessageSchemaDefinitionType.java │ │ │ │ ├── operation │ │ │ │ │ └── GooglePubSubOperationBinding.java │ │ │ │ └── server │ │ │ │ │ └── GooglePubSubServerBinding.java │ │ │ │ └── _2_0 │ │ │ │ ├── channel │ │ │ │ ├── GooglePubSubChannelBinding.java │ │ │ │ ├── GooglePubSubChannelMessageStoragePolicy.java │ │ │ │ └── GooglePubSubChannelSchemaSettings.java │ │ │ │ ├── message │ │ │ │ ├── GooglePubSubMessageBinding.java │ │ │ │ └── GooglePubSubMessageSchemaDefinition.java │ │ │ │ ├── operation │ │ │ │ └── GooglePubSubOperationBinding.java │ │ │ │ └── server │ │ │ │ └── GooglePubSubServerBinding.java │ │ ├── http │ │ │ ├── HTTPChannelBinding.java │ │ │ ├── HTTPMessageBinding.java │ │ │ ├── HTTPOperationBinding.java │ │ │ ├── HTTPServerBinding.java │ │ │ └── v0 │ │ │ │ ├── _1_0 │ │ │ │ ├── channel │ │ │ │ │ └── HTTPChannelBinding.java │ │ │ │ ├── message │ │ │ │ │ └── HTTPMessageBinding.java │ │ │ │ ├── operation │ │ │ │ │ ├── HTTPOperationBinding.java │ │ │ │ │ ├── HTTPOperationMethod.java │ │ │ │ │ └── HTTPOperationType.java │ │ │ │ └── server │ │ │ │ │ └── HTTPServerBinding.java │ │ │ │ ├── _2_0 │ │ │ │ ├── channel │ │ │ │ │ └── HTTPChannelBinding.java │ │ │ │ ├── message │ │ │ │ │ └── HTTPMessageBinding.java │ │ │ │ ├── operation │ │ │ │ │ ├── HTTPOperationBinding.java │ │ │ │ │ └── HTTPOperationMethod.java │ │ │ │ └── server │ │ │ │ │ └── HTTPServerBinding.java │ │ │ │ └── _3_0 │ │ │ │ ├── channel │ │ │ │ └── HTTPChannelBinding.java │ │ │ │ ├── message │ │ │ │ └── HTTPMessageBinding.java │ │ │ │ ├── operation │ │ │ │ ├── HTTPOperationBinding.java │ │ │ │ └── HTTPOperationMethod.java │ │ │ │ └── server │ │ │ │ └── HTTPServerBinding.java │ │ ├── ibmmq │ │ │ ├── IBMMQChannelBinding.java │ │ │ ├── IBMMQMessageBinding.java │ │ │ ├── IBMMQOperationBinding.java │ │ │ ├── IBMMQServerBinding.java │ │ │ └── v0 │ │ │ │ └── _1_0 │ │ │ │ ├── channel │ │ │ │ ├── IBMMQChannelBinding.java │ │ │ │ ├── IBMMQChannelDestinationType.java │ │ │ │ ├── IBMMQChannelQueueProperties.java │ │ │ │ └── IBMMQChannelTopicProperties.java │ │ │ │ ├── message │ │ │ │ ├── IBMMQMessageBinding.java │ │ │ │ └── IBMMQMessageType.java │ │ │ │ ├── operation │ │ │ │ └── IBMMQOperationBinding.java │ │ │ │ └── server │ │ │ │ └── IBMMQServerBinding.java │ │ ├── jms │ │ │ ├── JMSChannelBinding.java │ │ │ ├── JMSMessageBinding.java │ │ │ ├── JMSOperationBinding.java │ │ │ ├── JMSServerBinding.java │ │ │ └── v0 │ │ │ │ └── _0_1 │ │ │ │ ├── channel │ │ │ │ ├── JMSChannelBinding.java │ │ │ │ └── JMSChannelDestinationType.java │ │ │ │ ├── message │ │ │ │ └── JMSMessageBinding.java │ │ │ │ ├── operation │ │ │ │ └── JMSOperationBinding.java │ │ │ │ └── server │ │ │ │ ├── JMSServerBinding.java │ │ │ │ └── JMSServerProperty.java │ │ ├── kafka │ │ │ ├── KafkaChannelBinding.java │ │ │ ├── KafkaMessageBinding.java │ │ │ ├── KafkaOperationBinding.java │ │ │ ├── KafkaServerBinding.java │ │ │ └── v0 │ │ │ │ ├── _1_0 │ │ │ │ ├── channel │ │ │ │ │ └── KafkaChannelBinding.java │ │ │ │ ├── message │ │ │ │ │ └── KafkaMessageBinding.java │ │ │ │ ├── operation │ │ │ │ │ └── KafkaOperationBinding.java │ │ │ │ └── server │ │ │ │ │ └── KafkaServerBinding.java │ │ │ │ ├── _3_0 │ │ │ │ ├── channel │ │ │ │ │ └── KafkaChannelBinding.java │ │ │ │ ├── message │ │ │ │ │ ├── KafkaMessageBinding.java │ │ │ │ │ └── KafkaMessageSchemaIdLocation.java │ │ │ │ ├── operation │ │ │ │ │ └── KafkaOperationBinding.java │ │ │ │ └── server │ │ │ │ │ └── KafkaServerBinding.java │ │ │ │ ├── _4_0 │ │ │ │ ├── channel │ │ │ │ │ ├── KafkaChannelBinding.java │ │ │ │ │ ├── KafkaChannelTopicCleanupPolicy.java │ │ │ │ │ └── KafkaChannelTopicConfiguration.java │ │ │ │ ├── message │ │ │ │ │ ├── KafkaMessageBinding.java │ │ │ │ │ └── KafkaMessageSchemaIdLocation.java │ │ │ │ ├── operation │ │ │ │ │ └── KafkaOperationBinding.java │ │ │ │ └── server │ │ │ │ │ └── KafkaServerBinding.java │ │ │ │ └── _5_0 │ │ │ │ ├── channel │ │ │ │ ├── KafkaChannelBinding.java │ │ │ │ ├── KafkaChannelTopicCleanupPolicy.java │ │ │ │ └── KafkaChannelTopicConfiguration.java │ │ │ │ ├── message │ │ │ │ ├── KafkaMessageBinding.java │ │ │ │ └── KafkaMessageSchemaIdLocation.java │ │ │ │ ├── operation │ │ │ │ └── KafkaOperationBinding.java │ │ │ │ └── server │ │ │ │ └── KafkaServerBinding.java │ │ ├── mercure │ │ │ ├── MercureChannelBinding.java │ │ │ ├── MercureMessageBinding.java │ │ │ ├── MercureOperationBinding.java │ │ │ ├── MercureServerBinding.java │ │ │ └── v0 │ │ │ │ └── _1_0 │ │ │ │ ├── channel │ │ │ │ └── MercureChannelBinding.java │ │ │ │ ├── message │ │ │ │ └── MercureMessageBinding.java │ │ │ │ ├── operation │ │ │ │ └── MercureOperationBinding.java │ │ │ │ └── server │ │ │ │ └── MercureServerBinding.java │ │ ├── mqtt │ │ │ ├── MQTTChannelBinding.java │ │ │ ├── MQTTMessageBinding.java │ │ │ ├── MQTTOperationBinding.java │ │ │ ├── MQTTServerBinding.java │ │ │ └── v0 │ │ │ │ ├── _1_0 │ │ │ │ ├── channel │ │ │ │ │ └── MQTTChannelBinding.java │ │ │ │ ├── message │ │ │ │ │ └── MQTTMessageBinding.java │ │ │ │ ├── operation │ │ │ │ │ └── MQTTOperationBinding.java │ │ │ │ └── server │ │ │ │ │ ├── MQTTServerBinding.java │ │ │ │ │ └── MQTTServerLastWillConfiguration.java │ │ │ │ └── _2_0 │ │ │ │ ├── channel │ │ │ │ └── MQTTChannelBinding.java │ │ │ │ ├── message │ │ │ │ └── MQTTMessageBinding.java │ │ │ │ ├── operation │ │ │ │ └── MQTTOperationBinding.java │ │ │ │ └── server │ │ │ │ ├── MQTTServerBinding.java │ │ │ │ └── MQTTServerLastWillConfiguration.java │ │ ├── mqtt5 │ │ │ ├── MQTT5ChannelBinding.java │ │ │ ├── MQTT5MessageBinding.java │ │ │ ├── MQTT5OperationBinding.java │ │ │ ├── MQTT5ServerBinding.java │ │ │ ├── package-info.java │ │ │ └── v0 │ │ │ │ ├── _1_0 │ │ │ │ ├── channel │ │ │ │ │ └── MQTT5ChannelBinding.java │ │ │ │ ├── message │ │ │ │ │ └── MQTT5MessageBinding.java │ │ │ │ ├── operation │ │ │ │ │ └── MQTT5OperationBinding.java │ │ │ │ └── server │ │ │ │ │ └── MQTT5ServerBinding.java │ │ │ │ └── _2_0 │ │ │ │ ├── channel │ │ │ │ └── MQTT5ChannelBinding.java │ │ │ │ ├── message │ │ │ │ └── MQTT5MessageBinding.java │ │ │ │ ├── operation │ │ │ │ └── MQTT5OperationBinding.java │ │ │ │ └── server │ │ │ │ └── MQTT5ServerBinding.java │ │ ├── nats │ │ │ ├── NATSChannelBinding.java │ │ │ ├── NATSMessageBinding.java │ │ │ ├── NATSOperationBinding.java │ │ │ ├── NATSServerBinding.java │ │ │ └── v0 │ │ │ │ └── _1_0 │ │ │ │ ├── channel │ │ │ │ └── NATSChannelBinding.java │ │ │ │ ├── message │ │ │ │ └── NATSMessageBinding.java │ │ │ │ ├── operation │ │ │ │ └── NATSOperationBinding.java │ │ │ │ └── server │ │ │ │ └── NATSServerBinding.java │ │ ├── package-info.java │ │ ├── pulsar │ │ │ ├── PulsarChannelBinding.java │ │ │ ├── PulsarMessageBinding.java │ │ │ ├── PulsarOperationBinding.java │ │ │ ├── PulsarServerBinding.java │ │ │ └── v0 │ │ │ │ └── _1_0 │ │ │ │ ├── channel │ │ │ │ ├── PulsarChannelBinding.java │ │ │ │ ├── PulsarChannelPersistence.java │ │ │ │ └── PulsarChannelRetentionDefinition.java │ │ │ │ ├── message │ │ │ │ └── PulsarMessageBinding.java │ │ │ │ ├── operation │ │ │ │ └── PulsarOperationBinding.java │ │ │ │ └── server │ │ │ │ └── PulsarServerBinding.java │ │ ├── redis │ │ │ ├── RedisChannelBinding.java │ │ │ ├── RedisMessageBinding.java │ │ │ ├── RedisOperationBinding.java │ │ │ ├── RedisServerBinding.java │ │ │ └── v0 │ │ │ │ └── _1_0 │ │ │ │ ├── channel │ │ │ │ └── RedisChannelBinding.java │ │ │ │ ├── message │ │ │ │ └── RedisMessageBinding.java │ │ │ │ ├── operation │ │ │ │ └── RedisOperationBinding.java │ │ │ │ └── server │ │ │ │ └── RedisServerBinding.java │ │ ├── sns │ │ │ ├── SNSChannelBinding.java │ │ │ ├── SNSMessageBinding.java │ │ │ ├── SNSOperationBinding.java │ │ │ ├── SNSServerBinding.java │ │ │ └── v0 │ │ │ │ └── _1_0 │ │ │ │ ├── channel │ │ │ │ ├── SNSChannelBinding.java │ │ │ │ ├── SNSChannelOrdering.java │ │ │ │ ├── SNSChannelOrderingType.java │ │ │ │ ├── SNSChannelPolicy.java │ │ │ │ ├── SNSChannelPolicyStatement.java │ │ │ │ └── SNSChannelPolicyStatementEffect.java │ │ │ │ ├── message │ │ │ │ └── SNSMessageBinding.java │ │ │ │ ├── operation │ │ │ │ ├── SNSOperationBinding.java │ │ │ │ ├── SNSOperationConsumer.java │ │ │ │ ├── SNSOperationConsumerDeliveryPolicy.java │ │ │ │ ├── SNSOperationConsumerDeliveryPolicyBackoffFunction.java │ │ │ │ ├── SNSOperationConsumerFilterPolicyScope.java │ │ │ │ ├── SNSOperationConsumerProtocol.java │ │ │ │ ├── SNSOperationConsumerRedrivePolicy.java │ │ │ │ └── SNSOperationDestinationIdentifier.java │ │ │ │ └── server │ │ │ │ └── SNSServerBinding.java │ │ ├── solace │ │ │ ├── SolaceChannelBinding.java │ │ │ ├── SolaceMessageBinding.java │ │ │ ├── SolaceOperationBinding.java │ │ │ ├── SolaceServerBinding.java │ │ │ └── v0 │ │ │ │ ├── _1_0 │ │ │ │ ├── channel │ │ │ │ │ └── SolaceChannelBinding.java │ │ │ │ ├── message │ │ │ │ │ └── SolaceMessageBinding.java │ │ │ │ ├── operation │ │ │ │ │ └── SolaceOperationBinding.java │ │ │ │ └── server │ │ │ │ │ └── SolaceServerBinding.java │ │ │ │ ├── _2_0 │ │ │ │ ├── channel │ │ │ │ │ └── SolaceChannelBinding.java │ │ │ │ ├── message │ │ │ │ │ └── SolaceMessageBinding.java │ │ │ │ ├── operation │ │ │ │ │ ├── SolaceOperationBinding.java │ │ │ │ │ ├── SolaceOperationDestination.java │ │ │ │ │ └── queue │ │ │ │ │ │ └── SolaceOperationQueue.java │ │ │ │ └── server │ │ │ │ │ └── SolaceServerBinding.java │ │ │ │ ├── _3_0 │ │ │ │ ├── channel │ │ │ │ │ └── SolaceChannelBinding.java │ │ │ │ ├── message │ │ │ │ │ └── SolaceMessageBinding.java │ │ │ │ ├── operation │ │ │ │ │ ├── SolaceOperationBinding.java │ │ │ │ │ ├── SolaceOperationDestination.java │ │ │ │ │ └── queue │ │ │ │ │ │ └── SolaceOperationQueue.java │ │ │ │ └── server │ │ │ │ │ └── SolaceServerBinding.java │ │ │ │ └── _4_0 │ │ │ │ ├── channel │ │ │ │ └── SolaceChannelBinding.java │ │ │ │ ├── message │ │ │ │ └── SolaceMessageBinding.java │ │ │ │ ├── operation │ │ │ │ ├── SolaceOperationBinding.java │ │ │ │ ├── SolaceOperationDestination.java │ │ │ │ └── queue │ │ │ │ │ └── SolaceOperationQueue.java │ │ │ │ └── server │ │ │ │ └── SolaceServerBinding.java │ │ ├── sqs │ │ │ ├── SQSChannelBinding.java │ │ │ ├── SQSMessageBinding.java │ │ │ ├── SQSOperationBinding.java │ │ │ ├── SQSServerBinding.java │ │ │ └── v0 │ │ │ │ ├── _1_0 │ │ │ │ ├── channel │ │ │ │ │ └── SQSChannelBinding.java │ │ │ │ ├── message │ │ │ │ │ └── SQSMessageBinding.java │ │ │ │ ├── operation │ │ │ │ │ └── SQSOperationBinding.java │ │ │ │ └── server │ │ │ │ │ └── SQSServerBinding.java │ │ │ │ └── _2_0 │ │ │ │ ├── channel │ │ │ │ ├── SQSChannelBinding.java │ │ │ │ ├── SQSChannelDeadLetterQueueIdentifier.java │ │ │ │ ├── SQSChannelQueue.java │ │ │ │ ├── SQSChannelQueueDeduplicationScope.java │ │ │ │ ├── SQSChannelQueueFifoThroughputLimit.java │ │ │ │ ├── SQSChannelQueuePolicy.java │ │ │ │ ├── SQSChannelQueuePolicyStatement.java │ │ │ │ ├── SQSChannelQueuePolicyStatementEffect.java │ │ │ │ └── SQSChannelRedrivePolicy.java │ │ │ │ ├── message │ │ │ │ └── SQSMessageBinding.java │ │ │ │ ├── operation │ │ │ │ ├── SQSOperationBinding.java │ │ │ │ ├── SQSOperationDeadLetterQueueIdentifier.java │ │ │ │ ├── SQSOperationQueue.java │ │ │ │ ├── SQSOperationQueueDeduplicationScope.java │ │ │ │ ├── SQSOperationQueueFifoThroughputLimit.java │ │ │ │ ├── SQSOperationQueuePolicy.java │ │ │ │ ├── SQSOperationQueuePolicyStatement.java │ │ │ │ ├── SQSOperationQueuePolicyStatementEffect.java │ │ │ │ └── SQSOperationRedrivePolicy.java │ │ │ │ └── server │ │ │ │ └── SQSServerBinding.java │ │ ├── stomp │ │ │ ├── STOMPChannelBinding.java │ │ │ ├── STOMPMessageBinding.java │ │ │ ├── STOMPOperationBinding.java │ │ │ ├── STOMPServerBinding.java │ │ │ └── v0 │ │ │ │ └── _1_0 │ │ │ │ ├── channel │ │ │ │ └── STOMPChannelBinding.java │ │ │ │ ├── message │ │ │ │ └── STOMPMessageBinding.java │ │ │ │ ├── operation │ │ │ │ └── STOMPOperationBinding.java │ │ │ │ └── server │ │ │ │ └── STOMPServerBinding.java │ │ └── websockets │ │ │ ├── WebSocketsChannelBinding.java │ │ │ ├── WebSocketsMessageBinding.java │ │ │ ├── WebSocketsOperationBinding.java │ │ │ ├── WebSocketsServerBinding.java │ │ │ └── v0 │ │ │ └── _1_0 │ │ │ ├── channel │ │ │ ├── WebSocketsChannelBinding.java │ │ │ └── WebSocketsChannelMethod.java │ │ │ ├── message │ │ │ └── WebSocketsMessageBinding.java │ │ │ ├── operation │ │ │ └── WebSocketsOperationBinding.java │ │ │ └── server │ │ │ └── WebSocketsServerBinding.java │ │ ├── schemas │ │ ├── Type.java │ │ ├── asyncapi │ │ │ ├── AsyncAPISchema.java │ │ │ ├── ExtendableObject.java │ │ │ ├── Reference.java │ │ │ ├── multiformat │ │ │ │ ├── AsyncAPIFormatSchema.java │ │ │ │ ├── AvroFormatSchema.java │ │ │ │ ├── JsonFormatSchema.java │ │ │ │ ├── MultiFormatSchema.java │ │ │ │ ├── OpenAPIFormatSchema.java │ │ │ │ └── XMLFormatSchema.java │ │ │ └── security │ │ │ │ ├── package-info.java │ │ │ │ ├── v2 │ │ │ │ ├── ApiKeySecurityScheme.java │ │ │ │ ├── OpenIdConnectSecurityScheme.java │ │ │ │ ├── SecurityScheme.java │ │ │ │ ├── http │ │ │ │ │ ├── HttpApiKeySecurityScheme.java │ │ │ │ │ └── HttpSecurityScheme.java │ │ │ │ └── oauth2 │ │ │ │ │ ├── OAuth2SecurityScheme.java │ │ │ │ │ ├── OAuthFlows.java │ │ │ │ │ └── flow │ │ │ │ │ ├── AuthorizationCodeOAuthFlow.java │ │ │ │ │ ├── ClientCredentialsOAuthFlow.java │ │ │ │ │ ├── ImplicitOAuthFlow.java │ │ │ │ │ ├── OAuthFlow.java │ │ │ │ │ └── PasswordOAuthFlow.java │ │ │ │ └── v3 │ │ │ │ ├── ApiKeySecurityScheme.java │ │ │ │ ├── OpenIdConnectSecurityScheme.java │ │ │ │ ├── SecurityScheme.java │ │ │ │ ├── http │ │ │ │ ├── HttpApiKeySecurityScheme.java │ │ │ │ └── HttpSecurityScheme.java │ │ │ │ └── oauth2 │ │ │ │ ├── OAuth2SecurityScheme.java │ │ │ │ ├── OAuthFlows.java │ │ │ │ └── flow │ │ │ │ ├── AuthorizationCodeOAuthFlow.java │ │ │ │ ├── ClientCredentialsOAuthFlow.java │ │ │ │ ├── ImplicitOAuthFlow.java │ │ │ │ ├── OAuthFlow.java │ │ │ │ └── PasswordOAuthFlow.java │ │ ├── avro │ │ │ └── v1 │ │ │ │ └── _9_0 │ │ │ │ ├── AvroSchema.java │ │ │ │ ├── AvroSchemaArray.java │ │ │ │ ├── AvroSchemaEnum.java │ │ │ │ ├── AvroSchemaFixed.java │ │ │ │ ├── AvroSchemaLogicalType.java │ │ │ │ ├── AvroSchemaMap.java │ │ │ │ ├── AvroSchemaMetadata.java │ │ │ │ ├── AvroSchemaRecord.java │ │ │ │ ├── AvroSchemaRecordField.java │ │ │ │ ├── AvroSchemaType.java │ │ │ │ ├── AvroSchemaUnion.java │ │ │ │ └── serde │ │ │ │ ├── AvroSchemaDeserializer.java │ │ │ │ └── AvroTypeDeserializer.java │ │ ├── json │ │ │ └── JsonSchema.java │ │ ├── openapi │ │ │ └── v3 │ │ │ │ └── _0_0 │ │ │ │ ├── OpenAPISchema.java │ │ │ │ └── properties │ │ │ │ ├── Discriminator.java │ │ │ │ ├── Extensions.java │ │ │ │ ├── ExternalDocumentation.java │ │ │ │ └── XML.java │ │ ├── package-info.java │ │ ├── serde │ │ │ ├── SchemaAnyValueDeserializer.java │ │ │ ├── asyncapi │ │ │ │ ├── AsyncAPISchemaAdditionalPropertiesDeserializer.java │ │ │ │ ├── AsyncAPISchemaAnyValueDeserializer.java │ │ │ │ ├── AsyncAPISchemaItemsDeserializer.java │ │ │ │ ├── ReferenceOrAsyncAPISchemaOrNumberDeserializer.java │ │ │ │ ├── ReferenceOrAsyncAPISchemaOrStringDeserializer.java │ │ │ │ └── security │ │ │ │ │ └── v3 │ │ │ │ │ └── SecuritySchemesDeserializer.java │ │ │ ├── json │ │ │ │ ├── JsonSchemaAnyValueDeserializer.java │ │ │ │ ├── JsonSchemaItemsDeserializer.java │ │ │ │ └── JsonSchemaPropertiesDeserializer.java │ │ │ └── openapi │ │ │ │ ├── OpenAPISchemaAdditionalPropertiesDeserializer.java │ │ │ │ └── OpenAPISchemaAnyValueDeserializer.java │ │ └── xml │ │ │ └── XMLSchemaDeserializer.java │ │ ├── serde │ │ ├── ListOfReferencesOrObjectsDeserializer.java │ │ ├── MapOfReferencesOrObjectsDeserializer.java │ │ ├── ObjectDeserializer.java │ │ ├── ReferenceOrObjectDeserializer.java │ │ ├── SchemaItemsDeserializer.java │ │ └── package-info.java │ │ ├── v2 │ │ ├── _0_0 │ │ │ ├── jackson │ │ │ │ └── model │ │ │ │ │ ├── channel │ │ │ │ │ ├── ChannelParametersDeserializer.java │ │ │ │ │ ├── message │ │ │ │ │ │ ├── MessageCorrelationIdDeserializer.java │ │ │ │ │ │ ├── MessageHeadersDeserializer.java │ │ │ │ │ │ ├── MessagePayloadDeserializer.java │ │ │ │ │ │ └── MessageTraitsDeserializer.java │ │ │ │ │ └── operation │ │ │ │ │ │ ├── OperationMessageDeserializer.java │ │ │ │ │ │ └── OperationTraitsDeserializer.java │ │ │ │ │ └── component │ │ │ │ │ ├── ComponentsMessagesDeserializer.java │ │ │ │ │ ├── ComponentsParametersDeserializer.java │ │ │ │ │ ├── ComponentsSchemasDeserializer.java │ │ │ │ │ └── ComponentsSecuritySchemesDeserializer.java │ │ │ └── model │ │ │ │ ├── AsyncAPI.java │ │ │ │ ├── ExternalDocumentation.java │ │ │ │ ├── Tag.java │ │ │ │ ├── channel │ │ │ │ ├── ChannelItem.java │ │ │ │ ├── Parameter.java │ │ │ │ ├── message │ │ │ │ │ ├── CorrelationId.java │ │ │ │ │ ├── Message.java │ │ │ │ │ └── MessageTrait.java │ │ │ │ └── operation │ │ │ │ │ ├── Operation.java │ │ │ │ │ └── OperationTrait.java │ │ │ │ ├── component │ │ │ │ └── Components.java │ │ │ │ ├── info │ │ │ │ ├── Contact.java │ │ │ │ ├── Info.java │ │ │ │ └── License.java │ │ │ │ └── server │ │ │ │ ├── Server.java │ │ │ │ └── ServerVariable.java │ │ └── _6_0 │ │ │ ├── jackson │ │ │ └── model │ │ │ │ ├── channel │ │ │ │ ├── ChannelParametersDeserializer.java │ │ │ │ ├── message │ │ │ │ │ ├── MessageCorrelationIdDeserializer.java │ │ │ │ │ ├── MessageDeserializer.java │ │ │ │ │ ├── MessageHeadersDeserializer.java │ │ │ │ │ ├── MessageTraitsDeserializer.java │ │ │ │ │ └── MessagesDeserializer.java │ │ │ │ └── operation │ │ │ │ │ ├── OperationMessageDeserializer.java │ │ │ │ │ └── OperationTraitsDeserializer.java │ │ │ │ ├── component │ │ │ │ ├── ComponentsCorrelationIdsDeserializer.java │ │ │ │ ├── ComponentsMessageTraitsDeserializer.java │ │ │ │ ├── ComponentsMessagesDeserializer.java │ │ │ │ ├── ComponentsOperationTraitsDeserializer.java │ │ │ │ ├── ComponentsParametersDeserializer.java │ │ │ │ ├── ComponentsSchemasDeserializer.java │ │ │ │ ├── ComponentsSecuritySchemesDeserializer.java │ │ │ │ ├── ComponentsServerVariablesDeserializer.java │ │ │ │ └── ComponentsServersDeserializer.java │ │ │ │ ├── schema │ │ │ │ └── SchemaDeserializer.java │ │ │ │ └── server │ │ │ │ ├── ServerVariablesDeserializer.java │ │ │ │ └── ServersDeserializer.java │ │ │ └── model │ │ │ ├── AsyncAPI.java │ │ │ ├── ExternalDocumentation.java │ │ │ ├── Tag.java │ │ │ ├── channel │ │ │ ├── ChannelItem.java │ │ │ ├── Parameter.java │ │ │ ├── message │ │ │ │ ├── CorrelationId.java │ │ │ │ ├── Message.java │ │ │ │ ├── MessageExample.java │ │ │ │ ├── MessageTrait.java │ │ │ │ └── OneOfMessages.java │ │ │ └── operation │ │ │ │ ├── Operation.java │ │ │ │ └── OperationTrait.java │ │ │ ├── component │ │ │ └── Components.java │ │ │ ├── info │ │ │ ├── Contact.java │ │ │ ├── Info.java │ │ │ └── License.java │ │ │ └── server │ │ │ ├── Server.java │ │ │ └── ServerVariable.java │ │ └── v3 │ │ └── _0_0 │ │ ├── jackson │ │ └── model │ │ │ ├── ExternalDocumentationDeserializer.java │ │ │ ├── TagsDeserializer.java │ │ │ ├── channel │ │ │ ├── ChannelParametersDeserializer.java │ │ │ ├── ChannelsDeserializer.java │ │ │ └── message │ │ │ │ ├── MessageCorrelationIdDeserializer.java │ │ │ │ ├── MessageHeadersDeserializer.java │ │ │ │ ├── MessagePayloadDeserializer.java │ │ │ │ ├── MessageTraitsDeserializer.java │ │ │ │ └── MessagesDeserializer.java │ │ │ ├── component │ │ │ ├── ComponentsChannelsDeserializer.java │ │ │ ├── ComponentsCorrelationIdsDeserializer.java │ │ │ ├── ComponentsExternalDocsDeserializer.java │ │ │ ├── ComponentsMessageTraitsDeserializer.java │ │ │ ├── ComponentsMessagesDeserializer.java │ │ │ ├── ComponentsOperationTraitsDeserializer.java │ │ │ ├── ComponentsOperationsDeserializer.java │ │ │ ├── ComponentsParametersDeserializer.java │ │ │ ├── ComponentsRepliesDeserializer.java │ │ │ ├── ComponentsReplyAddressesDeserializer.java │ │ │ ├── ComponentsSchemasDeserializer.java │ │ │ ├── ComponentsSecuritySchemesDeserializer.java │ │ │ ├── ComponentsServerVariablesDeserializer.java │ │ │ ├── ComponentsServersDeserializer.java │ │ │ └── ComponentsTagsDeserializer.java │ │ │ ├── operation │ │ │ ├── OperationTraitsDeserializer.java │ │ │ ├── OperationsDeserializer.java │ │ │ └── reply │ │ │ │ ├── OperationReplyAddressDeserializer.java │ │ │ │ └── OperationReplyDeserializer.java │ │ │ └── server │ │ │ ├── ServerVariablesDeserializer.java │ │ │ └── ServersDeserializer.java │ │ └── model │ │ ├── AsyncAPI.java │ │ ├── ExternalDocumentation.java │ │ ├── Tag.java │ │ ├── channel │ │ ├── Channel.java │ │ ├── Parameter.java │ │ └── message │ │ │ ├── CorrelationId.java │ │ │ ├── Message.java │ │ │ ├── MessageExample.java │ │ │ └── MessageTrait.java │ │ ├── component │ │ └── Components.java │ │ ├── info │ │ ├── Contact.java │ │ ├── Info.java │ │ └── License.java │ │ ├── operation │ │ ├── Operation.java │ │ ├── OperationAction.java │ │ ├── OperationTrait.java │ │ └── reply │ │ │ ├── OperationReply.java │ │ │ └── OperationReplyAddress.java │ │ └── server │ │ ├── Server.java │ │ └── ServerVariable.java │ └── test │ ├── kotlin │ └── com │ │ └── asyncapi │ │ ├── bindings │ │ ├── BindingTest.java │ │ ├── BindingsTest.java │ │ ├── amqp │ │ │ ├── AMQP.java │ │ │ ├── AMQPLatestTest.java │ │ │ ├── AMQPUnknownVersionTest.java │ │ │ ├── AMQPV0_1_0Test.java │ │ │ ├── AMQPV0_2_0Test.java │ │ │ ├── AMQPV0_3_0Test.java │ │ │ └── AMQPWithoutVersionTest.java │ │ ├── amqp1 │ │ │ ├── AMQP1.java │ │ │ ├── AMQP1LatestTest.java │ │ │ ├── AMQP1UnknownVersionTest.java │ │ │ ├── AMQP1V0_1_0Test.java │ │ │ └── AMQP1WithoutVersionTest.java │ │ ├── anypointmq │ │ │ ├── AnypointMQ.java │ │ │ ├── AnypointMQLatestTest.java │ │ │ ├── AnypointMQUnknownVersionTest.java │ │ │ ├── AnypointMQV0_0_1Test.java │ │ │ └── AnypointMQWithoutVersionTest.java │ │ ├── googlepubsub │ │ │ ├── GooglePubSub.java │ │ │ ├── GooglePubSubLatestTest.java │ │ │ ├── GooglePubSubUnknownVersionTest.java │ │ │ ├── GooglePubSubV0_1_0Test.java │ │ │ ├── GooglePubSubV0_2_0Test.java │ │ │ └── GooglePubSubWithoutVersionTest.java │ │ ├── http │ │ │ ├── HTTP.java │ │ │ ├── HTTPLatestTest.java │ │ │ ├── HTTPUnknownVersionTest.java │ │ │ ├── HTTPV0_1_0Test.java │ │ │ ├── HTTPV0_2_0Test.java │ │ │ ├── HTTPV0_3_0Test.java │ │ │ └── HTTPWithoutVersionTest.java │ │ ├── ibmmq │ │ │ ├── IBMMQ.java │ │ │ ├── IBMMQLatestTest.java │ │ │ ├── IBMMQUnknownVersionTest.java │ │ │ ├── IBMMQV0_1_0Test.java │ │ │ └── IBMMQWithoutVersionTest.java │ │ ├── jms │ │ │ ├── JMS.java │ │ │ ├── JMSLatestTest.java │ │ │ ├── JMSUnknownVersionTest.java │ │ │ ├── JMSV0_1_0Test.java │ │ │ └── JMSWithoutVersionTest.java │ │ ├── kafka │ │ │ ├── Kafka.java │ │ │ ├── KafkaLatestTest.java │ │ │ ├── KafkaUnknownVersionTest.java │ │ │ ├── KafkaV0_1_0Test.java │ │ │ ├── KafkaV0_3_0Test.java │ │ │ ├── KafkaV0_4_0Test.java │ │ │ ├── KafkaV0_5_0Test.java │ │ │ └── KafkaWithoutVersionTest.java │ │ ├── mercure │ │ │ ├── Mercure.java │ │ │ ├── MercureLatestTest.java │ │ │ ├── MercureUnknownVersionTest.java │ │ │ ├── MercureV0_1_0Test.java │ │ │ └── MercureWithoutVersionTest.java │ │ ├── mqtt │ │ │ ├── MQTT.java │ │ │ ├── MQTTLatestTest.java │ │ │ ├── MQTTUnknownVersionTest.java │ │ │ ├── MQTTV0_1_0Test.java │ │ │ ├── MQTTV0_2_0Test.java │ │ │ └── MQTTWithoutVersionTest.java │ │ ├── mqtt5 │ │ │ ├── MQTT5.java │ │ │ ├── MQTT5LatestTest.java │ │ │ ├── MQTT5UnknownVersionTest.java │ │ │ ├── MQTT5V0_1_0Test.java │ │ │ ├── MQTT5V0_2_0Test.java │ │ │ └── MQTT5WithoutVersionTest.java │ │ ├── nats │ │ │ ├── NATS.java │ │ │ ├── NATSLatestTest.java │ │ │ ├── NATSUnknownVersionTest.java │ │ │ ├── NATSV0_1_0Test.java │ │ │ └── NATSWithoutVersionTest.java │ │ ├── pulsar │ │ │ ├── Pulsar.java │ │ │ ├── PulsarLatestTest.java │ │ │ ├── PulsarUnknownVersionTest.java │ │ │ ├── PulsarV0_1_0Test.java │ │ │ └── PulsarWithoutVersionTest.java │ │ ├── redis │ │ │ ├── Redis.java │ │ │ ├── RedisLatestTest.java │ │ │ ├── RedisUnknownVersionTest.java │ │ │ ├── RedisV0_1_0Test.java │ │ │ └── RedisWithoutVersionTest.java │ │ ├── sns │ │ │ ├── SNS.java │ │ │ ├── SNSLatestTest.java │ │ │ ├── SNSUnknownVersionTest.java │ │ │ ├── SNSV0_1_0Test.java │ │ │ └── SNSWithoutVersionTest.java │ │ ├── solace │ │ │ ├── Solace.java │ │ │ ├── SolaceLatestTest.java │ │ │ ├── SolaceUnknownVersionTest.java │ │ │ ├── SolaceV0_1_0Test.java │ │ │ ├── SolaceV0_2_0Test.java │ │ │ ├── SolaceV0_3_0Test.java │ │ │ ├── SolaceV0_4_0Test.java │ │ │ └── SolaceWithoutVersionTest.java │ │ ├── sqs │ │ │ ├── SQS.java │ │ │ ├── SQSLatestTest.java │ │ │ ├── SQSUnknownVersionTest.java │ │ │ ├── SQSV0_1_0Test.java │ │ │ ├── SQSV0_2_0Test.java │ │ │ └── SQSWithoutVersionTest.java │ │ ├── stomp │ │ │ ├── STOMP.java │ │ │ ├── STOMPLatestTest.java │ │ │ ├── STOMPUnknownVersionTest.java │ │ │ ├── STOMPV0_1_0Test.java │ │ │ └── STOMPWithoutVersionTest.java │ │ └── websockets │ │ │ ├── WebSockets.java │ │ │ ├── WebSocketsLatestTest.java │ │ │ ├── WebSocketsUnknownVersionTest.java │ │ │ ├── WebSocketsV0_1_0Test.java │ │ │ └── WebSocketsWithoutVersionTest.java │ │ ├── examples │ │ ├── v2 │ │ │ ├── _0_0 │ │ │ │ ├── AbstractExampleValidationTest.kt │ │ │ │ ├── AnyOf.kt │ │ │ │ ├── ApplicationHeaders.kt │ │ │ │ ├── CorrelationId.kt │ │ │ │ ├── GitterStreaming.kt │ │ │ │ ├── Mercure.kt │ │ │ │ ├── Not.kt │ │ │ │ ├── OneOf.kt │ │ │ │ ├── OperationSecurity.kt │ │ │ │ ├── RpcClient.kt │ │ │ │ ├── RpcServer.kt │ │ │ │ ├── Simple.kt │ │ │ │ ├── SlackRtm.kt │ │ │ │ ├── StreetlightsKafka.kt │ │ │ │ ├── StreetlightsMQTT.kt │ │ │ │ ├── StreetlightsOperationSecurity.kt │ │ │ │ └── WebsocketGemini.kt │ │ │ └── _6_0 │ │ │ │ ├── AbstractExampleValidationTest.kt │ │ │ │ ├── AnyOf.kt │ │ │ │ ├── ApplicationHeaders.kt │ │ │ │ ├── CorrelationId.kt │ │ │ │ ├── GitterStreaming.kt │ │ │ │ ├── Mercure.kt │ │ │ │ ├── Not.kt │ │ │ │ ├── OneOf.kt │ │ │ │ ├── OperationSecurity.kt │ │ │ │ ├── RpcClient.kt │ │ │ │ ├── RpcServer.kt │ │ │ │ ├── SchemaFormatAsyncAPIPayload.kt │ │ │ │ ├── SchemaFormatAvroPayload.kt │ │ │ │ ├── SchemaFormatJsonSchemaPayload.kt │ │ │ │ ├── SchemaFormatOpenAPIPayload.kt │ │ │ │ ├── SchemaFormatReferenceToAsyncAPIPayload.kt │ │ │ │ ├── SchemaFormatReferenceToAvroPayload.kt │ │ │ │ ├── SchemaFormatReferenceToJsonSchemaPayload.kt │ │ │ │ ├── SchemaFormatReferenceToOpenAPIPayload.kt │ │ │ │ ├── Simple.kt │ │ │ │ ├── SlackRtm.kt │ │ │ │ ├── StreetlightsKafka.kt │ │ │ │ ├── StreetlightsMQTT.kt │ │ │ │ ├── StreetlightsOperationSecurity.kt │ │ │ │ └── WebsocketGemini.kt │ │ └── v3 │ │ │ └── _0_0 │ │ │ ├── AbstractExampleValidationTest.kt │ │ │ ├── AdeoKafkaRequestReplyAsyncAPI.kt │ │ │ ├── AnyOfAsyncAPI.kt │ │ │ ├── ApplicationHeadersAsyncAPI.kt │ │ │ ├── ArrayAsMessageAsyncAPI.kt │ │ │ ├── CorrelationIdAsyncAPI.kt │ │ │ ├── GitterStreamingAsyncAPI.kt │ │ │ ├── KrakenWebsocketRequestReplyMessageFilterInReplyAsyncAPI.kt │ │ │ ├── KrakenWebsocketRequestReplyMultipleChannelsAsyncAPI.kt │ │ │ ├── MercureAsyncAPI.kt │ │ │ ├── NotAsyncAPI.kt │ │ │ ├── OneOfAsyncAPI.kt │ │ │ ├── OperationSecurityAsyncAPI.kt │ │ │ ├── RpcClientAsyncAPI.kt │ │ │ ├── RpcServerAsyncAPI.kt │ │ │ ├── SimpleAsyncAPI.kt │ │ │ ├── SlackRtmAsyncAPI.kt │ │ │ ├── StreetlightsKafkaAsyncAPI.kt │ │ │ ├── StreetlightsMQTTAsyncAPI.kt │ │ │ ├── StreetlightsOperationSecurityAsyncAPI.kt │ │ │ └── WebsocketGeminiAsyncAPI.kt │ │ ├── schemas │ │ ├── ReadJsonPropertiesTest.kt │ │ ├── ReadJsonSchemaTest.kt │ │ ├── SchemaProvider.kt │ │ ├── avro │ │ │ ├── AvroSchemasProvider.kt │ │ │ └── AvroTest.kt │ │ ├── json │ │ │ ├── ArraysSchemaTest.kt │ │ │ ├── ComplexObjectTest.kt │ │ │ ├── ConditionalValidationIfElse.kt │ │ │ ├── Draft07CoreSchemaMetaSchemaTest.kt │ │ │ ├── EnumeratedValuesTest.kt │ │ │ ├── PersonTest.kt │ │ │ ├── RegexPatternTest.kt │ │ │ └── properties │ │ │ │ ├── ConstDefaultExamplesArrayTest.kt │ │ │ │ ├── ConstDefaultExamplesBigDecimalMaximumTest.kt │ │ │ │ ├── ConstDefaultExamplesBigDecimalMinimumTest.kt │ │ │ │ ├── ConstDefaultExamplesBigDecimalTest.kt │ │ │ │ ├── ConstDefaultExamplesBigIntegerMaximumTest.kt │ │ │ │ ├── ConstDefaultExamplesBigIntegerMinimumTest.kt │ │ │ │ ├── ConstDefaultExamplesBigIntegerTest.kt │ │ │ │ ├── ConstDefaultExamplesBooleanFalseTest.kt │ │ │ │ ├── ConstDefaultExamplesBooleanTrueTest.kt │ │ │ │ ├── ConstDefaultExamplesDoubleMaximumTest.kt │ │ │ │ ├── ConstDefaultExamplesDoubleMinimumTest.kt │ │ │ │ ├── ConstDefaultExamplesDoubleTest.kt │ │ │ │ ├── ConstDefaultExamplesIntMaximumTest.kt │ │ │ │ ├── ConstDefaultExamplesIntMinimumTest.kt │ │ │ │ ├── ConstDefaultExamplesIntTest.kt │ │ │ │ ├── ConstDefaultExamplesNullTest.kt │ │ │ │ └── ConstDefaultExamplesObjectTest.kt │ │ ├── multiformat │ │ │ ├── MultiFormatSchemaTest.kt │ │ │ ├── asyncapi │ │ │ │ ├── AsyncAPIFormatSchemaTest.kt │ │ │ │ ├── AsyncAPIFormatSchemaV2_0_0Test.kt │ │ │ │ ├── AsyncAPIFormatSchemaV2_1_0Test.kt │ │ │ │ ├── AsyncAPIFormatSchemaV2_2_0Test.kt │ │ │ │ ├── AsyncAPIFormatSchemaV2_3_0Test.kt │ │ │ │ ├── AsyncAPIFormatSchemaV2_4_0Test.kt │ │ │ │ ├── AsyncAPIFormatSchemaV2_5_0Test.kt │ │ │ │ ├── AsyncAPIFormatSchemaV2_6_0Test.kt │ │ │ │ ├── AsyncAPIFormatSchemaV3_0_0Test.kt │ │ │ │ ├── EmptySchemaFormatTest.kt │ │ │ │ ├── NullSchemaFormatTest.kt │ │ │ │ └── WithoutSchemaFormatTest.kt │ │ │ ├── avro │ │ │ │ ├── AvroFormatSchemaTest.kt │ │ │ │ ├── AvroSchemaFormatSchemaV1_10_0Test.kt │ │ │ │ ├── AvroSchemaFormatSchemaV1_10_1Test.kt │ │ │ │ ├── AvroSchemaFormatSchemaV1_10_2Test.kt │ │ │ │ ├── AvroSchemaFormatSchemaV1_11_0Test.kt │ │ │ │ ├── AvroSchemaFormatSchemaV1_11_1Test.kt │ │ │ │ ├── AvroSchemaFormatSchemaV1_9_0Test.kt │ │ │ │ ├── AvroSchemaFormatSchemaV1_9_1Test.kt │ │ │ │ └── AvroSchemaFormatSchemaV1_9_2Test.kt │ │ │ ├── json │ │ │ │ └── JsonFormatSchemaTest.kt │ │ │ ├── openapi │ │ │ │ ├── OpenAPIFormatSchemaTest.kt │ │ │ │ ├── OpenAPIFormatSchemaV3_0_0Test.kt │ │ │ │ ├── OpenAPIFormatSchemaV3_0_1Test.kt │ │ │ │ ├── OpenAPIFormatSchemaV3_0_2Test.kt │ │ │ │ └── OpenAPIFormatSchemaV3_0_3Test.kt │ │ │ └── xml │ │ │ │ └── XmlFormatSchemaTest.kt │ │ ├── openapi │ │ │ └── v3 │ │ │ │ └── _0_0 │ │ │ │ ├── OpenAPISchemaTest.kt │ │ │ │ ├── SchemaTest.kt │ │ │ │ └── properties │ │ │ │ ├── ExampleEnumDefaultArrayTest.kt │ │ │ │ └── ExampleEnumDefaultNullTest.kt │ │ └── security │ │ │ ├── v2 │ │ │ ├── ApiKeySecuritySchemeTest.kt │ │ │ ├── AsymmetricEncryptionSecuritySchemeTest.kt │ │ │ ├── GssapiSecuritySchemeTest.kt │ │ │ ├── OpenIdConnectSecuritySchemeTest.kt │ │ │ ├── PlainSecuritySchemeTest.kt │ │ │ ├── ScramSha256SecuritySchemeTest.kt │ │ │ ├── ScramSha512SecuritySchemeTest.kt │ │ │ ├── SymmetricEncryptionSecuritySchemeTest.kt │ │ │ ├── UserPasswordSecuritySchemeTest.kt │ │ │ ├── X509SecuritySchemeTest.kt │ │ │ ├── http │ │ │ │ ├── HttpApiKeySecuritySchemeTest.kt │ │ │ │ └── HttpSecuritySchemeTest.kt │ │ │ └── oauth2 │ │ │ │ ├── OAuth2SecuritySchemeTest.kt │ │ │ │ ├── OAuthFlowTest.kt │ │ │ │ └── flow │ │ │ │ ├── AuthorizationCodeOAuthFlowTest.kt │ │ │ │ ├── ClientCredentialsOAuthFlowTest.kt │ │ │ │ ├── ImplicitOAuthFlowTest.kt │ │ │ │ ├── OAuthFlowTest.kt │ │ │ │ └── PasswordOAuthFlowTest.kt │ │ │ └── v3 │ │ │ ├── ApiKeySecuritySchemeTest.kt │ │ │ ├── AsymmetricEncryptionSecuritySchemeTest.kt │ │ │ ├── GssapiSecuritySchemeTest.kt │ │ │ ├── OpenIdConnectSecuritySchemeTest.kt │ │ │ ├── PlainSecuritySchemeTest.kt │ │ │ ├── ScramSha256SecuritySchemeTest.kt │ │ │ ├── ScramSha512SecuritySchemeTest.kt │ │ │ ├── SymmetricEncryptionSecuritySchemeTest.kt │ │ │ ├── UserPasswordSecuritySchemeTest.kt │ │ │ ├── X509SecuritySchemeTest.kt │ │ │ ├── http │ │ │ ├── HttpApiKeySecuritySchemeTest.kt │ │ │ └── HttpSecuritySchemeTest.kt │ │ │ └── oauth2 │ │ │ ├── OAuth2SecuritySchemeTest.kt │ │ │ ├── OAuthFlowTest.kt │ │ │ └── flow │ │ │ ├── AuthorizationCodeOAuthFlowTest.kt │ │ │ ├── ClientCredentialsOAuthFlowTest.kt │ │ │ ├── ImplicitOAuthFlowTest.kt │ │ │ ├── OAuthFlowTest.kt │ │ │ └── PasswordOAuthFlowTest.kt │ │ ├── v2 │ │ ├── ClasspathUtils.kt │ │ ├── SerDeTest.kt │ │ ├── _0_0 │ │ │ └── model │ │ │ │ ├── AsyncAPITest.kt │ │ │ │ ├── ExternalDocumentationTest.kt │ │ │ │ ├── ReferenceTest.kt │ │ │ │ ├── TagTest.kt │ │ │ │ ├── channel │ │ │ │ ├── ChannelItemTest.kt │ │ │ │ ├── ParameterTest.kt │ │ │ │ ├── message │ │ │ │ │ ├── CorrelationIdTest.kt │ │ │ │ │ ├── MessageTest.kt │ │ │ │ │ └── MessageTraitTest.kt │ │ │ │ └── operation │ │ │ │ │ ├── OperationTest.kt │ │ │ │ │ └── OperationTraitTest.kt │ │ │ │ ├── component │ │ │ │ └── ComponentsTest.kt │ │ │ │ ├── info │ │ │ │ ├── ContactTest.kt │ │ │ │ ├── InfoTest.kt │ │ │ │ └── LicenseTest.kt │ │ │ │ └── server │ │ │ │ ├── ServerTest.kt │ │ │ │ └── ServerVariableTest.kt │ │ └── _6_0 │ │ │ └── model │ │ │ ├── AsyncAPITest.kt │ │ │ ├── ExternalDocumentationTest.kt │ │ │ ├── ReferenceTest.kt │ │ │ ├── TagTest.kt │ │ │ ├── channel │ │ │ ├── ChannelItemTest.kt │ │ │ ├── ParameterTest.kt │ │ │ ├── message │ │ │ │ ├── CorrelationIdTest.kt │ │ │ │ ├── MessageExampleTest.kt │ │ │ │ ├── MessageTest.kt │ │ │ │ ├── MessageTraitTest.kt │ │ │ │ ├── MessageWithArrayPayloadTest.kt │ │ │ │ └── OneOfMessagesTest.kt │ │ │ └── operation │ │ │ │ ├── OperationTest.kt │ │ │ │ └── OperationTraitTest.kt │ │ │ ├── component │ │ │ └── ComponentsTest.kt │ │ │ ├── info │ │ │ ├── ContactTest.kt │ │ │ ├── InfoTest.kt │ │ │ └── LicenseTest.kt │ │ │ └── server │ │ │ ├── ServerTest.kt │ │ │ └── ServerVariableTest.kt │ │ └── v3 │ │ ├── ClasspathUtils.kt │ │ ├── SerDeTest.kt │ │ └── _0_0 │ │ └── model │ │ ├── AsyncAPITest.kt │ │ ├── ExternalDocumentationTest.kt │ │ ├── ReferenceTest.kt │ │ ├── TagTest.kt │ │ ├── channel │ │ ├── ChannelTest.kt │ │ ├── ParameterTest.kt │ │ └── message │ │ │ ├── CorrelationIdTest.kt │ │ │ ├── MessageExampleTest.kt │ │ │ ├── MessageTest.kt │ │ │ ├── MessageTraitTest.kt │ │ │ └── MessageWithArrayPayloadTest.kt │ │ ├── component │ │ └── ComponentsTest.kt │ │ ├── info │ │ ├── ContactTest.kt │ │ ├── InfoTest.kt │ │ └── LicenseTest.kt │ │ ├── operation │ │ ├── OperationTest.kt │ │ ├── OperationTraitTest.kt │ │ └── reply │ │ │ ├── OperationReplyAddressTest.kt │ │ │ └── OperationReplyTest.kt │ │ └── server │ │ ├── ServerTest.kt │ │ └── ServerVariableTest.kt │ └── resources │ ├── bindings │ ├── amqp │ │ ├── 0.1.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── 0.2.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── 0.3.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── latest │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── unknown version │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ └── without version │ │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ ├── anypointmq │ │ ├── 0.0.1 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── latest │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── unknown version │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ └── without version │ │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ ├── default implementation │ │ ├── 0.1.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── latest │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── unknown version │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ └── without version │ │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ ├── googlepubsub │ │ ├── 0.1.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── 0.2.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── latest │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── unknown version │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ └── without version │ │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ ├── http │ │ ├── 0.1.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── 0.2.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── 0.3.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── latest │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── unknown version │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ └── without version │ │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ ├── ibmmq │ │ ├── 0.1.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── latest │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── unknown version │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ └── without version │ │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ ├── jms │ │ ├── 0.0.1 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── latest │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── unknown version │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ └── without version │ │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ ├── kafka │ │ ├── 0.1.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── 0.3.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── 0.4.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── 0.5.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── latest │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── unknown version │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ └── without version │ │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ ├── mqtt │ │ ├── 0.1.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── 0.2.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── latest │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── unknown version │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ └── without version │ │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ ├── mqtt5 │ │ ├── 0.2.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── latest │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── unknown version │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ └── without version │ │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ ├── nats │ │ ├── 0.1.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── latest │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── unknown version │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ └── without version │ │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ ├── pulsar │ │ ├── 0.1.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── latest │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── unknown version │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ └── without version │ │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ ├── sns │ │ ├── 0.1.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── latest │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── unknown version │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ └── without version │ │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ ├── solace │ │ ├── 0.2.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── 0.3.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── 0.4.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── latest │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── unknown version │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ └── without version │ │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ ├── sqs │ │ ├── 0.1.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── 0.2.0 │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── latest │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ ├── unknown version │ │ │ ├── channel │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── message │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ ├── operation │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ │ └── server │ │ │ │ ├── binding - extended.json │ │ │ │ ├── binding - wrongly extended.json │ │ │ │ └── binding.json │ │ └── without version │ │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ └── websockets │ │ ├── 0.1.0 │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ ├── latest │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ ├── unknown version │ │ ├── channel │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ ├── message │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ ├── operation │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ └── server │ │ │ ├── binding - extended.json │ │ │ ├── binding - wrongly extended.json │ │ │ └── binding.json │ │ └── without version │ │ ├── channel │ │ ├── binding - extended.json │ │ ├── binding - wrongly extended.json │ │ └── binding.json │ │ ├── message │ │ ├── binding - extended.json │ │ ├── binding - wrongly extended.json │ │ └── binding.json │ │ ├── operation │ │ ├── binding - extended.json │ │ ├── binding - wrongly extended.json │ │ └── binding.json │ │ └── server │ │ ├── binding - extended.json │ │ ├── binding - wrongly extended.json │ │ └── binding.json │ ├── examples │ ├── v2.0.0 │ │ ├── anyof.yml │ │ ├── application-headers.yml │ │ ├── correlation-id.yml │ │ ├── gitter-streaming.yml │ │ ├── mercure.yml │ │ ├── not.yml │ │ ├── oneof.yml │ │ ├── operation-security.yml │ │ ├── rpc-client.yml │ │ ├── rpc-server.yml │ │ ├── simple.yml │ │ ├── slack-rtm.yml │ │ ├── streetlights-kafka.yml │ │ ├── streetlights-mqtt.yml │ │ ├── streetlights-operation-security.yml │ │ └── websocket-gemini.yml │ ├── v2.6.0 │ │ ├── anyof.yml │ │ ├── application-headers.yml │ │ ├── correlation-id.yml │ │ ├── gitter-streaming.yml │ │ ├── mercure.yml │ │ ├── not.yml │ │ ├── oneof.yml │ │ ├── operation-security.yml │ │ ├── rpc-client.yml │ │ ├── rpc-server.yml │ │ ├── schemaFormat - asyncapi payload.yml │ │ ├── schemaFormat - avro payload.yml │ │ ├── schemaFormat - json schema payload.yml │ │ ├── schemaFormat - openapi payload.yml │ │ ├── schemaFormat - reference to asyncapi payload.yml │ │ ├── schemaFormat - reference to avro payload.yml │ │ ├── schemaFormat - reference to json schema payload.yml │ │ ├── schemaFormat - reference to openapi payload.yml │ │ ├── simple.yml │ │ ├── slack-rtm.yml │ │ ├── streetlights-kafka.yml │ │ ├── streetlights-mqtt.yml │ │ ├── streetlights-operation-security.yml │ │ └── websocket-gemini.yml │ └── v3.0.0 │ │ ├── adeo-kafka-request-reply-asyncapi.yml │ │ ├── anyof-asyncapi.yml │ │ ├── application-headers-asyncapi.yml │ │ ├── correlation-id-asyncapi.yml │ │ ├── gitter-streaming-asyncapi.yml │ │ ├── kraken-websocket-request-reply-message-filter-in-reply-asyncapi.yml │ │ ├── kraken-websocket-request-reply-multiple-channels-asyncapi.yml │ │ ├── mercure-asyncapi.yml │ │ ├── message-of-array-type-asyncapi.yml │ │ ├── not-asyncapi.yml │ │ ├── oneof-asyncapi.yml │ │ ├── operation-security-asyncapi.yml │ │ ├── rpc-client-asyncapi.yml │ │ ├── rpc-server-asyncapi.yml │ │ ├── simple-asyncapi.yml │ │ ├── slack-rtm-asyncapi.yml │ │ ├── streetlights-kafka-asyncapi.yml │ │ ├── streetlights-mqtt-asyncapi.yml │ │ ├── streetlights-operation-security-asyncapi.yml │ │ ├── websocket-gemini-asyncapi.yml │ │ └── xml │ │ ├── simple-referenced-schema.yaml │ │ └── simple-string-schema.yaml │ ├── json │ ├── v2 │ │ ├── 2.0.0 │ │ │ └── model │ │ │ │ ├── asyncapi - extended.json │ │ │ │ ├── asyncapi - wrongly extended.json │ │ │ │ ├── asyncapi.json │ │ │ │ ├── channel │ │ │ │ ├── channel.json │ │ │ │ ├── channelItem - extended.json │ │ │ │ ├── channelItem - wrongly extended.json │ │ │ │ ├── channelItem.json │ │ │ │ ├── message │ │ │ │ │ ├── correlationId - extended.json │ │ │ │ │ ├── correlationId - wrongly extended.json │ │ │ │ │ ├── correlationId.json │ │ │ │ │ ├── message - extended.json │ │ │ │ │ ├── message - wrongly extended.json │ │ │ │ │ ├── message.json │ │ │ │ │ ├── messageTrait - extended.json │ │ │ │ │ ├── messageTrait - wrongly extended.json │ │ │ │ │ └── messageTrait.json │ │ │ │ ├── operation │ │ │ │ │ ├── operation with message - extended.json │ │ │ │ │ ├── operation with message - wrongly extended.json │ │ │ │ │ ├── operation with message.json │ │ │ │ │ ├── operation with reference to message - extended.json │ │ │ │ │ ├── operation with reference to message - wrongly extended.json │ │ │ │ │ ├── operation with reference to message.json │ │ │ │ │ ├── operationTrait - extended.json │ │ │ │ │ ├── operationTrait - wrongly extended.json │ │ │ │ │ └── operationTrait.json │ │ │ │ ├── parameter - extended.json │ │ │ │ ├── parameter - wrongly extended.json │ │ │ │ └── parameter.json │ │ │ │ ├── components │ │ │ │ ├── components - extended.json │ │ │ │ ├── components - wrongly extended.json │ │ │ │ └── components.json │ │ │ │ ├── externalDocumentation - extended.json │ │ │ │ ├── externalDocumentation - wrongly extended.json │ │ │ │ ├── externalDocumentation.json │ │ │ │ ├── info │ │ │ │ ├── contact - extended.json │ │ │ │ ├── contact - wrongly extended.json │ │ │ │ ├── contact.json │ │ │ │ ├── info - extended.json │ │ │ │ ├── info - wrongly extended.json │ │ │ │ ├── info.json │ │ │ │ ├── license - extended.json │ │ │ │ ├── license - wrongly extended.json │ │ │ │ └── license.json │ │ │ │ ├── reference.json │ │ │ │ ├── server │ │ │ │ ├── server - extended.json │ │ │ │ ├── server - wrongly extended.json │ │ │ │ ├── server.json │ │ │ │ ├── serverVariable - extended.json │ │ │ │ ├── serverVariable - wrongly extended.json │ │ │ │ └── serverVariable.json │ │ │ │ ├── tag - extended.json │ │ │ │ ├── tag - wrongly extended.json │ │ │ │ └── tag.json │ │ └── 2.6.0 │ │ │ └── model │ │ │ ├── asyncapi - extended.json │ │ │ ├── asyncapi - wrongly extended.json │ │ │ ├── asyncapi.json │ │ │ ├── channel │ │ │ ├── channelItem - extended.json │ │ │ ├── channelItem - wrongly extended.json │ │ │ ├── channelItem.json │ │ │ ├── message │ │ │ │ ├── correlationId - extended.json │ │ │ │ ├── correlationId - wrongly extended.json │ │ │ │ ├── correlationId.json │ │ │ │ ├── message - extended.json │ │ │ │ ├── message - wrongly extended.json │ │ │ │ ├── message.json │ │ │ │ ├── messageExample - extended.json │ │ │ │ ├── messageExample - wrongly extended.json │ │ │ │ ├── messageExample.json │ │ │ │ ├── messageTrait - extended.json │ │ │ │ ├── messageTrait - wrongly extended.json │ │ │ │ ├── messageTrait.json │ │ │ │ ├── messageWithArrayPayloadArrayOfSchemas.json │ │ │ │ ├── messageWithArrayPayloadJsonSchema.json │ │ │ │ └── oneOfMessages.json │ │ │ ├── operation │ │ │ │ ├── operation with message - extended.json │ │ │ │ ├── operation with message - wrongly extended.json │ │ │ │ ├── operation with message.json │ │ │ │ ├── operation with oneOf message - extended.json │ │ │ │ ├── operation with oneOf message - wrongly extended.json │ │ │ │ ├── operation with oneOf message.json │ │ │ │ ├── operation with reference to message - extended.json │ │ │ │ ├── operation with reference to message - wrongly extended.json │ │ │ │ ├── operation with reference to message.json │ │ │ │ ├── operationTrait - extended.json │ │ │ │ ├── operationTrait - wrongly extended.json │ │ │ │ └── operationTrait.json │ │ │ ├── parameter with reference to schema - extended.json │ │ │ ├── parameter with reference to schema - wrongly extended.json │ │ │ ├── parameter with reference to schema.json │ │ │ ├── parameter with schema - extended.json │ │ │ ├── parameter with schema - wrongly extended.json │ │ │ └── parameter with schema.json │ │ │ ├── components │ │ │ ├── components - extended.json │ │ │ ├── components - wrongly extended.json │ │ │ └── components.json │ │ │ ├── externalDocumentation - extended.json │ │ │ ├── externalDocumentation - wrongly extended.json │ │ │ ├── externalDocumentation.json │ │ │ ├── info │ │ │ ├── contact - extended.json │ │ │ ├── contact - wrongly extended.json │ │ │ ├── contact.json │ │ │ ├── info - extended.json │ │ │ ├── info - wrongly extended.json │ │ │ ├── info.json │ │ │ ├── license - extended.json │ │ │ ├── license - wrongly extended.json │ │ │ └── license.json │ │ │ ├── reference.json │ │ │ ├── server │ │ │ ├── server - extended.json │ │ │ ├── server - wrongly extended.json │ │ │ ├── server.json │ │ │ ├── serverVariable - extended.json │ │ │ ├── serverVariable - wrongly extended.json │ │ │ └── serverVariable.json │ │ │ ├── tag - extended.json │ │ │ ├── tag - wrongly extended.json │ │ │ └── tag.json │ └── v3 │ │ └── 3.0.0 │ │ └── model │ │ ├── asyncapi - extended.json │ │ ├── asyncapi - wrongly extended.json │ │ ├── asyncapi.json │ │ ├── channel │ │ ├── channel - extended.json │ │ ├── channel - wrongly extended.json │ │ ├── channel with reference - extended.json │ │ ├── channel with reference - wrongly extended.json │ │ ├── channel with reference.json │ │ ├── channel.json │ │ ├── message │ │ │ ├── correlationId - extended.json │ │ │ ├── correlationId - wrongly extended.json │ │ │ ├── correlationId.json │ │ │ ├── message - extended.json │ │ │ ├── message - wrongly extended.json │ │ │ ├── message 2 - extended.json │ │ │ ├── message 2 - wrongly extended.json │ │ │ ├── message 2.json │ │ │ ├── message with reference - extended.json │ │ │ ├── message with reference - wrongly extended.json │ │ │ ├── message with reference.json │ │ │ ├── message.json │ │ │ ├── messageExample - extended.json │ │ │ ├── messageExample - wrongly extended.json │ │ │ ├── messageExample.json │ │ │ ├── messageTrait - extended.json │ │ │ ├── messageTrait - wrongly extended.json │ │ │ ├── messageTrait 2 - extended.json │ │ │ ├── messageTrait 2 - wrongly extended.json │ │ │ ├── messageTrait 2.json │ │ │ ├── messageTrait with reference - extended.json │ │ │ ├── messageTrait with reference - wrongly extended.json │ │ │ ├── messageTrait with reference.json │ │ │ ├── messageTrait.json │ │ │ ├── messageWithArrayPayloadArrayOfSchemas.json │ │ │ └── messageWithArrayPayloadJsonSchema.json │ │ ├── parameter - extended.json │ │ ├── parameter - wrongly extended.json │ │ └── parameter.json │ │ ├── components │ │ ├── components - extended.json │ │ ├── components - wrongly extended.json │ │ └── components.json │ │ ├── externalDocumentation - extended.json │ │ ├── externalDocumentation - wrongly extended.json │ │ ├── externalDocumentation.json │ │ ├── info │ │ ├── contact - extended.json │ │ ├── contact - wrongly extended.json │ │ ├── contact.json │ │ ├── info - extended.json │ │ ├── info - wrongly extended.json │ │ ├── info with reference - extended.json │ │ ├── info with reference - wrongly extended.json │ │ ├── info with reference.json │ │ ├── info.json │ │ ├── license - extended.json │ │ ├── license - wrongly extended.json │ │ └── license.json │ │ ├── operation │ │ ├── operation - extended.json │ │ ├── operation - wrongly extended.json │ │ ├── operation with reference - extended.json │ │ ├── operation with reference - wrongly extended.json │ │ ├── operation with reference.json │ │ ├── operation.json │ │ ├── operationTrait - extended.json │ │ ├── operationTrait - wrongly extended.json │ │ ├── operationTrait with reference - extended.json │ │ ├── operationTrait with reference - wrongly extended.json │ │ ├── operationTrait with reference.json │ │ ├── operationTrait.json │ │ └── reply │ │ │ ├── operationReply - extended.json │ │ │ ├── operationReply - wrongly extended.json │ │ │ ├── operationReply with reference - extended.json │ │ │ ├── operationReply with reference - wrongly extended.json │ │ │ ├── operationReply with reference.json │ │ │ ├── operationReply.json │ │ │ ├── operationReplyAddress - extended.json │ │ │ ├── operationReplyAddress - wrongly extended.json │ │ │ └── operationReplyAddress.json │ │ ├── reference.json │ │ ├── server │ │ ├── server - extended.json │ │ ├── server - wrongly extended.json │ │ ├── server with reference - extended.json │ │ ├── server with reference - wrongly extended.json │ │ ├── server with reference.json │ │ ├── server.json │ │ ├── serverVariable - extended.json │ │ ├── serverVariable - wrongly extended.json │ │ └── serverVariable.json │ │ ├── tag - extended.json │ │ ├── tag - wrongly extended.json │ │ ├── tag with reference to externalDocs - extended.json │ │ ├── tag with reference to externalDocs - wrongly extended.json │ │ ├── tag with reference to externalDocs.json │ │ └── tag.json │ └── schemas │ ├── avro │ ├── ApplicationEvent.avsc │ ├── DocumentInfo.avsc │ ├── MyResponse.avsc │ ├── SchemaBuilder.avsc │ ├── TestRecordWithLogicalTypes.avsc │ ├── TestRecordWithMapsAndArrays.avsc │ ├── TestUnionRecord.avsc │ ├── foo.Bar.avsc │ ├── full_record_v1.avsc │ ├── full_record_v2.avsc │ ├── logical-uuid.avsc │ ├── logical_types_with_multiple_fields.avsc │ ├── regression_error_field_in_record.avsc │ ├── schema-location-read.json │ ├── schema-location-write.json │ ├── schema-location.json │ ├── simple_record.avsc │ └── union_and_fixed_fields.avsc │ ├── json │ ├── arrays.schema.json │ ├── complex-object.schema.json │ ├── conditional-validation-if-else.schema.json │ ├── draft-07-core-schema-meta-schema.json │ ├── enumerated-values.schema.json │ ├── person.schema.json │ ├── properties │ │ ├── array.json │ │ ├── bigdecimal-maximum.json │ │ ├── bigdecimal-minimum.json │ │ ├── bigdecimal.json │ │ ├── biginteger-maximum.json │ │ ├── biginteger-minimum.json │ │ ├── biginteger.json │ │ ├── boolean-false.json │ │ ├── boolean-true.json │ │ ├── double-maximum.json │ │ ├── double-minimum.json │ │ ├── double.json │ │ ├── float-maximum.json │ │ ├── float-minimum.json │ │ ├── float.json │ │ ├── int-maximum.json │ │ ├── int-minimum.json │ │ ├── int.json │ │ ├── null.json │ │ └── object.json │ └── regex-pattern.schema.json │ ├── multiformat │ ├── asyncapi │ │ ├── 2.0.0 │ │ │ ├── vnd.aai.asyncapi+json │ │ │ │ ├── arrays.schema.json │ │ │ │ ├── complex-object.schema.json │ │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ │ ├── enumerated-values.schema.json │ │ │ │ ├── person.schema.json │ │ │ │ └── regex-pattern.schema.json │ │ │ ├── vnd.aai.asyncapi+yaml │ │ │ │ ├── arrays.schema.yaml │ │ │ │ ├── complex-object.schema.yaml │ │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ │ ├── enumerated-values.schema.yaml │ │ │ │ ├── person.schema.yaml │ │ │ │ └── regex-pattern.schema.yaml │ │ │ └── vnd.aai.asyncapi │ │ │ │ ├── arrays.schema.json │ │ │ │ ├── arrays.schema.yaml │ │ │ │ ├── complex-object.schema.json │ │ │ │ ├── complex-object.schema.yaml │ │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ │ ├── enumerated-values.schema.json │ │ │ │ ├── enumerated-values.schema.yaml │ │ │ │ ├── person.schema.json │ │ │ │ ├── person.schema.yaml │ │ │ │ ├── regex-pattern.schema.json │ │ │ │ └── regex-pattern.schema.yaml │ │ ├── 2.1.0 │ │ │ ├── vnd.aai.asyncapi+json │ │ │ │ ├── arrays.schema.json │ │ │ │ ├── complex-object.schema.json │ │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ │ ├── enumerated-values.schema.json │ │ │ │ ├── person.schema.json │ │ │ │ └── regex-pattern.schema.json │ │ │ ├── vnd.aai.asyncapi+yaml │ │ │ │ ├── arrays.schema.yaml │ │ │ │ ├── complex-object.schema.yaml │ │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ │ ├── enumerated-values.schema.yaml │ │ │ │ ├── person.schema.yaml │ │ │ │ └── regex-pattern.schema.yaml │ │ │ └── vnd.aai.asyncapi │ │ │ │ ├── arrays.schema.json │ │ │ │ ├── arrays.schema.yaml │ │ │ │ ├── complex-object.schema.json │ │ │ │ ├── complex-object.schema.yaml │ │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ │ ├── enumerated-values.schema.json │ │ │ │ ├── enumerated-values.schema.yaml │ │ │ │ ├── person.schema.json │ │ │ │ ├── person.schema.yaml │ │ │ │ ├── regex-pattern.schema.json │ │ │ │ └── regex-pattern.schema.yaml │ │ ├── 2.2.0 │ │ │ ├── vnd.aai.asyncapi+json │ │ │ │ ├── arrays.schema.json │ │ │ │ ├── complex-object.schema.json │ │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ │ ├── enumerated-values.schema.json │ │ │ │ ├── person.schema.json │ │ │ │ └── regex-pattern.schema.json │ │ │ ├── vnd.aai.asyncapi+yaml │ │ │ │ ├── arrays.schema.yaml │ │ │ │ ├── complex-object.schema.yaml │ │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ │ ├── enumerated-values.schema.yaml │ │ │ │ ├── person.schema.yaml │ │ │ │ └── regex-pattern.schema.yaml │ │ │ └── vnd.aai.asyncapi │ │ │ │ ├── arrays.schema.json │ │ │ │ ├── arrays.schema.yaml │ │ │ │ ├── complex-object.schema.json │ │ │ │ ├── complex-object.schema.yaml │ │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ │ ├── enumerated-values.schema.json │ │ │ │ ├── enumerated-values.schema.yaml │ │ │ │ ├── person.schema.json │ │ │ │ ├── person.schema.yaml │ │ │ │ ├── regex-pattern.schema.json │ │ │ │ └── regex-pattern.schema.yaml │ │ ├── 2.3.0 │ │ │ ├── vnd.aai.asyncapi+json │ │ │ │ ├── arrays.schema.json │ │ │ │ ├── complex-object.schema.json │ │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ │ ├── enumerated-values.schema.json │ │ │ │ ├── person.schema.json │ │ │ │ └── regex-pattern.schema.json │ │ │ ├── vnd.aai.asyncapi+yaml │ │ │ │ ├── arrays.schema.yaml │ │ │ │ ├── complex-object.schema.yaml │ │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ │ ├── enumerated-values.schema.yaml │ │ │ │ ├── person.schema.yaml │ │ │ │ └── regex-pattern.schema.yaml │ │ │ └── vnd.aai.asyncapi │ │ │ │ ├── arrays.schema.json │ │ │ │ ├── arrays.schema.yaml │ │ │ │ ├── complex-object.schema.json │ │ │ │ ├── complex-object.schema.yaml │ │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ │ ├── enumerated-values.schema.json │ │ │ │ ├── enumerated-values.schema.yaml │ │ │ │ ├── person.schema.json │ │ │ │ ├── person.schema.yaml │ │ │ │ ├── regex-pattern.schema.json │ │ │ │ └── regex-pattern.schema.yaml │ │ ├── 2.4.0 │ │ │ ├── vnd.aai.asyncapi+json │ │ │ │ ├── arrays.schema.json │ │ │ │ ├── complex-object.schema.json │ │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ │ ├── enumerated-values.schema.json │ │ │ │ ├── person.schema.json │ │ │ │ └── regex-pattern.schema.json │ │ │ ├── vnd.aai.asyncapi+yaml │ │ │ │ ├── arrays.schema.yaml │ │ │ │ ├── complex-object.schema.yaml │ │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ │ ├── enumerated-values.schema.yaml │ │ │ │ ├── person.schema.yaml │ │ │ │ └── regex-pattern.schema.yaml │ │ │ └── vnd.aai.asyncapi │ │ │ │ ├── arrays.schema.json │ │ │ │ ├── arrays.schema.yaml │ │ │ │ ├── complex-object.schema.json │ │ │ │ ├── complex-object.schema.yaml │ │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ │ ├── enumerated-values.schema.json │ │ │ │ ├── enumerated-values.schema.yaml │ │ │ │ ├── person.schema.json │ │ │ │ ├── person.schema.yaml │ │ │ │ ├── regex-pattern.schema.json │ │ │ │ └── regex-pattern.schema.yaml │ │ ├── 2.5.0 │ │ │ ├── vnd.aai.asyncapi+json │ │ │ │ ├── arrays.schema.json │ │ │ │ ├── complex-object.schema.json │ │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ │ ├── enumerated-values.schema.json │ │ │ │ ├── person.schema.json │ │ │ │ └── regex-pattern.schema.json │ │ │ ├── vnd.aai.asyncapi+yaml │ │ │ │ ├── arrays.schema.yaml │ │ │ │ ├── complex-object.schema.yaml │ │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ │ ├── enumerated-values.schema.yaml │ │ │ │ ├── person.schema.yaml │ │ │ │ └── regex-pattern.schema.yaml │ │ │ └── vnd.aai.asyncapi │ │ │ │ ├── arrays.schema.json │ │ │ │ ├── arrays.schema.yaml │ │ │ │ ├── complex-object.schema.json │ │ │ │ ├── complex-object.schema.yaml │ │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ │ ├── enumerated-values.schema.json │ │ │ │ ├── enumerated-values.schema.yaml │ │ │ │ ├── person.schema.json │ │ │ │ ├── person.schema.yaml │ │ │ │ ├── regex-pattern.schema.json │ │ │ │ └── regex-pattern.schema.yaml │ │ ├── 2.6.0 │ │ │ ├── vnd.aai.asyncapi+json │ │ │ │ ├── arrays.schema.json │ │ │ │ ├── complex-object.schema.json │ │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ │ ├── enumerated-values.schema.json │ │ │ │ ├── person.schema.json │ │ │ │ └── regex-pattern.schema.json │ │ │ ├── vnd.aai.asyncapi+yaml │ │ │ │ ├── arrays.schema.yaml │ │ │ │ ├── complex-object.schema.yaml │ │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ │ ├── enumerated-values.schema.yaml │ │ │ │ ├── person.schema.yaml │ │ │ │ └── regex-pattern.schema.yaml │ │ │ └── vnd.aai.asyncapi │ │ │ │ ├── arrays.schema.json │ │ │ │ ├── arrays.schema.yaml │ │ │ │ ├── complex-object.schema.json │ │ │ │ ├── complex-object.schema.yaml │ │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ │ ├── enumerated-values.schema.json │ │ │ │ ├── enumerated-values.schema.yaml │ │ │ │ ├── person.schema.json │ │ │ │ ├── person.schema.yaml │ │ │ │ ├── regex-pattern.schema.json │ │ │ │ └── regex-pattern.schema.yaml │ │ └── 3.0.0 │ │ │ ├── vnd.aai.asyncapi+json │ │ │ ├── arrays.schema.json │ │ │ ├── complex-object.schema.json │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ ├── enumerated-values.schema.json │ │ │ ├── person.schema.json │ │ │ └── regex-pattern.schema.json │ │ │ ├── vnd.aai.asyncapi+yaml │ │ │ ├── arrays.schema.yaml │ │ │ ├── complex-object.schema.yaml │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ ├── enumerated-values.schema.yaml │ │ │ ├── person.schema.yaml │ │ │ └── regex-pattern.schema.yaml │ │ │ └── vnd.aai.asyncapi │ │ │ ├── arrays.schema.json │ │ │ ├── arrays.schema.yaml │ │ │ ├── complex-object.schema.json │ │ │ ├── complex-object.schema.yaml │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ ├── enumerated-values.schema.json │ │ │ ├── enumerated-values.schema.yaml │ │ │ ├── person.schema.json │ │ │ ├── person.schema.yaml │ │ │ ├── regex-pattern.schema.json │ │ │ └── regex-pattern.schema.yaml │ ├── avro │ │ ├── 1.10.0 │ │ │ ├── vnd.apache.avro+json │ │ │ │ ├── ApplicationEvent.json │ │ │ │ ├── DocumentInfo.json │ │ │ │ ├── MyResponse.json │ │ │ │ ├── SchemaBuilder.json │ │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ │ ├── TestUnionRecord.json │ │ │ │ ├── foo.Bar.json │ │ │ │ ├── full_record_v1.json │ │ │ │ ├── full_record_v2.json │ │ │ │ ├── logical-uuid.json │ │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ │ ├── regression_error_field_in_record.json │ │ │ │ ├── schema-location-read.json │ │ │ │ ├── schema-location-write.json │ │ │ │ ├── schema-location.json │ │ │ │ ├── simple_record.json │ │ │ │ └── union_and_fixed_fields.json │ │ │ ├── vnd.apache.avro+yaml │ │ │ │ ├── ApplicationEvent.yaml │ │ │ │ ├── DocumentInfo.yaml │ │ │ │ ├── MyResponse.yaml │ │ │ │ ├── SchemaBuilder.yaml │ │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ │ ├── TestUnionRecord.yaml │ │ │ │ ├── foo.Bar.yaml │ │ │ │ ├── full_record_v1.yaml │ │ │ │ ├── full_record_v2.yaml │ │ │ │ ├── logical-uuid.yaml │ │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ │ ├── regression_error_field_in_record.yaml │ │ │ │ ├── schema-location-read.yaml │ │ │ │ ├── schema-location-write.yaml │ │ │ │ ├── schema-location.yaml │ │ │ │ ├── simple_record.yaml │ │ │ │ └── union_and_fixed_fields.yaml │ │ │ └── vnd.apache.avro │ │ │ │ ├── ApplicationEvent.json │ │ │ │ ├── ApplicationEvent.yaml │ │ │ │ ├── DocumentInfo.json │ │ │ │ ├── DocumentInfo.yaml │ │ │ │ ├── MyResponse.json │ │ │ │ ├── MyResponse.yaml │ │ │ │ ├── SchemaBuilder.json │ │ │ │ ├── SchemaBuilder.yaml │ │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ │ ├── TestUnionRecord.json │ │ │ │ ├── TestUnionRecord.yaml │ │ │ │ ├── foo.Bar.json │ │ │ │ ├── foo.Bar.yaml │ │ │ │ ├── full_record_v1.json │ │ │ │ ├── full_record_v1.yaml │ │ │ │ ├── full_record_v2.json │ │ │ │ ├── full_record_v2.yaml │ │ │ │ ├── logical-uuid.json │ │ │ │ ├── logical-uuid.yaml │ │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ │ ├── regression_error_field_in_record.json │ │ │ │ ├── regression_error_field_in_record.yaml │ │ │ │ ├── schema-location-read.json │ │ │ │ ├── schema-location-read.yaml │ │ │ │ ├── schema-location-write.json │ │ │ │ ├── schema-location-write.yaml │ │ │ │ ├── schema-location.json │ │ │ │ ├── schema-location.yaml │ │ │ │ ├── simple_record.json │ │ │ │ ├── simple_record.yaml │ │ │ │ ├── union_and_fixed_fields.json │ │ │ │ └── union_and_fixed_fields.yaml │ │ ├── 1.10.1 │ │ │ ├── vnd.apache.avro+json │ │ │ │ ├── ApplicationEvent.json │ │ │ │ ├── DocumentInfo.json │ │ │ │ ├── MyResponse.json │ │ │ │ ├── SchemaBuilder.json │ │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ │ ├── TestUnionRecord.json │ │ │ │ ├── foo.Bar.json │ │ │ │ ├── full_record_v1.json │ │ │ │ ├── full_record_v2.json │ │ │ │ ├── logical-uuid.json │ │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ │ ├── regression_error_field_in_record.json │ │ │ │ ├── schema-location-read.json │ │ │ │ ├── schema-location-write.json │ │ │ │ ├── schema-location.json │ │ │ │ ├── simple_record.json │ │ │ │ └── union_and_fixed_fields.json │ │ │ ├── vnd.apache.avro+yaml │ │ │ │ ├── ApplicationEvent.yaml │ │ │ │ ├── DocumentInfo.yaml │ │ │ │ ├── MyResponse.yaml │ │ │ │ ├── SchemaBuilder.yaml │ │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ │ ├── TestUnionRecord.yaml │ │ │ │ ├── foo.Bar.yaml │ │ │ │ ├── full_record_v1.yaml │ │ │ │ ├── full_record_v2.yaml │ │ │ │ ├── logical-uuid.yaml │ │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ │ ├── regression_error_field_in_record.yaml │ │ │ │ ├── schema-location-read.yaml │ │ │ │ ├── schema-location-write.yaml │ │ │ │ ├── schema-location.yaml │ │ │ │ ├── simple_record.yaml │ │ │ │ └── union_and_fixed_fields.yaml │ │ │ └── vnd.apache.avro │ │ │ │ ├── ApplicationEvent.json │ │ │ │ ├── ApplicationEvent.yaml │ │ │ │ ├── DocumentInfo.json │ │ │ │ ├── DocumentInfo.yaml │ │ │ │ ├── MyResponse.json │ │ │ │ ├── MyResponse.yaml │ │ │ │ ├── SchemaBuilder.json │ │ │ │ ├── SchemaBuilder.yaml │ │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ │ ├── TestUnionRecord.json │ │ │ │ ├── TestUnionRecord.yaml │ │ │ │ ├── foo.Bar.json │ │ │ │ ├── foo.Bar.yaml │ │ │ │ ├── full_record_v1.json │ │ │ │ ├── full_record_v1.yaml │ │ │ │ ├── full_record_v2.json │ │ │ │ ├── full_record_v2.yaml │ │ │ │ ├── logical-uuid.json │ │ │ │ ├── logical-uuid.yaml │ │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ │ ├── regression_error_field_in_record.json │ │ │ │ ├── regression_error_field_in_record.yaml │ │ │ │ ├── schema-location-read.json │ │ │ │ ├── schema-location-read.yaml │ │ │ │ ├── schema-location-write.json │ │ │ │ ├── schema-location-write.yaml │ │ │ │ ├── schema-location.json │ │ │ │ ├── schema-location.yaml │ │ │ │ ├── simple_record.json │ │ │ │ ├── simple_record.yaml │ │ │ │ ├── union_and_fixed_fields.json │ │ │ │ └── union_and_fixed_fields.yaml │ │ ├── 1.10.2 │ │ │ ├── vnd.apache.avro+json │ │ │ │ ├── ApplicationEvent.json │ │ │ │ ├── DocumentInfo.json │ │ │ │ ├── MyResponse.json │ │ │ │ ├── SchemaBuilder.json │ │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ │ ├── TestUnionRecord.json │ │ │ │ ├── foo.Bar.json │ │ │ │ ├── full_record_v1.json │ │ │ │ ├── full_record_v2.json │ │ │ │ ├── logical-uuid.json │ │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ │ ├── regression_error_field_in_record.json │ │ │ │ ├── schema-location-read.json │ │ │ │ ├── schema-location-write.json │ │ │ │ ├── schema-location.json │ │ │ │ ├── simple_record.json │ │ │ │ └── union_and_fixed_fields.json │ │ │ ├── vnd.apache.avro+yaml │ │ │ │ ├── ApplicationEvent.yaml │ │ │ │ ├── DocumentInfo.yaml │ │ │ │ ├── MyResponse.yaml │ │ │ │ ├── SchemaBuilder.yaml │ │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ │ ├── TestUnionRecord.yaml │ │ │ │ ├── foo.Bar.yaml │ │ │ │ ├── full_record_v1.yaml │ │ │ │ ├── full_record_v2.yaml │ │ │ │ ├── logical-uuid.yaml │ │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ │ ├── regression_error_field_in_record.yaml │ │ │ │ ├── schema-location-read.yaml │ │ │ │ ├── schema-location-write.yaml │ │ │ │ ├── schema-location.yaml │ │ │ │ ├── simple_record.yaml │ │ │ │ └── union_and_fixed_fields.yaml │ │ │ └── vnd.apache.avro │ │ │ │ ├── ApplicationEvent.json │ │ │ │ ├── ApplicationEvent.yaml │ │ │ │ ├── DocumentInfo.json │ │ │ │ ├── DocumentInfo.yaml │ │ │ │ ├── MyResponse.json │ │ │ │ ├── MyResponse.yaml │ │ │ │ ├── SchemaBuilder.json │ │ │ │ ├── SchemaBuilder.yaml │ │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ │ ├── TestUnionRecord.json │ │ │ │ ├── TestUnionRecord.yaml │ │ │ │ ├── foo.Bar.json │ │ │ │ ├── foo.Bar.yaml │ │ │ │ ├── full_record_v1.json │ │ │ │ ├── full_record_v1.yaml │ │ │ │ ├── full_record_v2.json │ │ │ │ ├── full_record_v2.yaml │ │ │ │ ├── logical-uuid.json │ │ │ │ ├── logical-uuid.yaml │ │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ │ ├── regression_error_field_in_record.json │ │ │ │ ├── regression_error_field_in_record.yaml │ │ │ │ ├── schema-location-read.json │ │ │ │ ├── schema-location-read.yaml │ │ │ │ ├── schema-location-write.json │ │ │ │ ├── schema-location-write.yaml │ │ │ │ ├── schema-location.json │ │ │ │ ├── schema-location.yaml │ │ │ │ ├── simple_record.json │ │ │ │ ├── simple_record.yaml │ │ │ │ ├── union_and_fixed_fields.json │ │ │ │ └── union_and_fixed_fields.yaml │ │ ├── 1.11.0 │ │ │ ├── vnd.apache.avro+json │ │ │ │ ├── ApplicationEvent.json │ │ │ │ ├── DocumentInfo.json │ │ │ │ ├── MyResponse.json │ │ │ │ ├── SchemaBuilder.json │ │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ │ ├── TestUnionRecord.json │ │ │ │ ├── foo.Bar.json │ │ │ │ ├── full_record_v1.json │ │ │ │ ├── full_record_v2.json │ │ │ │ ├── logical-uuid.json │ │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ │ ├── regression_error_field_in_record.json │ │ │ │ ├── schema-location-read.json │ │ │ │ ├── schema-location-write.json │ │ │ │ ├── schema-location.json │ │ │ │ ├── simple_record.json │ │ │ │ └── union_and_fixed_fields.json │ │ │ ├── vnd.apache.avro+yaml │ │ │ │ ├── ApplicationEvent.yaml │ │ │ │ ├── DocumentInfo.yaml │ │ │ │ ├── MyResponse.yaml │ │ │ │ ├── SchemaBuilder.yaml │ │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ │ ├── TestUnionRecord.yaml │ │ │ │ ├── foo.Bar.yaml │ │ │ │ ├── full_record_v1.yaml │ │ │ │ ├── full_record_v2.yaml │ │ │ │ ├── logical-uuid.yaml │ │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ │ ├── regression_error_field_in_record.yaml │ │ │ │ ├── schema-location-read.yaml │ │ │ │ ├── schema-location-write.yaml │ │ │ │ ├── schema-location.yaml │ │ │ │ ├── simple_record.yaml │ │ │ │ └── union_and_fixed_fields.yaml │ │ │ └── vnd.apache.avro │ │ │ │ ├── ApplicationEvent.json │ │ │ │ ├── ApplicationEvent.yaml │ │ │ │ ├── DocumentInfo.json │ │ │ │ ├── DocumentInfo.yaml │ │ │ │ ├── MyResponse.json │ │ │ │ ├── MyResponse.yaml │ │ │ │ ├── SchemaBuilder.json │ │ │ │ ├── SchemaBuilder.yaml │ │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ │ ├── TestUnionRecord.json │ │ │ │ ├── TestUnionRecord.yaml │ │ │ │ ├── foo.Bar.json │ │ │ │ ├── foo.Bar.yaml │ │ │ │ ├── full_record_v1.json │ │ │ │ ├── full_record_v1.yaml │ │ │ │ ├── full_record_v2.json │ │ │ │ ├── full_record_v2.yaml │ │ │ │ ├── logical-uuid.json │ │ │ │ ├── logical-uuid.yaml │ │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ │ ├── regression_error_field_in_record.json │ │ │ │ ├── regression_error_field_in_record.yaml │ │ │ │ ├── schema-location-read.json │ │ │ │ ├── schema-location-read.yaml │ │ │ │ ├── schema-location-write.json │ │ │ │ ├── schema-location-write.yaml │ │ │ │ ├── schema-location.json │ │ │ │ ├── schema-location.yaml │ │ │ │ ├── simple_record.json │ │ │ │ ├── simple_record.yaml │ │ │ │ ├── union_and_fixed_fields.json │ │ │ │ └── union_and_fixed_fields.yaml │ │ ├── 1.11.1 │ │ │ ├── vnd.apache.avro+json │ │ │ │ ├── ApplicationEvent.json │ │ │ │ ├── DocumentInfo.json │ │ │ │ ├── MyResponse.json │ │ │ │ ├── SchemaBuilder.json │ │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ │ ├── TestUnionRecord.json │ │ │ │ ├── foo.Bar.json │ │ │ │ ├── full_record_v1.json │ │ │ │ ├── full_record_v2.json │ │ │ │ ├── logical-uuid.json │ │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ │ ├── regression_error_field_in_record.json │ │ │ │ ├── schema-location-read.json │ │ │ │ ├── schema-location-write.json │ │ │ │ ├── schema-location.json │ │ │ │ ├── simple_record.json │ │ │ │ └── union_and_fixed_fields.json │ │ │ ├── vnd.apache.avro+yaml │ │ │ │ ├── ApplicationEvent.yaml │ │ │ │ ├── DocumentInfo.yaml │ │ │ │ ├── MyResponse.yaml │ │ │ │ ├── SchemaBuilder.yaml │ │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ │ ├── TestUnionRecord.yaml │ │ │ │ ├── foo.Bar.yaml │ │ │ │ ├── full_record_v1.yaml │ │ │ │ ├── full_record_v2.yaml │ │ │ │ ├── logical-uuid.yaml │ │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ │ ├── regression_error_field_in_record.yaml │ │ │ │ ├── schema-location-read.yaml │ │ │ │ ├── schema-location-write.yaml │ │ │ │ ├── schema-location.yaml │ │ │ │ ├── simple_record.yaml │ │ │ │ └── union_and_fixed_fields.yaml │ │ │ └── vnd.apache.avro │ │ │ │ ├── ApplicationEvent.json │ │ │ │ ├── ApplicationEvent.yaml │ │ │ │ ├── DocumentInfo.json │ │ │ │ ├── DocumentInfo.yaml │ │ │ │ ├── MyResponse.json │ │ │ │ ├── MyResponse.yaml │ │ │ │ ├── SchemaBuilder.json │ │ │ │ ├── SchemaBuilder.yaml │ │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ │ ├── TestUnionRecord.json │ │ │ │ ├── TestUnionRecord.yaml │ │ │ │ ├── foo.Bar.json │ │ │ │ ├── foo.Bar.yaml │ │ │ │ ├── full_record_v1.json │ │ │ │ ├── full_record_v1.yaml │ │ │ │ ├── full_record_v2.json │ │ │ │ ├── full_record_v2.yaml │ │ │ │ ├── logical-uuid.json │ │ │ │ ├── logical-uuid.yaml │ │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ │ ├── regression_error_field_in_record.json │ │ │ │ ├── regression_error_field_in_record.yaml │ │ │ │ ├── schema-location-read.json │ │ │ │ ├── schema-location-read.yaml │ │ │ │ ├── schema-location-write.json │ │ │ │ ├── schema-location-write.yaml │ │ │ │ ├── schema-location.json │ │ │ │ ├── schema-location.yaml │ │ │ │ ├── simple_record.json │ │ │ │ ├── simple_record.yaml │ │ │ │ ├── union_and_fixed_fields.json │ │ │ │ └── union_and_fixed_fields.yaml │ │ ├── 1.9.0 │ │ │ ├── vnd.apache.avro+json │ │ │ │ ├── ApplicationEvent.json │ │ │ │ ├── DocumentInfo.json │ │ │ │ ├── MyResponse.json │ │ │ │ ├── SchemaBuilder.json │ │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ │ ├── TestUnionRecord.json │ │ │ │ ├── foo.Bar.json │ │ │ │ ├── full_record_v1.json │ │ │ │ ├── full_record_v2.json │ │ │ │ ├── logical-uuid.json │ │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ │ ├── regression_error_field_in_record.json │ │ │ │ ├── schema-location-read.json │ │ │ │ ├── schema-location-write.json │ │ │ │ ├── schema-location.json │ │ │ │ ├── simple_record.json │ │ │ │ └── union_and_fixed_fields.json │ │ │ ├── vnd.apache.avro+yaml │ │ │ │ ├── ApplicationEvent.yaml │ │ │ │ ├── DocumentInfo.yaml │ │ │ │ ├── MyResponse.yaml │ │ │ │ ├── SchemaBuilder.yaml │ │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ │ ├── TestUnionRecord.yaml │ │ │ │ ├── foo.Bar.yaml │ │ │ │ ├── full_record_v1.yaml │ │ │ │ ├── full_record_v2.yaml │ │ │ │ ├── logical-uuid.yaml │ │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ │ ├── regression_error_field_in_record.yaml │ │ │ │ ├── schema-location-read.yaml │ │ │ │ ├── schema-location-write.yaml │ │ │ │ ├── schema-location.yaml │ │ │ │ ├── simple_record.yaml │ │ │ │ └── union_and_fixed_fields.yaml │ │ │ └── vnd.apache.avro │ │ │ │ ├── ApplicationEvent.json │ │ │ │ ├── ApplicationEvent.yaml │ │ │ │ ├── DocumentInfo.json │ │ │ │ ├── DocumentInfo.yaml │ │ │ │ ├── MyResponse.json │ │ │ │ ├── MyResponse.yaml │ │ │ │ ├── SchemaBuilder.json │ │ │ │ ├── SchemaBuilder.yaml │ │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ │ ├── TestUnionRecord.json │ │ │ │ ├── TestUnionRecord.yaml │ │ │ │ ├── foo.Bar.json │ │ │ │ ├── foo.Bar.yaml │ │ │ │ ├── full_record_v1.json │ │ │ │ ├── full_record_v1.yaml │ │ │ │ ├── full_record_v2.json │ │ │ │ ├── full_record_v2.yaml │ │ │ │ ├── logical-uuid.json │ │ │ │ ├── logical-uuid.yaml │ │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ │ ├── regression_error_field_in_record.json │ │ │ │ ├── regression_error_field_in_record.yaml │ │ │ │ ├── schema-location-read.json │ │ │ │ ├── schema-location-read.yaml │ │ │ │ ├── schema-location-write.json │ │ │ │ ├── schema-location-write.yaml │ │ │ │ ├── schema-location.json │ │ │ │ ├── schema-location.yaml │ │ │ │ ├── simple_record.json │ │ │ │ ├── simple_record.yaml │ │ │ │ ├── union_and_fixed_fields.json │ │ │ │ └── union_and_fixed_fields.yaml │ │ ├── 1.9.1 │ │ │ ├── vnd.apache.avro+json │ │ │ │ ├── ApplicationEvent.json │ │ │ │ ├── DocumentInfo.json │ │ │ │ ├── MyResponse.json │ │ │ │ ├── SchemaBuilder.json │ │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ │ ├── TestUnionRecord.json │ │ │ │ ├── foo.Bar.json │ │ │ │ ├── full_record_v1.json │ │ │ │ ├── full_record_v2.json │ │ │ │ ├── logical-uuid.json │ │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ │ ├── regression_error_field_in_record.json │ │ │ │ ├── schema-location-read.json │ │ │ │ ├── schema-location-write.json │ │ │ │ ├── schema-location.json │ │ │ │ ├── simple_record.json │ │ │ │ └── union_and_fixed_fields.json │ │ │ ├── vnd.apache.avro+yaml │ │ │ │ ├── ApplicationEvent.yaml │ │ │ │ ├── DocumentInfo.yaml │ │ │ │ ├── MyResponse.yaml │ │ │ │ ├── SchemaBuilder.yaml │ │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ │ ├── TestUnionRecord.yaml │ │ │ │ ├── foo.Bar.yaml │ │ │ │ ├── full_record_v1.yaml │ │ │ │ ├── full_record_v2.yaml │ │ │ │ ├── logical-uuid.yaml │ │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ │ ├── regression_error_field_in_record.yaml │ │ │ │ ├── schema-location-read.yaml │ │ │ │ ├── schema-location-write.yaml │ │ │ │ ├── schema-location.yaml │ │ │ │ ├── simple_record.yaml │ │ │ │ └── union_and_fixed_fields.yaml │ │ │ └── vnd.apache.avro │ │ │ │ ├── ApplicationEvent.json │ │ │ │ ├── ApplicationEvent.yaml │ │ │ │ ├── DocumentInfo.json │ │ │ │ ├── DocumentInfo.yaml │ │ │ │ ├── MyResponse.json │ │ │ │ ├── MyResponse.yaml │ │ │ │ ├── SchemaBuilder.json │ │ │ │ ├── SchemaBuilder.yaml │ │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ │ ├── TestUnionRecord.json │ │ │ │ ├── TestUnionRecord.yaml │ │ │ │ ├── foo.Bar.json │ │ │ │ ├── foo.Bar.yaml │ │ │ │ ├── full_record_v1.json │ │ │ │ ├── full_record_v1.yaml │ │ │ │ ├── full_record_v2.json │ │ │ │ ├── full_record_v2.yaml │ │ │ │ ├── logical-uuid.json │ │ │ │ ├── logical-uuid.yaml │ │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ │ ├── regression_error_field_in_record.json │ │ │ │ ├── regression_error_field_in_record.yaml │ │ │ │ ├── schema-location-read.json │ │ │ │ ├── schema-location-read.yaml │ │ │ │ ├── schema-location-write.json │ │ │ │ ├── schema-location-write.yaml │ │ │ │ ├── schema-location.json │ │ │ │ ├── schema-location.yaml │ │ │ │ ├── simple_record.json │ │ │ │ ├── simple_record.yaml │ │ │ │ ├── union_and_fixed_fields.json │ │ │ │ └── union_and_fixed_fields.yaml │ │ └── 1.9.2 │ │ │ ├── vnd.apache.avro+json │ │ │ ├── ApplicationEvent.json │ │ │ ├── DocumentInfo.json │ │ │ ├── MyResponse.json │ │ │ ├── SchemaBuilder.json │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ ├── TestUnionRecord.json │ │ │ ├── foo.Bar.json │ │ │ ├── full_record_v1.json │ │ │ ├── full_record_v2.json │ │ │ ├── logical-uuid.json │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ ├── regression_error_field_in_record.json │ │ │ ├── schema-location-read.json │ │ │ ├── schema-location-write.json │ │ │ ├── schema-location.json │ │ │ ├── simple_record.json │ │ │ └── union_and_fixed_fields.json │ │ │ ├── vnd.apache.avro+yaml │ │ │ ├── ApplicationEvent.yaml │ │ │ ├── DocumentInfo.yaml │ │ │ ├── MyResponse.yaml │ │ │ ├── SchemaBuilder.yaml │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ ├── TestUnionRecord.yaml │ │ │ ├── foo.Bar.yaml │ │ │ ├── full_record_v1.yaml │ │ │ ├── full_record_v2.yaml │ │ │ ├── logical-uuid.yaml │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ ├── regression_error_field_in_record.yaml │ │ │ ├── schema-location-read.yaml │ │ │ ├── schema-location-write.yaml │ │ │ ├── schema-location.yaml │ │ │ ├── simple_record.yaml │ │ │ └── union_and_fixed_fields.yaml │ │ │ └── vnd.apache.avro │ │ │ ├── ApplicationEvent.json │ │ │ ├── ApplicationEvent.yaml │ │ │ ├── DocumentInfo.json │ │ │ ├── DocumentInfo.yaml │ │ │ ├── MyResponse.json │ │ │ ├── MyResponse.yaml │ │ │ ├── SchemaBuilder.json │ │ │ ├── SchemaBuilder.yaml │ │ │ ├── TestRecordWithLogicalTypes.json │ │ │ ├── TestRecordWithLogicalTypes.yaml │ │ │ ├── TestRecordWithMapsAndArrays.json │ │ │ ├── TestRecordWithMapsAndArrays.yaml │ │ │ ├── TestUnionRecord.json │ │ │ ├── TestUnionRecord.yaml │ │ │ ├── foo.Bar.json │ │ │ ├── foo.Bar.yaml │ │ │ ├── full_record_v1.json │ │ │ ├── full_record_v1.yaml │ │ │ ├── full_record_v2.json │ │ │ ├── full_record_v2.yaml │ │ │ ├── logical-uuid.json │ │ │ ├── logical-uuid.yaml │ │ │ ├── logical_types_with_multiple_fields.json │ │ │ ├── logical_types_with_multiple_fields.yaml │ │ │ ├── regression_error_field_in_record.json │ │ │ ├── regression_error_field_in_record.yaml │ │ │ ├── schema-location-read.json │ │ │ ├── schema-location-read.yaml │ │ │ ├── schema-location-write.json │ │ │ ├── schema-location-write.yaml │ │ │ ├── schema-location.json │ │ │ ├── schema-location.yaml │ │ │ ├── simple_record.json │ │ │ ├── simple_record.yaml │ │ │ ├── union_and_fixed_fields.json │ │ │ └── union_and_fixed_fields.yaml │ ├── json │ │ ├── schema+json │ │ │ ├── arrays.schema.json │ │ │ ├── complex-object.schema.json │ │ │ ├── conditional-validation-if-else.schema.json │ │ │ ├── draft-07-core-schema-meta-schema.json │ │ │ ├── enumerated-values.schema.json │ │ │ ├── person.schema.json │ │ │ └── regex-pattern.schema.json │ │ └── schema+yaml │ │ │ ├── arrays.schema.yaml │ │ │ ├── complex-object.schema.yaml │ │ │ ├── conditional-validation-if-else.schema.yaml │ │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ │ ├── enumerated-values.schema.yaml │ │ │ ├── person.schema.yaml │ │ │ └── regex-pattern.schema.yaml │ ├── openapi │ │ ├── 3.0.0 │ │ │ ├── vnd.oai.openapi+json │ │ │ │ └── schema.json │ │ │ ├── vnd.oai.openapi+yaml │ │ │ │ └── schema.yaml │ │ │ └── vnd.oai.openapi │ │ │ │ ├── schema.json │ │ │ │ └── schema.yaml │ │ ├── 3.0.1 │ │ │ ├── vnd.oai.openapi+json │ │ │ │ └── schema.json │ │ │ ├── vnd.oai.openapi+yaml │ │ │ │ └── schema.yaml │ │ │ └── vnd.oai.openapi │ │ │ │ ├── schema.json │ │ │ │ └── schema.yaml │ │ ├── 3.0.2 │ │ │ ├── vnd.oai.openapi+json │ │ │ │ └── schema.json │ │ │ ├── vnd.oai.openapi+yaml │ │ │ │ └── schema.yaml │ │ │ └── vnd.oai.openapi │ │ │ │ ├── schema.json │ │ │ │ └── schema.yaml │ │ └── 3.0.3 │ │ │ ├── vnd.oai.openapi+json │ │ │ └── schema.json │ │ │ ├── vnd.oai.openapi+yaml │ │ │ └── schema.yaml │ │ │ └── vnd.oai.openapi │ │ │ ├── schema.json │ │ │ └── schema.yaml │ ├── schemaFormat is empty │ │ ├── arrays.schema.json │ │ ├── arrays.schema.yaml │ │ ├── complex-object.schema.json │ │ ├── complex-object.schema.yaml │ │ ├── conditional-validation-if-else.schema.json │ │ ├── conditional-validation-if-else.schema.yaml │ │ ├── draft-07-core-schema-meta-schema.json │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ ├── enumerated-values.schema.json │ │ ├── enumerated-values.schema.yaml │ │ ├── person.schema.json │ │ ├── person.schema.yaml │ │ ├── regex-pattern.schema.json │ │ └── regex-pattern.schema.yaml │ ├── schemaFormat is null │ │ ├── arrays.schema.json │ │ ├── arrays.schema.yaml │ │ ├── complex-object.schema.json │ │ ├── complex-object.schema.yaml │ │ ├── conditional-validation-if-else.schema.json │ │ ├── conditional-validation-if-else.schema.yaml │ │ ├── draft-07-core-schema-meta-schema.json │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ ├── enumerated-values.schema.json │ │ ├── enumerated-values.schema.yaml │ │ ├── person.schema.json │ │ ├── person.schema.yaml │ │ ├── regex-pattern.schema.json │ │ └── regex-pattern.schema.yaml │ └── without schemaFormat │ │ ├── arrays.schema.json │ │ ├── arrays.schema.yaml │ │ ├── complex-object.schema.json │ │ ├── complex-object.schema.yaml │ │ ├── conditional-validation-if-else.schema.json │ │ ├── conditional-validation-if-else.schema.yaml │ │ ├── draft-07-core-schema-meta-schema.json │ │ ├── draft-07-core-schema-meta-schema.yaml │ │ ├── enumerated-values.schema.json │ │ ├── enumerated-values.schema.yaml │ │ ├── person.schema.json │ │ ├── person.schema.yaml │ │ ├── regex-pattern.schema.json │ │ └── regex-pattern.schema.yaml │ ├── openapi │ ├── discriminator-propertyname.json │ ├── discriminator.json │ ├── externaldocumentation-url.json │ ├── externaldocumentation.json │ ├── properties │ │ ├── array.json │ │ └── null.json │ ├── schema.json │ ├── xml-attribute.json │ ├── xml-name-replacement.json │ ├── xml-prefix-and-namespace.json │ ├── xml-wrapped.json │ └── xml.json │ └── security │ ├── v2 │ ├── X509 - extended.json │ ├── X509 - wrongly extended.json │ ├── X509.json │ ├── apiKey - extended.json │ ├── apiKey - wrongly extended.json │ ├── apiKey.json │ ├── asymmetricEncryption - extended.json │ ├── asymmetricEncryption - wrongly extended.json │ ├── asymmetricEncryption.json │ ├── gssapi - extended.json │ ├── gssapi - wrongly extended.json │ ├── gssapi.json │ ├── http │ │ ├── httpApiKey - extended.json │ │ ├── httpApiKey - wrongly extended.json │ │ ├── httpApiKey.json │ │ ├── httpBasic - extended.json │ │ ├── httpBasic - wrongly extended.json │ │ ├── httpBasic.json │ │ ├── httpBearer - extended.json │ │ ├── httpBearer - wrongly extended.json │ │ └── httpBearer.json │ ├── oauth2 │ │ ├── flow │ │ │ ├── authorizationCodeOAuthFlow - extended.json │ │ │ ├── authorizationCodeOAuthFlow - wrongly extended.json │ │ │ ├── authorizationCodeOAuthFlow.json │ │ │ ├── clientCredentialsOAuthFlow - extended.json │ │ │ ├── clientCredentialsOAuthFlow - wrongly extended.json │ │ │ ├── clientCredentialsOAuthFlow.json │ │ │ ├── implicitOAuthFlow - extended.json │ │ │ ├── implicitOAuthFlow - wrongly extended.json │ │ │ ├── implicitOAuthFlow.json │ │ │ ├── oauthFlow - extended.json │ │ │ ├── oauthFlow - wrongly extended.json │ │ │ ├── oauthFlow.json │ │ │ ├── passwordOAuthFlow - extended.json │ │ │ ├── passwordOAuthFlow - wrongly extended.json │ │ │ └── passwordOAuthFlow.json │ │ ├── oauth2 - extended.json │ │ ├── oauth2 - wrongly extended.json │ │ ├── oauth2.json │ │ ├── oauthFlows - extended.json │ │ ├── oauthFlows - wrongly extended.json │ │ └── oauthFlows.json │ ├── openIdConnect - extended.json │ ├── openIdConnect - wrongly extended.json │ ├── openIdConnect.json │ ├── plain - extended.json │ ├── plain - wrongly extended.json │ ├── plain.json │ ├── scramSha256 - extended.json │ ├── scramSha256 - wrongly extended.json │ ├── scramSha256.json │ ├── scramSha512 - extended.json │ ├── scramSha512 - wrongly extended.json │ ├── scramSha512.json │ ├── symmetricEncryption - extended.json │ ├── symmetricEncryption - wrongly extended.json │ ├── symmetricEncryption.json │ ├── userPassword - extended.json │ ├── userPassword - wrongly extended.json │ └── userPassword.json │ └── v3 │ ├── X509 - extended.json │ ├── X509 - wrongly extended.json │ ├── X509.json │ ├── apiKey - extended.json │ ├── apiKey - wrongly extended.json │ ├── apiKey.json │ ├── asymmetricEncryption - extended.json │ ├── asymmetricEncryption - wrongly extended.json │ ├── asymmetricEncryption.json │ ├── gssapi - extended.json │ ├── gssapi - wrongly extended.json │ ├── gssapi.json │ ├── http │ ├── httpApiKey - extended.json │ ├── httpApiKey - wrongly extended.json │ ├── httpApiKey.json │ ├── httpBasic - extended.json │ ├── httpBasic - wrongly extended.json │ ├── httpBasic.json │ ├── httpBearer - extended.json │ ├── httpBearer - wrongly extended.json │ └── httpBearer.json │ ├── oauth2 │ ├── flow │ │ ├── authorizationCodeOAuthFlow - extended.json │ │ ├── authorizationCodeOAuthFlow - wrongly extended.json │ │ ├── authorizationCodeOAuthFlow.json │ │ ├── clientCredentialsOAuthFlow - extended.json │ │ ├── clientCredentialsOAuthFlow - wrongly extended.json │ │ ├── clientCredentialsOAuthFlow.json │ │ ├── implicitOAuthFlow - extended.json │ │ ├── implicitOAuthFlow - wrongly extended.json │ │ ├── implicitOAuthFlow.json │ │ ├── oauthFlow - extended.json │ │ ├── oauthFlow - wrongly extended.json │ │ ├── oauthFlow.json │ │ ├── passwordOAuthFlow - extended.json │ │ ├── passwordOAuthFlow - wrongly extended.json │ │ └── passwordOAuthFlow.json │ ├── oauth2 - extended.json │ ├── oauth2 - wrongly extended.json │ ├── oauth2.json │ ├── oauthFlows - extended.json │ ├── oauthFlows - wrongly extended.json │ └── oauthFlows.json │ ├── openIdConnect - extended.json │ ├── openIdConnect - wrongly extended.json │ ├── openIdConnect.json │ ├── plain - extended.json │ ├── plain - wrongly extended.json │ ├── plain.json │ ├── scramSha256 - extended.json │ ├── scramSha256 - wrongly extended.json │ ├── scramSha256.json │ ├── scramSha512 - extended.json │ ├── scramSha512 - wrongly extended.json │ ├── scramSha512.json │ ├── symmetricEncryption - extended.json │ ├── symmetricEncryption - wrongly extended.json │ ├── symmetricEncryption.json │ ├── userPassword - extended.json │ ├── userPassword - wrongly extended.json │ └── userPassword.json ├── asyncapi.iml └── pom.xml /.github/workflows/add-good-first-issue-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/add-good-first-issue-labels.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-for-humans-merging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/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/jasyncapi/HEAD/.github/workflows/automerge-for-humans-remove-ready-to-merge-label-on-edit.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-orphans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/automerge-orphans.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/autoupdate.yml -------------------------------------------------------------------------------- /.github/workflows/bounty-program-commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/bounty-program-commands.yml -------------------------------------------------------------------------------- /.github/workflows/help-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/help-command.yml -------------------------------------------------------------------------------- /.github/workflows/issues-prs-notifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/issues-prs-notifications.yml -------------------------------------------------------------------------------- /.github/workflows/lint-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/lint-pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/notify-tsc-members-mention.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/notify-tsc-members-mention.yml -------------------------------------------------------------------------------- /.github/workflows/please-take-a-look-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/please-take-a-look-command.yml -------------------------------------------------------------------------------- /.github/workflows/release-announcements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/release-announcements.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/scripts/README.md -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/htmlContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/scripts/mailchimp/htmlContent.js -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/scripts/mailchimp/index.js -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/scripts/mailchimp/package-lock.json -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/scripts/mailchimp/package.json -------------------------------------------------------------------------------- /.github/workflows/stale-issues-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/stale-issues-prs.yml -------------------------------------------------------------------------------- /.github/workflows/transfer-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/transfer-issue.yml -------------------------------------------------------------------------------- /.github/workflows/update-maintainers-trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/update-maintainers-trigger.yaml -------------------------------------------------------------------------------- /.github/workflows/update-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/update-pr.yml -------------------------------------------------------------------------------- /.github/workflows/welcome-first-time-contrib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.github/workflows/welcome-first-time-contrib.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.idea/icon.svg -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/kotlinScripting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.idea/kotlinScripting.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.sdkmanrc: -------------------------------------------------------------------------------- 1 | java=21.0.2-amzn 2 | maven=3.9.6 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/assets/logo.png -------------------------------------------------------------------------------- /asyncapi-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/README.md -------------------------------------------------------------------------------- /asyncapi-core/asyncapi-core.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/asyncapi-core.iml -------------------------------------------------------------------------------- /asyncapi-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/pom.xml -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/BindingsMapDeserializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/BindingsMapDeserializer.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/ChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/ChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/ChannelBindingsDeserializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/ChannelBindingsDeserializer.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/MessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/MessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/MessageBindingsDeserializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/MessageBindingsDeserializer.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/OperationBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/OperationBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/ServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/ServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/ServerBindingsDeserializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/ServerBindingsDeserializer.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/amqp/AMQPChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/amqp/AMQPChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/amqp/AMQPMessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/amqp/AMQPMessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/amqp/AMQPOperationBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/amqp/AMQPOperationBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/amqp/AMQPServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/amqp/AMQPServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/amqp1/AMQP1ChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/amqp1/AMQP1ChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/amqp1/AMQP1MessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/amqp1/AMQP1MessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/amqp1/AMQP1OperationBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/amqp1/AMQP1OperationBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/amqp1/AMQP1ServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/amqp1/AMQP1ServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/http/HTTPChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/http/HTTPChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/http/HTTPMessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/http/HTTPMessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/http/HTTPOperationBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/http/HTTPOperationBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/http/HTTPServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/http/HTTPServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/ibmmq/IBMMQChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/ibmmq/IBMMQChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/ibmmq/IBMMQMessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/ibmmq/IBMMQMessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/ibmmq/IBMMQOperationBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/ibmmq/IBMMQOperationBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/ibmmq/IBMMQServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/ibmmq/IBMMQServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/jms/JMSChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/jms/JMSChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/jms/JMSMessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/jms/JMSMessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/jms/JMSOperationBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/jms/JMSOperationBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/jms/JMSServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/jms/JMSServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/kafka/KafkaChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/kafka/KafkaChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/kafka/KafkaMessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/kafka/KafkaMessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/kafka/KafkaOperationBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/kafka/KafkaOperationBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/kafka/KafkaServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/kafka/KafkaServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt/MQTTChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt/MQTTChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt/MQTTMessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt/MQTTMessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt/MQTTOperationBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt/MQTTOperationBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt/MQTTServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt/MQTTServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt5/MQTT5ChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt5/MQTT5ChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt5/MQTT5MessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt5/MQTT5MessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt5/MQTT5OperationBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt5/MQTT5OperationBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt5/MQTT5ServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt5/MQTT5ServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt5/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/mqtt5/package-info.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/nats/NATSChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/nats/NATSChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/nats/NATSMessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/nats/NATSMessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/nats/NATSOperationBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/nats/NATSOperationBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/nats/NATSServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/nats/NATSServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/package-info.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/pulsar/PulsarChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/pulsar/PulsarChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/pulsar/PulsarMessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/pulsar/PulsarMessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/pulsar/PulsarServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/pulsar/PulsarServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/redis/RedisChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/redis/RedisChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/redis/RedisMessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/redis/RedisMessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/redis/RedisOperationBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/redis/RedisOperationBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/redis/RedisServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/redis/RedisServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/sns/SNSChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/sns/SNSChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/sns/SNSMessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/sns/SNSMessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/sns/SNSOperationBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/sns/SNSOperationBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/sns/SNSServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/sns/SNSServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/solace/SolaceChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/solace/SolaceChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/solace/SolaceMessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/solace/SolaceMessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/solace/SolaceServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/solace/SolaceServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/sqs/SQSChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/sqs/SQSChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/sqs/SQSMessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/sqs/SQSMessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/sqs/SQSOperationBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/sqs/SQSOperationBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/sqs/SQSServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/sqs/SQSServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/stomp/STOMPChannelBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/stomp/STOMPChannelBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/stomp/STOMPMessageBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/stomp/STOMPMessageBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/stomp/STOMPOperationBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/stomp/STOMPOperationBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/bindings/stomp/STOMPServerBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/bindings/stomp/STOMPServerBinding.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/schemas/Type.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/schemas/Type.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/schemas/asyncapi/AsyncAPISchema.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/schemas/asyncapi/AsyncAPISchema.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/schemas/asyncapi/ExtendableObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/schemas/asyncapi/ExtendableObject.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/schemas/asyncapi/Reference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/schemas/asyncapi/Reference.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/schemas/avro/v1/_9_0/AvroSchema.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/schemas/avro/v1/_9_0/AvroSchema.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/schemas/avro/v1/_9_0/AvroSchemaArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/schemas/avro/v1/_9_0/AvroSchemaArray.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/schemas/avro/v1/_9_0/AvroSchemaEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/schemas/avro/v1/_9_0/AvroSchemaEnum.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/schemas/avro/v1/_9_0/AvroSchemaFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/schemas/avro/v1/_9_0/AvroSchemaFixed.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/schemas/avro/v1/_9_0/AvroSchemaMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/schemas/avro/v1/_9_0/AvroSchemaMap.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/schemas/avro/v1/_9_0/AvroSchemaType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/schemas/avro/v1/_9_0/AvroSchemaType.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/schemas/avro/v1/_9_0/AvroSchemaUnion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/schemas/avro/v1/_9_0/AvroSchemaUnion.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/schemas/json/JsonSchema.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/schemas/json/JsonSchema.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/schemas/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/schemas/package-info.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/schemas/xml/XMLSchemaDeserializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/schemas/xml/XMLSchemaDeserializer.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/serde/ObjectDeserializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/serde/ObjectDeserializer.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/serde/ReferenceOrObjectDeserializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/serde/ReferenceOrObjectDeserializer.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/serde/SchemaItemsDeserializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/serde/SchemaItemsDeserializer.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/serde/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/serde/package-info.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/AsyncAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/AsyncAPI.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/ExternalDocumentation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/ExternalDocumentation.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/Tag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/Tag.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/channel/ChannelItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/channel/ChannelItem.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/channel/Parameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/channel/Parameter.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/component/Components.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/component/Components.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/info/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/info/Contact.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/info/Info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/info/Info.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/info/License.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/info/License.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/server/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/server/Server.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/server/ServerVariable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_0_0/model/server/ServerVariable.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/AsyncAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/AsyncAPI.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/ExternalDocumentation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/ExternalDocumentation.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/Tag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/Tag.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/channel/ChannelItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/channel/ChannelItem.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/channel/Parameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/channel/Parameter.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/component/Components.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/component/Components.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/info/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/info/Contact.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/info/Info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/info/Info.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/info/License.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/info/License.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/server/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/server/Server.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/server/ServerVariable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/server/ServerVariable.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/AsyncAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/AsyncAPI.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/ExternalDocumentation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/ExternalDocumentation.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/Tag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/Tag.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/channel/Channel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/channel/Channel.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/channel/Parameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/channel/Parameter.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/component/Components.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/component/Components.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/info/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/info/Contact.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/info/Info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/info/Info.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/info/License.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/info/License.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/operation/Operation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/operation/Operation.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/server/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/server/Server.java -------------------------------------------------------------------------------- /asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/server/ServerVariable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/main/java/com/asyncapi/v3/_0_0/model/server/ServerVariable.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/BindingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/BindingTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/BindingsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/BindingsTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp/AMQP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp/AMQP.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp/AMQPLatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp/AMQPLatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp/AMQPV0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp/AMQPV0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp/AMQPV0_2_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp/AMQPV0_2_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp/AMQPV0_3_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp/AMQPV0_3_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp1/AMQP1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp1/AMQP1.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp1/AMQP1LatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp1/AMQP1LatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp1/AMQP1V0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/amqp1/AMQP1V0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/anypointmq/AnypointMQ.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/anypointmq/AnypointMQ.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/googlepubsub/GooglePubSub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/googlepubsub/GooglePubSub.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/http/HTTP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/http/HTTP.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/http/HTTPLatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/http/HTTPLatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/http/HTTPV0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/http/HTTPV0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/http/HTTPV0_2_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/http/HTTPV0_2_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/http/HTTPV0_3_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/http/HTTPV0_3_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/ibmmq/IBMMQ.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/ibmmq/IBMMQ.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/ibmmq/IBMMQLatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/ibmmq/IBMMQLatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/ibmmq/IBMMQV0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/ibmmq/IBMMQV0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/jms/JMS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/jms/JMS.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/jms/JMSLatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/jms/JMSLatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/jms/JMSUnknownVersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/jms/JMSUnknownVersionTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/jms/JMSV0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/jms/JMSV0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/jms/JMSWithoutVersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/jms/JMSWithoutVersionTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/kafka/Kafka.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/kafka/Kafka.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/kafka/KafkaLatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/kafka/KafkaLatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/kafka/KafkaV0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/kafka/KafkaV0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/kafka/KafkaV0_3_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/kafka/KafkaV0_3_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/kafka/KafkaV0_4_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/kafka/KafkaV0_4_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/kafka/KafkaV0_5_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/kafka/KafkaV0_5_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mercure/Mercure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mercure/Mercure.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mercure/MercureLatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mercure/MercureLatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mercure/MercureV0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mercure/MercureV0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt/MQTT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt/MQTT.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt/MQTTLatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt/MQTTLatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt/MQTTV0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt/MQTTV0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt/MQTTV0_2_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt/MQTTV0_2_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt5/MQTT5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt5/MQTT5.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt5/MQTT5LatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt5/MQTT5LatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt5/MQTT5V0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt5/MQTT5V0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt5/MQTT5V0_2_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/mqtt5/MQTT5V0_2_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/nats/NATS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/nats/NATS.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/nats/NATSLatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/nats/NATSLatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/nats/NATSV0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/nats/NATSV0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/pulsar/Pulsar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/pulsar/Pulsar.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/pulsar/PulsarLatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/pulsar/PulsarLatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/pulsar/PulsarV0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/pulsar/PulsarV0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/redis/Redis.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/redis/Redis.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/redis/RedisLatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/redis/RedisLatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/redis/RedisV0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/redis/RedisV0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sns/SNS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sns/SNS.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sns/SNSLatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sns/SNSLatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sns/SNSUnknownVersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sns/SNSUnknownVersionTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sns/SNSV0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sns/SNSV0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sns/SNSWithoutVersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sns/SNSWithoutVersionTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/solace/Solace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/solace/Solace.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/solace/SolaceLatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/solace/SolaceLatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/solace/SolaceV0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/solace/SolaceV0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/solace/SolaceV0_2_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/solace/SolaceV0_2_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/solace/SolaceV0_3_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/solace/SolaceV0_3_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/solace/SolaceV0_4_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/solace/SolaceV0_4_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sqs/SQS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sqs/SQS.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sqs/SQSLatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sqs/SQSLatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sqs/SQSUnknownVersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sqs/SQSUnknownVersionTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sqs/SQSV0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sqs/SQSV0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sqs/SQSV0_2_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sqs/SQSV0_2_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sqs/SQSWithoutVersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/sqs/SQSWithoutVersionTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/stomp/STOMP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/stomp/STOMP.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/stomp/STOMPLatestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/stomp/STOMPLatestTest.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/stomp/STOMPV0_1_0Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/stomp/STOMPV0_1_0Test.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/bindings/websockets/WebSockets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/bindings/websockets/WebSockets.java -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/AnyOf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/AnyOf.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/ApplicationHeaders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/ApplicationHeaders.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/CorrelationId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/CorrelationId.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/GitterStreaming.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/GitterStreaming.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/Mercure.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/Mercure.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/Not.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/Not.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/OneOf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/OneOf.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/OperationSecurity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/OperationSecurity.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/RpcClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/RpcClient.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/RpcServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/RpcServer.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/Simple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/Simple.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/SlackRtm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/SlackRtm.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/StreetlightsKafka.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/StreetlightsKafka.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/StreetlightsMQTT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/StreetlightsMQTT.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/WebsocketGemini.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_0_0/WebsocketGemini.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/AnyOf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/AnyOf.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/ApplicationHeaders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/ApplicationHeaders.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/CorrelationId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/CorrelationId.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/GitterStreaming.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/GitterStreaming.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/Mercure.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/Mercure.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/Not.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/Not.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/OneOf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/OneOf.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/OperationSecurity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/OperationSecurity.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/RpcClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/RpcClient.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/RpcServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/RpcServer.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/Simple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/Simple.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/SlackRtm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/SlackRtm.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/StreetlightsKafka.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/StreetlightsKafka.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/StreetlightsMQTT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/StreetlightsMQTT.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/WebsocketGemini.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v2/_6_0/WebsocketGemini.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/AnyOfAsyncAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/AnyOfAsyncAPI.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/MercureAsyncAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/MercureAsyncAPI.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/NotAsyncAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/NotAsyncAPI.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/OneOfAsyncAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/OneOfAsyncAPI.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/RpcClientAsyncAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/RpcClientAsyncAPI.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/RpcServerAsyncAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/RpcServerAsyncAPI.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/SimpleAsyncAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/SimpleAsyncAPI.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/SlackRtmAsyncAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/examples/v3/_0_0/SlackRtmAsyncAPI.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/schemas/ReadJsonPropertiesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/schemas/ReadJsonPropertiesTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/schemas/ReadJsonSchemaTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/schemas/ReadJsonSchemaTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/schemas/SchemaProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/schemas/SchemaProvider.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/schemas/avro/AvroSchemasProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/schemas/avro/AvroSchemasProvider.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/schemas/avro/AvroTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/schemas/avro/AvroTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/schemas/json/ArraysSchemaTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/schemas/json/ArraysSchemaTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/schemas/json/ComplexObjectTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/schemas/json/ComplexObjectTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/schemas/json/EnumeratedValuesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/schemas/json/EnumeratedValuesTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/schemas/json/PersonTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/schemas/json/PersonTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/schemas/json/RegexPatternTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/schemas/json/RegexPatternTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/schemas/openapi/v3/_0_0/SchemaTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/schemas/openapi/v3/_0_0/SchemaTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/ClasspathUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/ClasspathUtils.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/SerDeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/SerDeTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/AsyncAPITest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/AsyncAPITest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/ReferenceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/ReferenceTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/TagTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/TagTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/channel/ParameterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/channel/ParameterTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/info/ContactTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/info/ContactTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/info/InfoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/info/InfoTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/info/LicenseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/info/LicenseTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/server/ServerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_0_0/model/server/ServerTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/AsyncAPITest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/AsyncAPITest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/ReferenceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/ReferenceTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/TagTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/TagTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/channel/ParameterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/channel/ParameterTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/info/ContactTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/info/ContactTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/info/InfoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/info/InfoTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/info/LicenseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/info/LicenseTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/server/ServerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v2/_6_0/model/server/ServerTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v3/ClasspathUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v3/ClasspathUtils.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v3/SerDeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v3/SerDeTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/AsyncAPITest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/AsyncAPITest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/ReferenceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/ReferenceTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/TagTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/TagTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/channel/ChannelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/channel/ChannelTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/info/ContactTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/info/ContactTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/info/InfoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/info/InfoTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/info/LicenseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/info/LicenseTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/server/ServerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/kotlin/com/asyncapi/v3/_0_0/model/server/ServerTest.kt -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/0.1.0/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/amqp/0.1.0/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/0.1.0/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/amqp/0.1.0/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/0.1.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/amqp/0.1.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/0.1.0/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/0.2.0/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/amqp/0.2.0/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/0.2.0/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/amqp/0.2.0/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/0.2.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/amqp/0.2.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/0.2.0/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.2.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/0.3.0/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/amqp/0.3.0/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/0.3.0/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/amqp/0.3.0/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/0.3.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/amqp/0.3.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/0.3.0/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.3.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/latest/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/amqp/latest/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/latest/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/amqp/latest/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/latest/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/amqp/latest/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/latest/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/unknown version/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.199.6" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/amqp/without version/server/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/anypointmq/0.0.1/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/anypointmq/0.0.1/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/anypointmq/0.0.1/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/anypointmq/0.0.1/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/anypointmq/0.0.1/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.0.1" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/anypointmq/0.0.1/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.0.1" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/anypointmq/latest/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/anypointmq/latest/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/anypointmq/unknown version/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.996.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/anypointmq/unknown version/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.996.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/anypointmq/without version/operation/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/anypointmq/without version/server/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/0.1.0/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/0.1.0/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/0.1.0/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/0.1.0/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/latest/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/latest/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/latest/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/latest/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/unknown version/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.199.36" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/unknown version/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.199.36" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/unknown version/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.199.36" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/unknown version/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.199.36" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/without version/channel/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/without version/message/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/without version/operation/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/default implementation/without version/server/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/googlepubsub/0.1.0/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/googlepubsub/0.1.0/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/googlepubsub/0.2.0/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.2.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/googlepubsub/0.2.0/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.2.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/googlepubsub/latest/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/googlepubsub/latest/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/googlepubsub/without version/operation/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/googlepubsub/without version/server/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/0.1.0/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/0.1.0/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/http/0.1.0/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/0.1.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/http/0.1.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/0.1.0/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/0.2.0/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.2.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/0.2.0/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/http/0.2.0/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/0.2.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/http/0.2.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/0.2.0/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.2.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/0.3.0/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.3.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/0.3.0/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/http/0.3.0/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/0.3.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/http/0.3.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/0.3.0/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.3.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/latest/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/latest/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/http/latest/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/latest/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/http/latest/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/latest/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/without version/channel/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/http/without version/server/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/ibmmq/0.1.0/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/ibmmq/0.1.0/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/ibmmq/0.1.0/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/ibmmq/0.1.0/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/ibmmq/0.1.0/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/ibmmq/0.1.0/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/ibmmq/0.1.0/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/ibmmq/latest/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/ibmmq/latest/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/ibmmq/latest/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/ibmmq/latest/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/ibmmq/latest/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/ibmmq/latest/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/ibmmq/latest/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/ibmmq/without version/operation/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/jms/0.0.1/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/jms/0.0.1/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/jms/0.0.1/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/jms/0.0.1/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/jms/0.0.1/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.0.1" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/jms/0.0.1/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/jms/0.0.1/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/jms/latest/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/jms/latest/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/jms/latest/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/jms/latest/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/jms/latest/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/jms/latest/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/jms/latest/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/jms/without version/operation/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.1.0/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.1.0/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/0.1.0/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.1.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/0.1.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.1.0/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.3.0/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/0.3.0/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.3.0/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/0.3.0/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.3.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/0.3.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.3.0/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/0.3.0/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.4.0/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/0.4.0/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.4.0/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/0.4.0/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.4.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/0.4.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.4.0/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/0.4.0/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.5.0/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/0.5.0/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.5.0/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/0.5.0/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.5.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/0.5.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/0.5.0/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/0.5.0/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/latest/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/latest/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/latest/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/latest/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/latest/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/latest/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/kafka/latest/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/kafka/latest/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt/0.1.0/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt/0.1.0/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt/0.1.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/mqtt/0.1.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt/0.1.0/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/mqtt/0.1.0/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt/0.2.0/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.2.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt/0.2.0/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/mqtt/0.2.0/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt/0.2.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/mqtt/0.2.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt/0.2.0/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/mqtt/0.2.0/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt/latest/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt/latest/message/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/mqtt/latest/message/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt/latest/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/mqtt/latest/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt/latest/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/mqtt/latest/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt/without version/channel/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt5/0.2.0/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.2.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt5/0.2.0/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.2.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt5/0.2.0/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.2.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt5/0.2.0/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/mqtt5/0.2.0/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt5/latest/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt5/latest/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt5/latest/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt5/latest/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/mqtt5/latest/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt5/without version/channel/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt5/without version/message/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt5/without version/operation/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/mqtt5/without version/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "sessionExpiryInterval": 60 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/nats/0.1.0/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/nats/0.1.0/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/nats/0.1.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/nats/0.1.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/nats/0.1.0/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/nats/latest/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/nats/latest/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/nats/latest/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/nats/latest/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/nats/latest/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/nats/unknown version/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.199.36" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/nats/unknown version/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.199.36" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/nats/unknown version/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.199.36" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/nats/without version/channel/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/nats/without version/message/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/nats/without version/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "queue": "messages" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/nats/without version/server/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/pulsar/0.1.0/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/pulsar/0.1.0/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/pulsar/0.1.0/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/pulsar/0.1.0/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/pulsar/0.1.0/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/pulsar/0.1.0/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/pulsar/latest/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/pulsar/latest/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/pulsar/latest/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/pulsar/latest/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/pulsar/latest/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/pulsar/latest/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/pulsar/without version/message/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/pulsar/without version/operation/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/pulsar/without version/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "tenant": "contoso" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sns/0.1.0/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/sns/0.1.0/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sns/0.1.0/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sns/0.1.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/sns/0.1.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sns/0.1.0/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sns/latest/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/sns/latest/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sns/latest/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sns/latest/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/sns/latest/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sns/latest/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sns/unknown version/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.199.36" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sns/unknown version/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.199.36" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sns/without version/message/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sns/without version/server/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/0.2.0/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.2.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/0.2.0/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.2.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/0.2.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/solace/0.2.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/0.2.0/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/solace/0.2.0/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/0.3.0/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.3.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/0.3.0/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.3.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/0.3.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/solace/0.3.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/0.3.0/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/solace/0.3.0/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/0.4.0/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.4.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/0.4.0/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.4.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/0.4.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/solace/0.4.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/0.4.0/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/solace/0.4.0/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/latest/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion" : "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/latest/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion" : "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/latest/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/solace/latest/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/latest/server/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/solace/latest/server/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/without version/channel/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/solace/without version/message/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/0.1.0/channel/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/0.1.0/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/0.1.0/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/0.1.0/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/0.2.0/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/sqs/0.2.0/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/0.2.0/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.2.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/0.2.0/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/sqs/0.2.0/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/0.2.0/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.2.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/latest/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/sqs/latest/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/latest/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/latest/operation/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/sqs/latest/operation/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/latest/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/unknown version/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.199.36" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/unknown version/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.199.36" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/without version/message/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/sqs/without version/server/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/websockets/0.1.0/channel/binding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/bindings/websockets/0.1.0/channel/binding.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/websockets/0.1.0/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/websockets/0.1.0/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/websockets/0.1.0/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.1.0" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/websockets/latest/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/websockets/latest/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/websockets/latest/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "latest" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/websockets/unknown version/message/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.199.36" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/websockets/unknown version/operation/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.199.36" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/websockets/unknown version/server/binding.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindingVersion": "0.199.36" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/websockets/without version/message/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/websockets/without version/operation/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/bindings/websockets/without version/server/binding.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.0.0/anyof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.0.0/anyof.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.0.0/application-headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.0.0/application-headers.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.0.0/correlation-id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.0.0/correlation-id.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.0.0/gitter-streaming.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.0.0/gitter-streaming.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.0.0/mercure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.0.0/mercure.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.0.0/not.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.0.0/not.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.0.0/oneof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.0.0/oneof.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.0.0/operation-security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.0.0/operation-security.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.0.0/rpc-client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.0.0/rpc-client.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.0.0/rpc-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.0.0/rpc-server.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.0.0/simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.0.0/simple.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.0.0/slack-rtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.0.0/slack-rtm.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.0.0/streetlights-kafka.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.0.0/streetlights-kafka.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.0.0/streetlights-mqtt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.0.0/streetlights-mqtt.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.0.0/websocket-gemini.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.0.0/websocket-gemini.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.6.0/anyof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.6.0/anyof.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.6.0/application-headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.6.0/application-headers.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.6.0/correlation-id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.6.0/correlation-id.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.6.0/gitter-streaming.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.6.0/gitter-streaming.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.6.0/mercure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.6.0/mercure.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.6.0/not.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.6.0/not.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.6.0/oneof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.6.0/oneof.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.6.0/operation-security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.6.0/operation-security.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.6.0/rpc-client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.6.0/rpc-client.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.6.0/rpc-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.6.0/rpc-server.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.6.0/simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.6.0/simple.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.6.0/slack-rtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.6.0/slack-rtm.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.6.0/streetlights-kafka.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.6.0/streetlights-kafka.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.6.0/streetlights-mqtt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.6.0/streetlights-mqtt.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v2.6.0/websocket-gemini.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v2.6.0/websocket-gemini.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v3.0.0/anyof-asyncapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v3.0.0/anyof-asyncapi.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v3.0.0/correlation-id-asyncapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v3.0.0/correlation-id-asyncapi.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v3.0.0/gitter-streaming-asyncapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v3.0.0/gitter-streaming-asyncapi.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v3.0.0/mercure-asyncapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v3.0.0/mercure-asyncapi.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v3.0.0/not-asyncapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v3.0.0/not-asyncapi.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v3.0.0/oneof-asyncapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v3.0.0/oneof-asyncapi.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v3.0.0/rpc-client-asyncapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v3.0.0/rpc-client-asyncapi.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v3.0.0/rpc-server-asyncapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v3.0.0/rpc-server-asyncapi.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v3.0.0/simple-asyncapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v3.0.0/simple-asyncapi.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v3.0.0/slack-rtm-asyncapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v3.0.0/slack-rtm-asyncapi.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v3.0.0/streetlights-mqtt-asyncapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v3.0.0/streetlights-mqtt-asyncapi.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v3.0.0/websocket-gemini-asyncapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v3.0.0/websocket-gemini-asyncapi.yml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/examples/v3.0.0/xml/simple-string-schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/examples/v3.0.0/xml/simple-string-schema.yaml -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/asyncapi - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.0.0/model/asyncapi - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.0.0/model/asyncapi.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/channel/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.0.0/model/channel/channel.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/channel/channelItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.0.0/model/channel/channelItem.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/channel/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.0.0/model/channel/parameter.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/components/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.0.0/model/components/components.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/externalDocumentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.0.0/model/externalDocumentation.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/info/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.0.0/model/info/contact.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/info/info - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.0.0/model/info/info - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/info/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.0.0/model/info/info.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/info/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.0.0/model/info/license.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/reference.json: -------------------------------------------------------------------------------- 1 | { 2 | "$ref": "#/components/schemas/user" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/server/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.0.0/model/server/server.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/server/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.0.0/model/server/serverVariable.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/tag - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.0.0/model/tag - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.0.0/model/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.0.0/model/tag.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.6.0/model/asyncapi - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.6.0/model/asyncapi - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.6.0/model/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.6.0/model/asyncapi.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.6.0/model/channel/channelItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.6.0/model/channel/channelItem.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.6.0/model/components/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.6.0/model/components/components.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.6.0/model/externalDocumentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.6.0/model/externalDocumentation.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.6.0/model/info/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.6.0/model/info/contact.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.6.0/model/info/info - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.6.0/model/info/info - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.6.0/model/info/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.6.0/model/info/info.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.6.0/model/info/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.6.0/model/info/license.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.6.0/model/reference.json: -------------------------------------------------------------------------------- 1 | { 2 | "$ref": "#/components/schemas/user" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.6.0/model/server/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.6.0/model/server/server.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.6.0/model/server/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.6.0/model/server/serverVariable.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.6.0/model/tag - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.6.0/model/tag - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v2/2.6.0/model/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v2/2.6.0/model/tag.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/asyncapi - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v3/3.0.0/model/asyncapi - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v3/3.0.0/model/asyncapi.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/channel/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v3/3.0.0/model/channel/channel.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/channel/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v3/3.0.0/model/channel/parameter.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/components/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v3/3.0.0/model/components/components.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/externalDocumentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v3/3.0.0/model/externalDocumentation.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/info/contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v3/3.0.0/model/info/contact.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/info/info - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v3/3.0.0/model/info/info - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/info/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v3/3.0.0/model/info/info.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/info/license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v3/3.0.0/model/info/license.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/operation/operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v3/3.0.0/model/operation/operation.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/reference.json: -------------------------------------------------------------------------------- 1 | { 2 | "$ref": "#/components/schemas/user" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/server/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v3/3.0.0/model/server/server.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/server/serverVariable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v3/3.0.0/model/server/serverVariable.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/tag - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v3/3.0.0/model/tag - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/json/v3/3.0.0/model/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/json/v3/3.0.0/model/tag.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/ApplicationEvent.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/ApplicationEvent.avsc -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/DocumentInfo.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/DocumentInfo.avsc -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/MyResponse.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/MyResponse.avsc -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/SchemaBuilder.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/SchemaBuilder.avsc -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/TestRecordWithLogicalTypes.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/TestRecordWithLogicalTypes.avsc -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/TestRecordWithMapsAndArrays.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/TestRecordWithMapsAndArrays.avsc -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/TestUnionRecord.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/TestUnionRecord.avsc -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/foo.Bar.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/foo.Bar.avsc -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/full_record_v1.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/full_record_v1.avsc -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/full_record_v2.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/full_record_v2.avsc -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/logical-uuid.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/logical-uuid.avsc -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/schema-location-read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/schema-location-read.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/schema-location-write.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/schema-location-write.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/schema-location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/schema-location.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/simple_record.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/simple_record.avsc -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/avro/union_and_fixed_fields.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/avro/union_and_fixed_fields.avsc -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/arrays.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/arrays.schema.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/complex-object.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/complex-object.schema.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/enumerated-values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/enumerated-values.schema.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/person.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/person.schema.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/array.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/bigdecimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/bigdecimal.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/biginteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/biginteger.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/boolean-false.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/boolean-false.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/boolean-true.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/boolean-true.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/double-maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/double-maximum.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/double-minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/double-minimum.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/double.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/double.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/float-maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/float-maximum.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/float-minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/float-minimum.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/float.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/float.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/int-maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/int-maximum.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/int-minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/int-minimum.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/int.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/null.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/properties/object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/properties/object.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/json/regex-pattern.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/json/regex-pattern.schema.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/openapi/discriminator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/openapi/discriminator.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/openapi/externaldocumentation-url.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://example.com" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/openapi/externaldocumentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/openapi/externaldocumentation.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/openapi/properties/array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/openapi/properties/array.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/openapi/properties/null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/openapi/properties/null.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/openapi/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/openapi/schema.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/openapi/xml-attribute.json: -------------------------------------------------------------------------------- 1 | { 2 | "attribute": true 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/openapi/xml-name-replacement.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "animal" 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/openapi/xml-prefix-and-namespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/openapi/xml-prefix-and-namespace.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/openapi/xml-wrapped.json: -------------------------------------------------------------------------------- 1 | { 2 | "wrapped": true 3 | } -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/openapi/xml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/openapi/xml.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/X509 - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/X509 - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/X509.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/apiKey - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/apiKey - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/apiKey.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/asymmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/asymmetricEncryption.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/gssapi - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/gssapi - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/gssapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/gssapi.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/http/httpApiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/http/httpApiKey.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/http/httpBasic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/http/httpBasic.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/http/httpBearer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/http/httpBearer.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/oauth2/flow/oauthFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/oauth2/flow/oauthFlow.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/oauth2/oauth2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/oauth2/oauth2.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/oauth2/oauthFlows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/oauth2/oauthFlows.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/openIdConnect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/openIdConnect.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/plain - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/plain - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/plain.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/scramSha256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/scramSha256.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/scramSha512.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/scramSha512.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/symmetricEncryption.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v2/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v2/userPassword.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/X509 - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/X509 - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/X509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/X509.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/apiKey - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/apiKey - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/apiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/apiKey.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/asymmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/asymmetricEncryption.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/gssapi - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/gssapi - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/gssapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/gssapi.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/http/httpApiKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/http/httpApiKey.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/http/httpBasic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/http/httpBasic.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/http/httpBearer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/http/httpBearer.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/oauth2/flow/oauthFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/oauth2/flow/oauthFlow.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/oauth2/oauth2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/oauth2/oauth2.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/oauth2/oauthFlows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/oauth2/oauthFlows.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/openIdConnect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/openIdConnect.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/plain - extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/plain - extended.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/plain.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/scramSha256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/scramSha256.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/scramSha512.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/scramSha512.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/symmetricEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/symmetricEncryption.json -------------------------------------------------------------------------------- /asyncapi-core/src/test/resources/schemas/security/v3/userPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi-core/src/test/resources/schemas/security/v3/userPassword.json -------------------------------------------------------------------------------- /asyncapi.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/asyncapi.iml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/jasyncapi/HEAD/pom.xml --------------------------------------------------------------------------------