* 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>
54 lines
1.1 KiB
JSON
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"]
|
|
}
|
|
}
|
|
}
|