1
0
mirror of synced 2026-01-16 00:06:28 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/reviews.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

62 lines
1.2 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"repository": {
"type": ["string"]
},
"id": {
"type": ["null", "integer"]
},
"node_id": {
"type": ["null", "string"]
},
"user": {
"$ref": "user.json"
},
"body": {
"type": ["null", "string"]
},
"state": {
"type": ["null", "string"]
},
"html_url": {
"type": ["null", "string"]
},
"pull_request_url": {
"type": ["null", "string"]
},
"_links": {
"type": ["null", "object"],
"properties": {
"html": {
"type": ["null", "object"],
"properties": {
"href": {
"type": ["null", "string"]
}
}
},
"pull_request": {
"type": ["null", "object"],
"properties": {
"href": {
"type": ["null", "string"]
}
}
}
}
},
"submitted_at": {
"type": ["null", "string"],
"format": "date-time"
},
"commit_id": {
"type": ["null", "string"]
},
"author_association": {
"type": ["null", "string"]
}
}
}