explorer-data/schema/project.yaml

18 lines
260 B
YAML
Raw Normal View History

2023-10-06 16:36:04 +02:00
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-]+$'