1
0
mirror of synced 2026-01-14 21:06:21 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/reviews.json
Serhii Chvaliuk 4072d46a7c 🎉 Source Github: use GraphQL for reviews stream (#13989)
Signed-off-by: Sergey Chvalyuk <grubberr@gmail.com>
2022-06-28 18:35:12 +03:00

70 lines
1.4 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_graphql.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"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"commit_id": {
"type": ["null", "string"]
},
"author_association": {
"type": ["null", "string"]
}
}
}