calamares/src/modules/mount/mount.schema.yaml

41 lines
1.3 KiB
YAML
Raw Normal View History

# SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
# SPDX-License-Identifier: GPL-3.0-or-later
---
$schema: https://json-schema.org/schema#
$id: https://calamares.io/schemas/mount
additionalProperties: false
type: object
properties:
# TODO: share the schema definition, since these are identical
extraMounts:
type: array
items:
type: object
additionalProperties: false
properties:
device: { type: string }
fs: { type: string }
mountPoint: { type: string }
options: { type: string }
required: [ device, mountPoint ]
extraMountsEfi:
type: array
items:
type: object
additionalProperties: false
properties:
device: { type: string }
fs: { type: string }
mountPoint: { type: string }
options: { type: string }
required: [ device, mountPoint ]
2021-01-26 20:34:11 +01:00
btrfsSubvolumes:
type: array
items:
type: object
additionalProperties: false
properties:
mountPoint: { type: string }
subvolume: { type: string }
required: [ subvolume, mountPoint ]