1
0
mirror of synced 2026-01-07 09:05:45 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/organizations.json
midavadim 1b2b0392ef 🎉 Source Github - added user friendly messages, added AirbyteTracedException config_error (#23467)
* added user friendly messages, added AirbyteTracedException config_error

* added formatting

* fixed 'if' condition

* removed HTTPError words from error examples

* changed http to https for all schemas

* removed http adapter

* updated expected record file - one record for each stream

* updated expected record file

* updated expected record file

* bumped connector version

* auto-bump connector version

---------

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
2023-03-03 18:32:14 +00:00

152 lines
3.1 KiB
JSON

{
"$schema": "https://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"]
}
}
}
}
}