diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-22 18:08:47 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-22 18:08:47 +0000 |
commit | 3832718d895bf8268f3e3aac85948e2792769345 (patch) | |
tree | 4a322399af568b6203e732ae2e2f3efc39b23a67 /spec/fixtures | |
parent | 180cd023a11c0eb413ad0de124d9758ea25672bd (diff) | |
download | gitlab-ce-3832718d895bf8268f3e3aac85948e2792769345.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/fixtures')
-rw-r--r-- | spec/fixtures/api/schemas/public_api/v4/members.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/public_api/v4/members.json b/spec/fixtures/api/schemas/public_api/v4/members.json new file mode 100644 index 00000000000..38ad64ad061 --- /dev/null +++ b/spec/fixtures/api/schemas/public_api/v4/members.json @@ -0,0 +1,22 @@ +{ + "type": "array", + "items": { + "type": "object", + "properties" : { + "id": { "type": "integer" }, + "name": { "type": "string" }, + "username": { "type": "string" }, + "state": { "type": "string" }, + "avatar_url": { "type": ["string", "null"] }, + "web_url": { "type": ["string", "null"] }, + "access_level": { "type": "integer" }, + "expires_at": { "type": ["date", "null"] }, + "is_using_seat": { "type": "boolean" } + }, + "required": [ + "id", "name", "username", "state", + "web_url", "access_level", "expires_at" + ], + "additionalProperties": false + } +} |