Files
sendico/interface/models/common/describable.yaml
2026-03-02 16:27:33 +01:00

17 lines
444 B
YAML

components:
schemas:
Describable:
description: Common naming metadata for user-defined entities.
type: object
additionalProperties: false
required:
- name
properties:
name:
description: Human-readable name of the entity.
type: string
description:
description: Optional free-form description of the entity.
type: string
nullable: true