Chore: Upgrade Jenkins-job-builder to 6.3.0
[releng/global-jjb.git] / schema / release-container-schema.yaml
1 # SPDX-License-Identifier: EPL-1.0
2 ##############################################################################
3 # Copyright (c) 2019 The Linux Foundation and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Eclipse Public License v1.0
7 # which accompanies this distribution, and is available at
8 # http://www.eclipse.org/legal/epl-v10.html
9 ##############################################################################
10 ---
11 $schema: "http://json-schema.org/schema#"
12 $id: "https://github.com/lfit/releng-global-jjb/blob/master/release-container-schema.yaml"
13
14 required:
15   - "containers"
16   - "distribution_type"
17   - "project"
18   - "container_release_tag"
19   - "ref"
20
21 properties:
22   containers:
23     type: "array"
24     properties:
25       name:
26         type: "string"
27       version:
28         type: "string"
29     additionalProperties: false
30   container_release_tag:
31     type: "string"
32   container_pull_registry:
33     type: "string"
34   container_push_registry:
35     type: "string"
36   distribution_type:
37     type: "string"
38   git_tag:
39     type: "string"
40   project:
41     type: "string"
42   ref:
43     type: "string"
44   tag_release:
45     type: "boolean"