1
0
mirror of synced 2025-12-31 06:05:12 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/shared/reactions.json
Serhii Chvaliuk 27c408e7fb Source Github: Add undeclared columns to spec (#24523)
Signed-off-by: Sergey Chvalyuk <grubberr@gmail.com>
2023-05-08 22:22:57 +03:00

36 lines
616 B
JSON

{
"type": ["null", "object"],
"properties": {
"url": {
"type": ["null", "string"]
},
"total_count": {
"type": ["null", "integer"]
},
"+1": {
"type": ["null", "integer"]
},
"-1": {
"type": ["null", "integer"]
},
"laugh": {
"type": ["null", "integer"]
},
"hooray": {
"type": ["null", "integer"]
},
"confused": {
"type": ["null", "integer"]
},
"heart": {
"type": ["null", "integer"]
},
"rocket": {
"type": ["null", "integer"]
},
"eyes": {
"type": ["null", "integer"]
}
}
}