mirror of
https://github.com/web3privacy/data
synced 2024-10-15 18:16:28 +02:00
online summit draft
This commit is contained in:
parent
4812730f78
commit
07a8d3e75e
3 changed files with 29 additions and 4 deletions
|
@ -22,8 +22,8 @@ $defs:
|
||||||
required:
|
required:
|
||||||
- id
|
- id
|
||||||
- date
|
- date
|
||||||
- city
|
#- city
|
||||||
- country
|
#- country
|
||||||
properties:
|
properties:
|
||||||
id:
|
id:
|
||||||
type: string
|
type: string
|
||||||
|
@ -36,6 +36,7 @@ $defs:
|
||||||
- meetup
|
- meetup
|
||||||
- hackathon
|
- hackathon
|
||||||
- privacy-corner
|
- privacy-corner
|
||||||
|
- online-summit
|
||||||
confirmed:
|
confirmed:
|
||||||
type: boolean
|
type: boolean
|
||||||
tags:
|
tags:
|
||||||
|
@ -82,6 +83,8 @@ $defs:
|
||||||
format: uri
|
format: uri
|
||||||
speakers:
|
speakers:
|
||||||
type: array
|
type: array
|
||||||
|
name-extension:
|
||||||
|
type: string
|
||||||
person:
|
person:
|
||||||
type: object
|
type: object
|
||||||
additionalProperties: false
|
additionalProperties: false
|
||||||
|
|
|
@ -269,6 +269,13 @@
|
||||||
- joshua-davila
|
- joshua-davila
|
||||||
- mykola-siusko
|
- mykola-siusko
|
||||||
|
|
||||||
|
- id: os24q2
|
||||||
|
type: online-summit
|
||||||
|
name-extension: Q2
|
||||||
|
date: "2024-06-23"
|
||||||
|
lead: Tree
|
||||||
|
slots: 8
|
||||||
|
|
||||||
- id: m24bcn
|
- id: m24bcn
|
||||||
issue: 20
|
issue: 20
|
||||||
type: meetup
|
type: meetup
|
||||||
|
@ -314,6 +321,13 @@
|
||||||
links:
|
links:
|
||||||
rsvp: https://lu.ma/w3pn-m24waw
|
rsvp: https://lu.ma/w3pn-m24waw
|
||||||
|
|
||||||
|
- id: os24q3
|
||||||
|
type: online-summit
|
||||||
|
name-extension: Q3
|
||||||
|
date: "2024/Sep"
|
||||||
|
lead: Tree
|
||||||
|
slots: 8
|
||||||
|
|
||||||
- id: m24cph
|
- id: m24cph
|
||||||
issue: 18
|
issue: 18
|
||||||
type: meetup
|
type: meetup
|
||||||
|
@ -404,3 +418,10 @@
|
||||||
rsvp: https://lu.ma/w3pn-meetup-devcon7
|
rsvp: https://lu.ma/w3pn-meetup-devcon7
|
||||||
speakers:
|
speakers:
|
||||||
- edward-fricker
|
- edward-fricker
|
||||||
|
|
||||||
|
- id: os24q4
|
||||||
|
type: online-summit
|
||||||
|
name-extension: Q4
|
||||||
|
date: "2024/Dec"
|
||||||
|
lead: Tree
|
||||||
|
slots: 8
|
|
@ -30,6 +30,7 @@ const eventTypes = {
|
||||||
meetup: { code: "m" },
|
meetup: { code: "m" },
|
||||||
hackathon: { code: "h" },
|
hackathon: { code: "h" },
|
||||||
"privacy-corner": { code: "c" },
|
"privacy-corner": { code: "c" },
|
||||||
|
"online-summit": { code: "os" },
|
||||||
};
|
};
|
||||||
const usedIds = [];
|
const usedIds = [];
|
||||||
for (const event of engine.rendered.events) {
|
for (const event of engine.rendered.events) {
|
||||||
|
|
Loading…
Reference in a new issue