mirror of
https://gitlab.com/gridtracker.org/gridtracker
synced 2026-08-13 17:52:40 -04:00
26 lines
No EOL
840 B
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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |