1
0
mirror of synced 2026-01-01 00:02:54 -05:00
Files
airbyte/airbyte-integrations/connectors/source-gitlab/source_gitlab/schemas/releases.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

87 lines
1.7 KiB
JSON

{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"name": {
"type": ["null", "string"]
},
"tag_name": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"created_at": {
"type": ["null", "string"],
"format": "date-time"
},
"released_at": {
"type": ["null", "string"],
"format": "date-time"
},
"upcoming_release": {
"type": ["null", "boolean"]
},
"milestones": {
"type": ["null", "array"],
"items": {
"type": "integer"
}
},
"commit_path": {
"type": ["null", "string"]
},
"tag_path": {
"type": ["null", "string"]
},
"assets": {
"type": ["null", "object"],
"properties": {
"count": {
"type": ["null", "integer"]
},
"sources": {
"type": ["null", "array"],
"items": {
"type": "object",
"properties": {
"format": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
}
},
"links": {
"type": "array"
}
}
},
"evidences": {
"type": ["null", "array"]
},
"_links": {
"type": ["null", "object"]
},
"author": {
"type": ["null", "object"],
"additionalProperties": true
},
"author_id": {
"type": ["null", "integer"]
},
"commit": {
"type": ["null", "object"],
"additionalProperties": true
},
"commit_id": {
"type": ["null", "string"]
},
"project_id": {
"type": ["null", "integer"]
}
}
}