blob: 42303adffb8fd73bba3d85108fe4daa9e5e878cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
---
# repos-schema.yaml
#$schema: "http://json-schema.org/schema#"
#$id: "https://github.com/lfit/releng-global-jjb/blob/master/schema/info-schema.yaml"
array:
items:
required:
- repository
- unmaintained
- read_only
properties:
repository:
type: string
unmaintained:
type: boolean
read_only:
type: boolean
included_in:
type: array
items:
oneOf:
- type: string
- type: integer
|