1
0
mirror of synced 2026-01-06 06:04:16 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/branches.json
Yevhenii d74c47a863 🎉Source GitHub: Add more streams (#5757)
* Add Organizations stream to Github Source
* Add Repositories stream
* Add Repositories stream spec
* Add Branches stream
* Add Tags stream
* Add ReviewComments stream
* Add users stream
* Add pull request stats stream

Co-authored-by: Chris Wu <chris@faros.ai>
Co-authored-by: ykurochkin <y.kurochkin@zazmic.com>
2021-09-01 15:02:08 +03:00

54 lines
1.1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"repository": {
"type": ["string"]
},
"name": {
"type": ["null", "string"]
},
"commit": {
"type": ["null", "object"],
"properties": {
"sha": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
},
"protected": {
"type": ["null", "boolean"]
},
"protection": {
"type": ["null", "object"],
"properties": {
"required_status_checks": {
"type": ["null", "object"],
"properties": {
"enforcement_level": {
"type": ["null", "string"]
},
"contexts": {
"type": ["null", "array"],
"items": [
{
"type": ["null", "string"]
},
{
"type": ["null", "string"]
}
]
}
}
}
}
},
"protection_url": {
"type": ["null", "string"]
}
}
}