Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 37 additions & 1 deletion programs/ambassadors/ambassadors-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,44 @@
},
"required": ["type", "title", "date", "link"]
}
},
"startedOn": {
"type": "object",
"description": "Date of start",
"properties": {
"year": {
"type": "integer",
"minimum": 1900,
"maximum": 2100,
"description": "Year of start"
},
"month": {
"type": "string",
"enum": ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
"description": "Month of start"
}
},
"required": ["year", "month"]
},
"lastReviewedOn": {
"type": "object",
"description": "Date of last reviewed",
"properties": {
"year": {
"type": "integer",
"minimum": 1900,
"maximum": 2100,
"description": "Year of last reviewed"
},
"month": {
"type": "string",
"enum": ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
"description": "Month of last reviewed"
}
},
"required": ["year", "month"]
}
},
"required": ["name", "img", "bio", "title", "github", "company", "country", "contributions"]
"required": ["name", "img", "bio", "title", "github", "company", "country", "contributions", "startedOn"]
}
}
36 changes: 30 additions & 6 deletions programs/ambassadors/ambassadors.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@
},
"link": "https://dashjoin.medium.com/json-schema-openapi-low-code-a-match-made-in-heaven-d29723e543ac"
}
]
],
"startedOn": {
"year": 2024,
"month": "July"
}
},
{
"name": "David Biesack",
Expand Down Expand Up @@ -113,7 +117,11 @@
},
"link": "https://www.youtube.com/watch?v=6ukZEUBRpqo"
}
]
],
"startedOn": {
"year": 2024,
"month": "July"
}
},
{
"name": "Juan Cruz Viotti",
Expand Down Expand Up @@ -179,7 +187,11 @@
},
"link": "https://github.com/json-schema-org/community/issues/599"
}
]
],
"startedOn": {
"year": 2024,
"month": "August"
}
},
{
"name": "Esther Okafor",
Expand Down Expand Up @@ -228,7 +240,11 @@
},
"link": "https://www.canva.com/design/DAGJgnhNUYA/GLVTP-Yx7wcBVFjOhsN2uQ/edit?utm_content=DAGJgnhNUYA&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton"
}
]
],
"startedOn": {
"year": 2024,
"month": "August"
}
},
{
"name": "Ege Korkan",
Expand Down Expand Up @@ -296,7 +312,11 @@
},
"link": "https://github.com/eclipse-thingweb/playground/tree/master/packages/json-spell-checker"
}
]
],
"startedOn": {
"year": 2024,
"month": "August"
}
},
{
"name": "Jeremy Fiel",
Expand Down Expand Up @@ -354,6 +374,10 @@
},
"link": "https://landscape.json-schema.org/"
}
]
],
"startedOn": {
"year": 2024,
"month": "September"
}
}
]
Loading