1
0
mirror of synced 2026-01-13 18:02:36 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/organizations.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

152 lines
3.1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"login": {
"type": ["null", "string"]
},
"id": {
"type": ["null", "integer"]
},
"node_id": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
},
"repos_url": {
"type": ["null", "string"]
},
"events_url": {
"type": ["null", "string"]
},
"hooks_url": {
"type": ["null", "string"]
},
"issues_url": {
"type": ["null", "string"]
},
"members_url": {
"type": ["null", "string"]
},
"public_members_url": {
"type": ["null", "string"]
},
"avatar_url": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"company": {
"type": ["null", "string"]
},
"blog": {
"type": ["null", "string"]
},
"location": {
"type": ["null", "string"]
},
"email": {
"type": ["null", "string"]
},
"twitter_username": {
"type": ["null", "string"]
},
"is_verified": {
"type": ["null", "boolean"]
},
"has_organization_projects": {
"type": ["null", "boolean"]
},
"has_repository_projects": {
"type": ["null", "boolean"]
},
"public_repos": {
"type": ["null", "integer"]
},
"public_gists": {
"type": ["null", "integer"]
},
"followers": {
"type": ["null", "integer"]
},
"following": {
"type": ["null", "integer"]
},
"html_url": {
"type": ["null", "string"]
},
"created_at": {
"type": ["null", "string"],
"format": "date-time"
},
"updated_at": {
"type": ["null", "string"],
"format": "date-time"
},
"type": {
"type": ["null", "string"]
},
"total_private_repos": {
"type": ["null", "integer"]
},
"owned_private_repos": {
"type": ["null", "integer"]
},
"private_gists": {
"type": ["null", "integer"]
},
"disk_usage": {
"type": ["null", "integer"]
},
"collaborators": {
"type": ["null", "integer"]
},
"billing_email": {
"type": ["null", "string"]
},
"default_repository_permission": {
"type": ["null", "string"]
},
"members_can_create_repositories": {
"type": ["null", "boolean"]
},
"two_factor_requirement_enabled": {
"type": ["null", "boolean"]
},
"members_can_create_pages": {
"type": ["null", "boolean"]
},
"members_can_create_public_pages": {
"type": ["null", "boolean"]
},
"members_can_create_private_pages": {
"type": ["null", "boolean"]
},
"plan": {
"type": ["null", "object"],
"properties": {
"name": {
"type": ["null", "string"]
},
"space": {
"type": ["null", "integer"]
},
"private_repos": {
"type": ["null", "integer"]
},
"filled_seats": {
"type": ["null", "integer"]
},
"seats": {
"type": ["null", "integer"]
}
}
}
}
}