From ba2e4183d9b07237657595821cd06689667e6762 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 20 Oct 2022 06:09:59 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- spec/fixtures/api/schemas/project_mirror.json | 48 +++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 spec/fixtures/api/schemas/project_mirror.json (limited to 'spec/fixtures') diff --git a/spec/fixtures/api/schemas/project_mirror.json b/spec/fixtures/api/schemas/project_mirror.json new file mode 100644 index 00000000000..0f626c04f24 --- /dev/null +++ b/spec/fixtures/api/schemas/project_mirror.json @@ -0,0 +1,48 @@ +{ + "type": "object", + "required": [ + "id", + "url", + "update_status", + "last_update_at", + "last_update_started_at", + "last_successful_update_at", + "last_error" + ], + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string" + }, + "update_status": { + "type": "string" + }, + "last_update_at": { + "type": [ + "string", + "null" + ] + }, + "last_update_started_at": { + "type": [ + "string", + "null" + ] + }, + "last_successful_update_at": { + "type": [ + "string", + "null" + ] + }, + "last_error": { + "type": [ + "string", + "null" + ] + } + }, + "additionalProperties": false +} \ No newline at end of file -- cgit v1.2.1