1
0
mirror of synced 2026-01-01 00:02:54 -05:00
Files
airbyte/airbyte-integrations/connectors/source-gitlab/source_gitlab/schemas/project_members.json
Artem Inzhyyants c734909b79 Source GitLab: add shared_runners_setting field to groups (#27869)
* Source GitLab: add `additionalProperties` to all schemas; add `shared_runners_setting` field to groups

* Source GitLab: update docs

* Source GitLab: remove additionalProperties

* Source GitLab: update docs

* Source GitLab: update expected records
2023-07-03 10:38:10 +02:00

62 lines
1.2 KiB
JSON

{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"project_id": {
"type": ["null", "integer"]
},
"id": {
"type": ["null", "integer"]
},
"name": {
"type": ["null", "string"]
},
"username": {
"type": ["null", "string"]
},
"state": {
"type": ["null", "string"]
},
"membership_state": {
"type": ["null", "string"]
},
"avatar_url": {
"type": ["null", "string"]
},
"web_url": {
"type": ["null", "string"]
},
"access_level": {
"type": ["null", "integer"]
},
"created_at": {
"type": ["null", "string"],
"format": "date-time"
},
"expires_at": {
"type": ["null", "string"],
"format": "date-time"
},
"created_by": {
"avatar_url": {
"type": ["null", "string"]
},
"id": {
"type": ["null", "integer"]
},
"name": {
"type": ["null", "string"]
},
"state": {
"type": ["null", "string"]
},
"username": {
"type": ["null", "string"]
},
"web_url": {
"type": ["null", "string"]
}
}
}
}