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-03-03 21:07:17 +02:00

49 lines
913 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"]
}
}
}