2025-01-13 16:44:41 +00:00
|
|
|
{
|
2025-04-11 11:53:08 -06:00
|
|
|
"$schema": "https://json-schema.org/draft-07/schema#",
|
2025-01-13 16:44:41 +00:00
|
|
|
"type": "object",
|
|
|
|
|
"patternProperties": {
|
|
|
|
|
"^.*$": {
|
|
|
|
|
"if": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"required": [
|
|
|
|
|
"version"
|
|
|
|
|
],
|
|
|
|
|
"properties": {
|
|
|
|
|
"version": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+.*$"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"then": {
|
|
|
|
|
"required": [
|
2025-01-14 12:13:15 +00:00
|
|
|
"pinnedDetails"
|
2025-01-13 16:44:41 +00:00
|
|
|
],
|
|
|
|
|
"properties": {
|
|
|
|
|
"pinnedDetails": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"reason": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"link": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"review-at": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"format": "date"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|