1
0
mirror of synced 2025-12-30 03:02:21 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/comments.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

105 lines
2.1 KiB
JSON

{
"$schema": "https://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"
},
"url": {
"type": ["null", "string"]
},
"html_url": {
"type": ["null", "string"]
},
"body": {
"type": ["null", "string"]
},
"user_id": {
"type": ["null", "integer"]
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"issue_url": {
"type": ["null", "string"]
},
"author_association": {
"type": ["null", "string"]
},
"reactions": {
"$ref": "reactions.json"
},
"performed_via_github_app": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"slug": {
"type": ["null", "string"]
},
"node_id": {
"type": ["null", "string"]
},
"owner": {
"$ref": "user.json"
},
"name": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"external_url": {
"type": ["null", "string"]
},
"html_url": {
"type": ["null", "string"]
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"permissions": {
"type": "object",
"properties": {
"issues": {
"type": ["null", "string"]
},
"metadata": {
"type": ["null", "string"]
},
"pull_requests": {
"type": ["null", "string"]
}
}
},
"events": {
"type": "array",
"items": {
"type": ["null", "string"]
}
}
}
}
}
}