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

63 lines
1.2 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"repository": {
"type": ["string"]
},
"type": {
"type": ["null", "string"]
},
"public": {
"type": ["null", "boolean"]
},
"payload": {
"type": ["null", "object"],
"properties": {}
},
"repo": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
},
"actor": {
"$ref": "user.json"
},
"org": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"login": {
"type": ["null", "string"]
},
"gravatar_id": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
},
"avatar_url": {
"type": ["null", "string"]
}
}
},
"created_at": {
"type": ["null", "string"]
},
"id": {
"type": ["null", "string"]
}
}
}