-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d4d5197
commit f5a2346
Showing
42 changed files
with
3,428 additions
and
663 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
bindings/amqp/message.json → bindings/amqp/0.2.0/message.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
bindings/amqp/operation.json → bindings/amqp/0.2.0/operation.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
bindings/anypointmq/channel.json → bindings/anypointmq/0.0.1/channel.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
bindings/anypointmq/message.json → bindings/anypointmq/0.0.1/message.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "http://asyncapi.com/bindings/googlepubsub/0.1.0/channel.json", | ||
"title": "Cloud Pub/Sub Channel Schema", | ||
"description": "This object contains information about the channel representation for Google Cloud Pub/Sub.", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"patternProperties": { | ||
"^x-[\\w\\d\\.\\x2d_]+$": { | ||
"$ref": "http://asyncapi.com/definitions/3.0.0/specificationExtension.json" | ||
} | ||
}, | ||
"properties": { | ||
"bindingVersion": { | ||
"type": "string", | ||
"enum": [ | ||
"0.1.0" | ||
], | ||
"description": "The version of this binding." | ||
}, | ||
"labels": { | ||
"type": "object" | ||
}, | ||
"messageRetentionDuration": { | ||
"type": "string" | ||
}, | ||
"messageStoragePolicy": { | ||
"type": "object", | ||
"additionalProperties": false, | ||
"properties": { | ||
"allowedPersistenceRegions": { | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
}, | ||
"schemaSettings": { | ||
"type": "object", | ||
"additionalItems": false, | ||
"properties": { | ||
"encoding": { | ||
"type": "string" | ||
}, | ||
"firstRevisionId": { | ||
"type": "string" | ||
}, | ||
"lastRevisionId": { | ||
"type": "string" | ||
}, | ||
"name": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"encoding", | ||
"name" | ||
] | ||
}, | ||
"topic": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"schemaSettings", | ||
"topic" | ||
], | ||
"examples": [ | ||
{ | ||
"labels": { | ||
"label1": "value1", | ||
"label2": "value2" | ||
}, | ||
"messageRetentionDuration": "86400s", | ||
"messageStoragePolicy": { | ||
"allowedPersistenceRegions": [ | ||
"us-central1", | ||
"us-east1" | ||
] | ||
}, | ||
"schemaSettings": { | ||
"encoding": "json", | ||
"name": "projects/your-project-id/schemas/your-schema" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "http://asyncapi.com/bindings/googlepubsub/0.1.0/message.json", | ||
"title": "Cloud Pub/Sub Channel Schema", | ||
"description": "This object contains information about the message representation for Google Cloud Pub/Sub.", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"patternProperties": { | ||
"^x-[\\w\\d\\.\\x2d_]+$": { | ||
"$ref": "http://asyncapi.com/definitions/3.0.0/specificationExtension.json" | ||
} | ||
}, | ||
"properties": { | ||
"bindingVersion": { | ||
"type": "string", | ||
"enum": [ | ||
"0.1.0" | ||
], | ||
"description": "The version of this binding." | ||
}, | ||
"attributes": { | ||
"type": "object" | ||
}, | ||
"orderingKey": { | ||
"type": "string" | ||
}, | ||
"schema": { | ||
"type": "object", | ||
"additionalItems": false, | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"type": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": ["name", "type"] | ||
} | ||
}, | ||
"examples": [ | ||
{ | ||
"schema": { | ||
"name": "projects/your-project-id/schemas/your-avro-schema-id", | ||
"type": "avro" | ||
} | ||
}, | ||
{ | ||
"schema": { | ||
"name": "projects/your-project-id/schemas/your-protobuf-schema-id", | ||
"type": "protobuf" | ||
} | ||
} | ||
] | ||
} |
8 changes: 4 additions & 4 deletions
8
bindings/http/message.json → bindings/http/0.1.0/message.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
bindings/ibmmq/channel.json → bindings/ibmmq/0.1.0/channel.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
bindings/ibmmq/message.json → bindings/ibmmq/0.1.0/message.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
bindings/ibmmq/server.json → bindings/ibmmq/0.1.0/server.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
bindings/kafka/message.json → bindings/kafka/0.1.0/message.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.