Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 19 additions & 2 deletions doc/openapi/components/schemas/config/formats/line.yaml
Original file line number Diff line number Diff line change
@@ -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