1
0
mirror of synced 2026-01-13 09:03:08 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/teams.json
2022-07-30 00:51:50 +03:00

51 lines
973 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"organization": {
"type": ["null", "string"]
},
"repository": {
"type": ["null", "string"]
},
"id": {
"type": ["null", "integer"]
},
"node_id": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
},
"html_url": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"slug": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"privacy": {
"type": ["null", "string"]
},
"permission": {
"type": ["null", "string"]
},
"members_url": {
"type": ["null", "string"]
},
"repositories_url": {
"type": ["null", "string"]
},
"parent": {
"type": ["null", "object"],
"properties": {},
"additionalProperties": true
}
}
}