data/schema/index.yaml

218 lines
3.8 KiB
YAML
Raw Normal View History

2024-01-25 21:38:08 +01:00
$defs:
2024-03-07 13:28:46 +01:00
design:
type: object
additionalProperties: false
required:
- image
properties:
image:
type: string
2024-01-25 21:38:08 +01:00
project:
type: object
additionalProperties: false
required:
- id
- name
properties:
id:
type: string
name:
type: string
type:
type: string
enum:
- research
links:
type: object
event:
type: object
additionalProperties: false
required:
- id
- date
2024-03-02 15:41:39 +01:00
#- city
#- country
2024-01-25 21:38:08 +01:00
properties:
id:
type: string
2024-02-24 02:56:37 +01:00
issue:
type: number
2024-01-25 21:38:08 +01:00
type:
type: string
enum:
- summit
- meetup
- hackathon
2024-02-21 16:35:26 +01:00
- privacy-corner
2024-03-02 15:41:39 +01:00
- online-summit
- meta-hackathon
- congress
2024-01-25 21:38:08 +01:00
confirmed:
type: boolean
2024-01-26 00:29:21 +01:00
tags:
type: array
items:
type: string
enum:
- sfe
2024-01-25 21:38:08 +01:00
date:
type: string
days:
type: number
city:
type: string
country:
type: string
pattern: "^[a-z]{2}$"
2024-01-25 21:38:08 +01:00
place:
type: string
2024-01-25 23:38:11 +01:00
place-address:
type: string
2024-01-25 21:38:08 +01:00
coincidence:
type: string
2024-02-21 16:36:02 +01:00
coincidenceFull:
type: string
2024-01-25 21:38:08 +01:00
lead:
type: string
helpers:
type: array
items:
type: string
slots:
type: number
visitors:
type: number
optional:
type: boolean
links:
type: object
additionalProperties: false
patternProperties:
"^[\\w]+":
type: string
format: uri
2024-02-02 06:12:21 +01:00
speakers:
type: array
2024-03-02 15:41:39 +01:00
name-extension:
type: string
2024-03-07 13:28:46 +01:00
design:
$ref: "#/$defs/design"
images:
type: object
2024-03-07 17:47:20 +01:00
thumbs:
type: object
2024-02-02 05:23:07 +01:00
person:
type: object
additionalProperties: false
required:
- name
properties:
2024-02-02 05:28:04 +01:00
id:
type: string
pattern: "^[a-z0-9-]+$"
2024-02-02 05:23:07 +01:00
name:
type: string
2024-02-02 07:24:55 +01:00
nickname:
type: string
2024-02-02 05:23:07 +01:00
caption:
type: string
country:
type: string
pattern: "^[a-z]{2}$"
2024-02-02 05:23:07 +01:00
refs:
type: object
additionalProperties: false
properties:
twitter:
type: string
linkedin:
type: string
bsky:
type: string
2024-02-23 22:38:52 +01:00
github:
type: string
2024-03-03 23:09:16 +01:00
matrix:
type: string
email:
type: string
2024-02-02 05:23:07 +01:00
imageUrl:
type: string
format: uri
2024-03-07 17:47:20 +01:00
thumbs:
type: object
2024-03-03 21:52:22 +01:00
research:
type: object
additionalProperties: false
required:
- issue
- title
- status
properties:
issue:
type: number
title:
type: string
status:
type: string
enum:
- live
- in-progress
- live
- backlog
- deprecated
sort:
type: number
labels:
type: array
items:
type: string
assignees:
type: array
items:
type: string
description:
type: string
caption:
type: string
links:
type: object
2024-01-25 21:38:08 +01:00
type: object
additionalProperties: false
properties:
name:
type: string
2024-02-09 14:49:06 +01:00
email:
type: string
format: email
domain:
type: string
2024-01-25 21:38:08 +01:00
links:
type: object
2024-03-03 23:09:16 +01:00
teams:
type: object
additionalProperties: false
properties:
core-team:
type: array
items:
2024-02-09 11:38:28 +01:00
type: string
2024-01-25 21:38:08 +01:00
projects:
type: array
items:
$ref: "#/$defs/project"
events:
type: array
items:
2024-02-02 05:23:07 +01:00
$ref: "#/$defs/event"
people:
type: array
items:
2024-03-03 21:52:22 +01:00
$ref: "#/$defs/person"
research:
type: array
items:
$ref: "#/$defs/research"