* 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
25 lines
439 B
JSON
25 lines
439 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"username": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"state": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"avatar_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"web_url": {
|
|
"type": ["null", "string"]
|
|
}
|
|
}
|
|
}
|