events/schema.yaml

39 řádky
714 B
YAML
Surový Normální zobrazení Historie

2023-11-05 21:36:11 +01:00
$ref: "#/$defs/event"
2023-06-16 02:23:05 +02:00
$defs:
event:
type: object
additionalProperties: false
required:
- id
- date
- city
- country
properties:
id:
type: string
2023-11-05 21:36:11 +01:00
type:
type: string
enum:
- summit
- meetup
2023-11-05 21:57:24 +01:00
- hackathon
2023-06-16 02:23:05 +02:00
date:
type: string
city:
type: string
country:
type: string
pattern: "^\\w{2}$"
coincidence:
type: string
lead:
type: string
visitors:
type: number
links:
type: object
additionalProperties: false
patternProperties:
"^[\\w]+":
type: string
format: uri