1
0
mirror of synced 2026-01-10 09:04:48 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/commits.json
Yevhenii 05fd4e76f3 Source Github: Support syncing multiple repositories/organizations (#5136)
Support syncing multiple repositories/organizations

Co-authored-by: ykurochkin <y.kurochkin@zazmic.com>
2021-08-13 16:24:24 +03:00

124 lines
2.7 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"repository": {
"type": ["string"]
},
"created_at": {
"type": ["null", "string"],
"format": "date-time"
},
"url": {
"type": ["null", "string"]
},
"sha": {
"type": ["null", "string"]
},
"node_id": {
"type": ["null", "string"]
},
"html_url": {
"type": ["null", "string"]
},
"comments_url": {
"type": ["null", "string"]
},
"commit": {
"type": ["null", "object"],
"properties": {
"author": {
"type": ["null", "object"],
"properties": {
"name": {
"type": ["null", "string"]
},
"email": {
"type": ["null", "string"]
},
"date": {
"type": ["null", "string"],
"format": "date-time"
}
}
},
"committer": {
"type": ["null", "object"],
"properties": {
"name": {
"type": ["null", "string"]
},
"email": {
"type": ["null", "string"]
},
"date": {
"type": ["null", "string"],
"format": "date-time"
}
}
},
"message": {
"type": ["null", "string"]
},
"tree": {
"type": ["null", "object"],
"properties": {
"sha": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
},
"url": {
"type": ["null", "string"]
},
"comment_count": {
"type": ["null", "integer"]
},
"verification": {
"type": ["null", "object"],
"properties": {
"verified": {
"type": ["null", "boolean"]
},
"reason": {
"type": ["null", "string"]
},
"signature": {
"type": ["null", "string"]
},
"payload": {
"type": ["null", "string"]
}
}
}
}
},
"author_id": {
"type": ["null", "integer"]
},
"committer_id": {
"type": ["null", "integer"]
},
"parents": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"sha": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
},
"html_url": {
"type": ["null", "string"]
}
}
}
}
}
}