Skip to content

Commit 52b3506

Browse files
fix(docs): Added missing settings for line-based formats
Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
1 parent e7c6153 commit 52b3506

1 file changed

Lines changed: 19 additions & 2 deletions

File tree

  • doc/openapi/components/schemas/config/formats
Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,28 @@
11
# yaml-language-server: $schema=http://json-schema.org/draft-07/schema
2-
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
2+
# SPDX-FileCopyrightText: 2014-2025 Institute for Automation of Complex Power Systems, RWTH Aachen University
33
# SPDX-License-Identifier: Apache-2.0
44
---
55
allOf:
66
- type: object
77
properties:
8-
separator:
8+
delimiter:
99
type: string
10+
description: The character that separates lines.
11+
default: "\\n"
12+
13+
header:
14+
description: Whether or not to emit a header.
15+
type: boolean
16+
default: true
17+
18+
skip_first_line:
19+
description: Whether or not to skip the first line of the input.
20+
type: boolean
21+
default: false
22+
23+
comment_prefix:
24+
description: Lines starting with this prefix are ignored.
25+
type: string
26+
default: "#"
1027

1128
- $ref: ../format.yaml

0 commit comments

Comments
 (0)