From 8da6107a8d7f2117d9b2fd69c6f85c7f7751f2c3 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Thu, 6 Nov 2025 10:03:24 +0100 Subject: [PATCH] fix(docs): Added missing settings for line-based formats Signed-off-by: Steffen Vogel --- .../schemas/config/formats/line.yaml | 21 +++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/doc/openapi/components/schemas/config/formats/line.yaml b/doc/openapi/components/schemas/config/formats/line.yaml index 427491f73..ce0f1fa61 100644 --- a/doc/openapi/components/schemas/config/formats/line.yaml +++ b/doc/openapi/components/schemas/config/formats/line.yaml @@ -1,11 +1,28 @@ # yaml-language-server: $schema=http://json-schema.org/draft-07/schema -# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University +# SPDX-FileCopyrightText: 2014-2025 Institute for Automation of Complex Power Systems, RWTH Aachen University # SPDX-License-Identifier: Apache-2.0 --- allOf: - type: object properties: - separator: + delimiter: type: string + description: The character that separates lines. + default: "\\n" + + header: + description: Whether or not to emit a header. + type: boolean + default: true + + skip_first_line: + description: Whether or not to skip the first line of the input. + type: boolean + default: false + + comment_prefix: + description: Lines starting with this prefix are ignored. + type: string + default: "#" - $ref: ../format.yaml