explorer-data/schema/project.yaml
2023-10-06 16:36:04 +02:00

17 lines
260 B
YAML

type: object
required:
- id
- name
- categories
additionalProperties: false
properties:
id:
type: string
pattern: '^[a-z0-9-]+$'
name:
type: string
categories:
type: array
items:
type: string
pattern: '^[a-z0-9-]+$'