Skip to content

Commit

Permalink
feat: add googlepubsub bindings for v3
Browse files Browse the repository at this point in the history
  • Loading branch information
whitlockjc committed Jul 27, 2023
1 parent 081a249 commit 94f0c95
Show file tree
Hide file tree
Showing 4 changed files with 142 additions and 8 deletions.
84 changes: 84 additions & 0 deletions bindings/googlepubsub/0.2.0/channel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://asyncapi.com/bindings/googlepubsub/0.2.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.2.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"
]
}
},
"required": [
"schemaSettings"
],
"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"
}
}
]
}
50 changes: 50 additions & 0 deletions bindings/googlepubsub/0.2.0/message.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://asyncapi.com/bindings/googlepubsub/0.2.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.2.0"
],
"description": "The version of this binding."
},
"attributes": {
"type": "object"
},
"orderingKey": {
"type": "string"
},
"schema": {
"type": "object",
"additionalItems": false,
"properties": {
"name": {
"type": "string"
}
},
"required": ["name"]
}
},
"examples": [
{
"schema": {
"name": "projects/your-project-id/schemas/your-avro-schema-id",
}
},
{
"schema": {
"name": "projects/your-project-id/schemas/your-protobuf-schema-id",
}
}
]
}
8 changes: 4 additions & 4 deletions definitions/3.0.0/channelBindingsObject.json
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
"googlepubsub": {
"properties": {
"bindingVersion": {
"enum": ["0.1.0"]
"enum": ["0.2.0"]
}
},
"allOf": [
Expand All @@ -223,20 +223,20 @@
}
},
"then": {
"$ref": "http://asyncapi.com/bindings/googlepubsub/0.1.0/channel.json"
"$ref": "http://asyncapi.com/bindings/googlepubsub/0.2.0/channel.json"
}
},
{
"if": {
"required": [ "bindingVersion" ],
"properties": {
"bindingVersion": {
"const": "0.1.0"
"const": "0.2.0"
}
}
},
"then": {
"$ref": "http://asyncapi.com/bindings/googlepubsub/0.1.0/channel.json"
"$ref": "http://asyncapi.com/bindings/googlepubsub/0.2.0/channel.json"
}
}
]
Expand Down
8 changes: 4 additions & 4 deletions definitions/3.0.0/messageBindingsObject.json
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@
"googlepubsub": {
"properties": {
"bindingVersion": {
"enum": ["0.1.0"]
"enum": ["0.2.0"]
}
},
"allOf": [
Expand All @@ -270,20 +270,20 @@
}
},
"then": {
"$ref": "http://asyncapi.com/bindings/googlepubsub/0.1.0/message.json"
"$ref": "http://asyncapi.com/bindings/googlepubsub/0.2.0/message.json"
}
},
{
"if": {
"required": [ "bindingVersion" ],
"properties": {
"bindingVersion": {
"const": "0.1.0"
"const": "0.2.0"
}
}
},
"then": {
"$ref": "http://asyncapi.com/bindings/googlepubsub/0.1.0/message.json"
"$ref": "http://asyncapi.com/bindings/googlepubsub/0.2.0/message.json"
}
}
]
Expand Down

0 comments on commit 94f0c95

Please sign in to comment.