mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 19:05:46 -05:00
[netinstall] Schema validates also groups file
This commit is contained in:
parent
f8385d2cb8
commit
f0aa515c8b
1 changed files with 30 additions and 15 deletions
|
@ -1,4 +1,5 @@
|
|||
# SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
|
||||
# SPDX-FileContributor: benne-dee ( worked on groups schema )
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
---
|
||||
$schema: https://json-schema.org/draft-07/schema#
|
||||
|
@ -7,11 +8,11 @@ definitions:
|
|||
package:
|
||||
$id: '#definitions/package'
|
||||
oneOf:
|
||||
-
|
||||
-
|
||||
type: string
|
||||
description: bare package - actual package name as passed to the package manager
|
||||
(e.g. `qt5-creator-dev`).
|
||||
-
|
||||
-
|
||||
type: object
|
||||
description: rich package - one with a package-name (for the package-manager) and
|
||||
a description (for the human).
|
||||
|
@ -59,16 +60,30 @@ definitions:
|
|||
type: array
|
||||
items: { $ref: '#definitions/group' }
|
||||
|
||||
additionalProperties: false
|
||||
type: object
|
||||
properties:
|
||||
groupsUrl: { type: string }
|
||||
required: { type: boolean, default: false }
|
||||
label: # Translatable labels
|
||||
type: object
|
||||
additionalProperties: true
|
||||
properties:
|
||||
sidebar: { type: string }
|
||||
title: { type: string }
|
||||
groups: { $ref: '#definitions/groups' } # DONE: the schema for groups
|
||||
required: [ groupsUrl ]
|
||||
oneOf:
|
||||
- # netinstall.conf
|
||||
type: object
|
||||
description: netinstall.conf schema
|
||||
additionalProperties: false
|
||||
properties:
|
||||
groupsUrl: { type: string }
|
||||
required: { type: boolean, default: false }
|
||||
label: # Translatable labels
|
||||
type: object
|
||||
additionalProperties: true
|
||||
properties:
|
||||
sidebar: { type: string }
|
||||
title: { type: string }
|
||||
groups: { $ref: '#definitions/groups' }
|
||||
required: [ groupsUrl ]
|
||||
|
||||
- # Groups file with top level *groups* key
|
||||
type: object
|
||||
description: Groups file with top level *groups* key
|
||||
additionalProperties: false
|
||||
properties:
|
||||
groups: { $ref: '#definitions/groups' }
|
||||
required: [ groups ]
|
||||
|
||||
- # Groups file bare
|
||||
{ $ref: '#definitions/groups' }
|
||||
|
|
Loading…
Add table
Reference in a new issue