1
0
mirror of synced 2025-12-31 06:05:12 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/shared/reaction.json

28 lines
449 B
JSON

{
"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"
},
"comment_id": {
"type": "integer"
}
}
}