Files
runner-images/schemas/toolset-schema.json
Subir Ghosh fd1af56b4f Change URL for packages (#11997)
* fix:URL for packages

* chore Add co-author
>
> Co-authored-by: greg dryke <no-reply@github.com>

* chore: Incorporate Review comments

* fix: remove redundant initialization
2025-04-11 11:53:08 -06:00

43 lines
877 B
JSON

{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"patternProperties": {
"^.*$": {
"if": {
"type": "object",
"required": [
"version"
],
"properties": {
"version": {
"type": "string",
"pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+.*$"
}
}
},
"then": {
"required": [
"pinnedDetails"
],
"properties": {
"pinnedDetails": {
"type": "object",
"properties": {
"reason": {
"type": "string"
},
"link": {
"type": "string"
},
"review-at": {
"type": "string",
"format": "date"
}
}
}
}
}
}
}
}