Skip to content

Commit

Permalink
added startedOn and lastReviewedOn
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevansegu authored and Relequestual committed Dec 13, 2024
1 parent a8377de commit 8ddbfeb
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 7 deletions.
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"
}
}
]

0 comments on commit 8ddbfeb

Please sign in to comment.