Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/remote_mirror.json')
-rw-r--r--spec/fixtures/api/schemas/remote_mirror.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/remote_mirror.json b/spec/fixtures/api/schemas/remote_mirror.json
new file mode 100644
index 00000000000..416b0f080d9
--- /dev/null
+++ b/spec/fixtures/api/schemas/remote_mirror.json
@@ -0,0 +1,26 @@
+{
+ "type": "object",
+ "required": [
+ "id",
+ "enabled",
+ "url",
+ "update_status",
+ "last_update_at",
+ "last_update_started_at",
+ "last_successful_update_at",
+ "last_error",
+ "only_protected_branches"
+ ],
+ "properties": {
+ "id": { "type": "integer" },
+ "enabled": { "type": "boolean" },
+ "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"] },
+ "only_protected_branches": { "type": "boolean" }
+ },
+ "additionalProperties": false
+}