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
Evan Tahler bfdba6c377 Fix events and workflow_runs datetimes in source-github (#19299)
* Fix events and workflow_runs datetimes in `source-github`

* add PR number

* whitespace

* auto-bump connector version

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
2022-11-10 12:54:58 -08:00

64 lines
1.2 KiB
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": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
},
"actor": {
"$ref": "user.json"
},
"org": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"login": {
"type": ["null", "string"]
},
"gravatar_id": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
},
"avatar_url": {
"type": ["null", "string"]
}
}
},
"created_at": {
"type": ["null", "string"],
"format": "date-time"
},
"id": {
"type": ["null", "string"]
}
}
}