1
0
mirror of synced 2025-12-31 06:05:12 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/teams.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

51 lines
984 B
JSON

{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"organization": {
"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"]
},
"notification_setting": {
"type": ["null", "string"]
},
"permission": {
"type": ["null", "string"]
},
"members_url": {
"type": ["null", "string"]
},
"repositories_url": {
"type": ["null", "string"]
},
"parent": {
"type": ["null", "object"],
"properties": {},
"additionalProperties": true
}
}
}