1
0
mirror of synced 2026-01-14 12:07:57 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/issue_reactions.json

29 lines
507 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"node_id": {
"type": ["null", "string"]
},
"content": {
"type": ["null", "string"]
},
"created_at": {
"type": "string",
"format": "date-time"
},
"user": {
"$ref": "user.json"
},
"repository": {
"type": "string"
},
"issue_number": {
"type": "integer"
}
}
}