1
0
mirror of synced 2026-01-05 12:05:28 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/issue_events.json
2021-09-19 18:34:10 -07:00

79 lines
1.6 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"]
},
"url": {
"type": ["null", "string"]
},
"actor": {
"$ref": "user.json"
},
"event": {
"type": ["null", "string"]
},
"commit_id": {
"type": ["null", "string"]
},
"commit_url": {
"type": ["null", "string"]
},
"created_at": {
"type": ["null", "string"],
"format": "date-time"
},
"issue": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"node_id": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
},
"repository_url": {
"type": ["null", "string"]
},
"labels_url": {
"type": ["null", "string"]
},
"comments_url": {
"type": ["null", "string"]
},
"events_url": {
"type": ["null", "string"]
},
"html_url": {
"type": ["null", "string"]
},
"number": {
"type": ["null", "integer"]
},
"state": {
"type": ["null", "string"]
},
"title": {
"type": ["null", "string"]
},
"body": {
"type": ["null", "string"]
},
"user": {
"$ref": "user.json"
}
}
}
}
}