From 0c872e02b2c822e3397515ec324051ff540f0cd5 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Tue, 20 Dec 2022 14:22:11 +0000 Subject: Add latest changes from gitlab-org/gitlab@15-7-stable-ee --- spec/fixtures/api/schemas/pipeline_schedule.json | 153 ++++++++++++++++++----- 1 file changed, 121 insertions(+), 32 deletions(-) (limited to 'spec/fixtures/api/schemas/pipeline_schedule.json') diff --git a/spec/fixtures/api/schemas/pipeline_schedule.json b/spec/fixtures/api/schemas/pipeline_schedule.json index ef5942b7eb3..ade5a76d934 100644 --- a/spec/fixtures/api/schemas/pipeline_schedule.json +++ b/spec/fixtures/api/schemas/pipeline_schedule.json @@ -1,53 +1,142 @@ { "type": "object", - "properties" : { - "id": { "type": "integer" }, - "description": { "type": "string" }, - "ref": { "type": "string" }, - "cron": { "type": "string" }, - "cron_timezone": { "type": "string" }, - "next_run_at": { "type": "string" }, - "active": { "type": "boolean" }, - "created_at": { "type": ["string", "null"], "format": "date-time" }, - "updated_at": { "type": ["string", "null"], "format": "date-time" }, + "properties": { + "id": { + "type": "integer" + }, + "description": { + "type": "string" + }, + "ref": { + "type": "string" + }, + "cron": { + "type": "string" + }, + "cron_timezone": { + "type": "string" + }, + "next_run_at": { + "type": "string" + }, + "active": { + "type": "boolean" + }, + "created_at": { + "type": [ + "string", + "null" + ], + "format": "date-time" + }, + "updated_at": { + "type": [ + "string", + "null" + ], + "format": "date-time" + }, "last_pipeline": { - "type": ["object", "null"], + "type": [ + "object", + "null" + ], "properties": { - "id": { "type": "integer" }, - "iid": { "type": "integer" }, - "project_id": { "type": "integer" }, - "sha": { "type": "string" }, - "ref": { "type": "string" }, - "status": { "type": "string" }, - "source": { "type": "string" }, - "web_url": { "type": ["string", "null"] }, - "created_at": { "type": ["string", "null"], "format": "date-time" }, - "updated_at": { "type": ["string", "null"], "format": "date-time" } + "id": { + "type": "integer" + }, + "iid": { + "type": "integer" + }, + "project_id": { + "type": "integer" + }, + "sha": { + "type": "string" + }, + "ref": { + "type": "string" + }, + "status": { + "type": "string" + }, + "source": { + "type": "string" + }, + "web_url": { + "type": [ + "string", + "null" + ] + }, + "created_at": { + "type": [ + "string", + "null" + ], + "format": "date-time" + }, + "updated_at": { + "type": [ + "string", + "null" + ], + "format": "date-time" + } }, "additionalProperties": false }, "owner": { "type": "object", "properties": { - "name": { "type": "string" }, - "username": { "type": "string" }, - "id": { "type": "integer" }, - "state": { "type": "string" }, - "avatar_url": { "type": "uri" }, - "web_url": { "type": "uri" } + "name": { + "type": "string" + }, + "username": { + "type": "string" + }, + "id": { + "type": "integer" + }, + "state": { + "type": "string" + }, + "avatar_url": { + "type": "string", + "format": "uri" + }, + "web_url": { + "type": "string", + "format": "uri" + } }, "required": [ - "id", "name", "username", "state", "avatar_url", "web_url" + "id", + "name", + "username", + "state", + "avatar_url", + "web_url" ] }, "variables": { "type": "array", - "items": { "$ref": "pipeline_schedule_variable.json" } + "items": { + "$ref": "pipeline_schedule_variable.json" + } } }, "required": [ - "id", "description", "ref", "cron", "cron_timezone", "next_run_at", - "active", "created_at", "updated_at", "owner" + "id", + "description", + "ref", + "cron", + "cron_timezone", + "next_run_at", + "active", + "created_at", + "updated_at", + "owner" ], "additionalProperties": false -} +} \ No newline at end of file -- cgit v1.2.1