[netinstall] Schema validates also groups file

This commit is contained in:
benne-dee 2021-02-22 22:17:06 +05:30 committed by GitHub
parent f8385d2cb8
commit f0aa515c8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
# SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org> # 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 # SPDX-License-Identifier: GPL-3.0-or-later
--- ---
$schema: https://json-schema.org/draft-07/schema# $schema: https://json-schema.org/draft-07/schema#
@ -59,16 +60,30 @@ definitions:
type: array type: array
items: { $ref: '#definitions/group' } items: { $ref: '#definitions/group' }
additionalProperties: false oneOf:
type: object - # netinstall.conf
properties: type: object
groupsUrl: { type: string } description: netinstall.conf schema
required: { type: boolean, default: false } additionalProperties: false
label: # Translatable labels properties:
type: object groupsUrl: { type: string }
additionalProperties: true required: { type: boolean, default: false }
properties: label: # Translatable labels
sidebar: { type: string } type: object
title: { type: string } additionalProperties: true
groups: { $ref: '#definitions/groups' } # DONE: the schema for groups properties:
required: [ groupsUrl ] 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' }