mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-10 04:19:19 +00:00
19 lines
442 B
YAML
19 lines
442 B
YAML
type: object
|
|
allOf:
|
|
- $ref: './FormItemDetails.yaml'
|
|
- type: object
|
|
properties:
|
|
label:
|
|
type: string
|
|
description: Label of the section
|
|
example: Section 1
|
|
formItems:
|
|
type: array
|
|
items:
|
|
type: object
|
|
description: List of FormItems. FormItems can be SectionDetails and/or FieldDetails
|
|
example: []
|
|
# oneOf:
|
|
# - $ref: 'SectionDetails.yaml'
|
|
# - $ref: 'FieldDetails.yaml'
|