events/schema.yaml

38 lines
692 B
YAML
Raw Normal View History

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-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