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

127 lines
2.7 KiB
JSON

{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"repository": {
"type": "string"
},
"branch": {
"type": ["null", "string"]
},
"created_at": {
"type": "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": "string",
"format": "date-time"
}
}
},
"committer": {
"type": ["null", "object"],
"properties": {
"name": {
"type": ["null", "string"]
},
"email": {
"type": ["null", "string"]
},
"date": {
"type": "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": {
"$ref": "user.json"
},
"committer": {
"$ref": "user.json"
},
"parents": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"sha": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
},
"html_url": {
"type": ["null", "string"]
}
}
}
}
}
}