Skip to content

Commit 2176738

Browse files
committed
added startedOn and lastReviewedOn
1 parent a8377de commit 2176738

File tree

2 files changed

+67
-7
lines changed

2 files changed

+67
-7
lines changed

programs/ambassadors/ambassadors-schema.json

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,44 @@
8989
},
9090
"required": ["type", "title", "date", "link"]
9191
}
92+
},
93+
"startedOn": {
94+
"type": "object",
95+
"description": "Date of start",
96+
"properties": {
97+
"year": {
98+
"type": "integer",
99+
"minimum": 1900,
100+
"maximum": 2100,
101+
"description": "Year of start"
102+
},
103+
"month": {
104+
"type": "string",
105+
"enum": ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
106+
"description": "Month of start"
107+
}
108+
},
109+
"required": ["year", "month"]
110+
},
111+
"lastReviewedOn": {
112+
"type": "object",
113+
"description": "Date of last reviewed",
114+
"properties": {
115+
"year": {
116+
"type": "integer",
117+
"minimum": 1900,
118+
"maximum": 2100,
119+
"description": "Year of last reviewed"
120+
},
121+
"month": {
122+
"type": "string",
123+
"enum": ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
124+
"description": "Month of last reviewed"
125+
}
126+
},
127+
"required": ["year", "month"]
92128
}
93129
},
94-
"required": ["name", "img", "bio", "title", "github", "company", "country", "contributions"]
130+
"required": ["name", "img", "bio", "title", "github", "company", "country", "contributions", "startedOn"]
95131
}
96132
}

programs/ambassadors/ambassadors.json

Lines changed: 30 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,11 @@
4646
},
4747
"link": "https://dashjoin.medium.com/json-schema-openapi-low-code-a-match-made-in-heaven-d29723e543ac"
4848
}
49-
]
49+
],
50+
"startedOn": {
51+
"year": 2024,
52+
"month": "July"
53+
}
5054
},
5155
{
5256
"name": "David Biesack",
@@ -113,7 +117,11 @@
113117
},
114118
"link": "https://www.youtube.com/watch?v=6ukZEUBRpqo"
115119
}
116-
]
120+
],
121+
"startedOn": {
122+
"year": 2024,
123+
"month": "July"
124+
}
117125
},
118126
{
119127
"name": "Juan Cruz Viotti",
@@ -179,7 +187,11 @@
179187
},
180188
"link": "https://github.com/json-schema-org/community/issues/599"
181189
}
182-
]
190+
],
191+
"startedOn": {
192+
"year": 2024,
193+
"month": "August"
194+
}
183195
},
184196
{
185197
"name": "Esther Okafor",
@@ -228,7 +240,11 @@
228240
},
229241
"link": "https://www.canva.com/design/DAGJgnhNUYA/GLVTP-Yx7wcBVFjOhsN2uQ/edit?utm_content=DAGJgnhNUYA&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton"
230242
}
231-
]
243+
],
244+
"startedOn": {
245+
"year": 2024,
246+
"month": "August"
247+
}
232248
},
233249
{
234250
"name": "Ege Korkan",
@@ -296,7 +312,11 @@
296312
},
297313
"link": "https://github.com/eclipse-thingweb/playground/tree/master/packages/json-spell-checker"
298314
}
299-
]
315+
],
316+
"startedOn": {
317+
"year": 2024,
318+
"month": "August"
319+
}
300320
},
301321
{
302322
"name": "Jeremy Fiel",
@@ -354,6 +374,10 @@
354374
},
355375
"link": "https://landscape.json-schema.org/"
356376
}
357-
]
377+
],
378+
"startedOn": {
379+
"year": 2024,
380+
"month": "September"
381+
}
358382
}
359383
]

0 commit comments

Comments
 (0)