gridtracker/package.nw/data/acknowledgements.schema.json

26 lines
No EOL
840 B
JSON

{
"$id": "acknowledgements.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "acknowledgements",
"description": "List of everyone that's contributed to GridTracker",
"type": "object",
"patternProperties": {
"[0-9A-Z]{3,10}": {
"type": "object",
"required": [
"badge",
"message"
],
"properties": {
"badge": {
"type": "string",
"description": "path and filename of the 'badge' to display by a contributors callsign"
},
"message": {
"type": "string",
"description": "the message displayed to say how a person contributed"
}
}
}
}
}