1
0
mirror of synced 2025-12-31 15:03:11 -05:00
Files
airbyte/airbyte-integrations/connectors/source-gitlab/source_gitlab/schemas/project_labels.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

46 lines
913 B
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"]
},
"color": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"description_html": {
"type": ["null", "string"]
},
"text_color": {
"type": ["null", "string"]
},
"subscribed": {
"type": ["null", "boolean"]
},
"priority": {
"type": ["null", "integer"]
},
"is_project_label": {
"type": ["null", "boolean"]
},
"open_issues_count": {
"type": ["null", "integer"]
},
"closed_issues_count": {
"type": ["null", "integer"]
},
"open_merge_requests_count": {
"type": ["null", "integer"]
}
}
}