1
0
mirror of synced 2025-12-31 06:05:12 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/organizations.json
Arsen Losenko 9cd5ee701c 🐛 Source Github: update schema for Organizations stream (#28144)
* Source Github: update schema for Organizations stream

* Update changelog
2023-07-11 21:13:36 +03:00

198 lines
4.5 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": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"archived_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_allowed_repository_creation_type": {
"type": ["null", "string"]
},
"members_can_create_public_repositories": {
"type": ["null", "boolean"]
},
"members_can_create_private_repositories": {
"type": ["null", "boolean"]
},
"members_can_create_internal_repositories": {
"type": ["null", "boolean"]
},
"members_can_create_pages": {
"type": ["null", "boolean"]
},
"members_can_fork_private_repositories": {
"type": ["null", "boolean"]
},
"web_commit_signoff_required": {
"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"]
}
}
},
"advanced_security_enabled_for_new_repositories": {
"type": ["null", "boolean"]
},
"dependabot_alerts_enabled_for_new_repositories": {
"type": ["null", "boolean"]
},
"dependabot_security_updates_enabled_for_new_repositories": {
"type": ["null", "boolean"]
},
"dependency_graph_enabled_for_new_repositories": {
"type": ["null", "boolean"]
},
"secret_scanning_enabled_for_new_repositories": {
"type": ["null", "boolean"]
},
"secret_scanning_push_protection_enabled_for_new_repositories": {
"type": ["null", "boolean"]
},
"secret_scanning_push_protection_custom_link_enabled": {
"type": ["null", "boolean"]
},
"secret_scanning_push_protection_custom_link": {
"type": ["null", "string"]
}
}
}