You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
650 B

type: object
description: DTO concernant les champs des documents.
properties:
id:
type: integer
format: int64
description: Id du champ
texte:
type: string
description: Texte du champ
section:
type: string
description: Section à laquelle appartient le champ
soussection:
type: string
description: Sous-section à laquelle appartient le champ
ordre:
type: integer
description: Ordre du champ dans sa section ou sous-section
typeChamp:
$ref: ../enum/typeChamps.yaml
typeSaisie:
$ref: ../enum/typeSaisie.yaml
required:
- id
- texte
- section
- ordre
- typeChamp
- typeSaisie