1
0
mirror of synced 2026-01-05 21:02:13 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/events.json
Yevhenii 05fd4e76f3 Source Github: Support syncing multiple repositories/organizations (#5136)
Support syncing multiple repositories/organizations

Co-authored-by: ykurochkin <y.kurochkin@zazmic.com>
2021-08-13 16:24:24 +03:00

35 lines
631 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"repository": {
"type": ["string"]
},
"type": {
"type": ["null", "string"]
},
"public": {
"type": ["null", "boolean"]
},
"payload": {
"type": ["null", "object"],
"properties": {}
},
"repo_id": {
"type": ["null", "integer"]
},
"actor_id": {
"type": ["null", "integer"]
},
"org_id": {
"type": ["null", "integer"]
},
"created_at": {
"type": ["null", "string"]
},
"id": {
"type": ["null", "string"]
}
}
}