mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-16 00:00:02 +01:00
24 lines
527 B
YAML
24 lines
527 B
YAML
# yaml-language-server: $schema=http://json-schema.org/draft-07/schema
|
|
# SPDX-FileCopyrightText: 2023 OPAL-RT Germany GmbH
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
---
|
|
allOf:
|
|
- type: object
|
|
required:
|
|
- uri
|
|
- mode
|
|
- interval
|
|
- algorithm
|
|
properties:
|
|
uri:
|
|
description: The output file for digests.
|
|
example: digest.txt
|
|
type: string
|
|
format: uri
|
|
|
|
algorithm:
|
|
description: The algorithm used for calculating digests.
|
|
example: sha256
|
|
type: string
|
|
|
|
- $ref: ../hook.yaml
|