* 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
62 lines
1.2 KiB
JSON
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"]
|
|
}
|
|
}
|
|
}
|
|
}
|