30 lines
590 B
YAML
30 lines
590 B
YAML
---
|
|
properties:
|
|
prop1:
|
|
type: string
|
|
description: Dummy description of the prop1 string property.
|
|
required: true
|
|
|
|
prop2:
|
|
type: int
|
|
defaultValue: 10
|
|
description:
|
|
en: Another description for the integer property called prop2.
|
|
required: false
|
|
tags:
|
|
en:
|
|
- tag1
|
|
- tag2
|
|
|
|
prop3:
|
|
type: bool
|
|
defaultValue: false
|
|
description: |
|
|
A `bool` property with a complex multiline description and embedded Markdown:
|
|
|
|
- List item 1
|
|
- List item 2
|
|
|
|
More description how to use this property.
|
|
required: false
|