1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 | 'repos': {
'type': 'object', # warns if 'repos:' provided without items
'properties': {
'id': {
'type': 'string',
'description': dedent("""\
The unique id of the repo, used when writing
/etc/zypp/repos.d/<id>.repo.""")
},
'baseurl': {
'type': 'string',
'format': 'uri' # built-in format type
'description': 'The base repositoy URL'
},
'additionalProperties': True,
'required': ['id', 'baseurl']
},
|