0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-12-22 05:28:35 +00:00
renovatebot_renovate/tools/schemas/changelog-urls-schema.json
RahulGautamSingh 95efd9f6fe
test(lib/data): schemas for changelog and source urls (#32151)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2024-10-30 08:19:48 +00:00

18 lines
367 B
JSON

{
"$schema": "https://json-schema.org/draft-04/schema#",
"type": "object",
"patternProperties": {
"^[a-zA-Z-]+$": {
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9. -/:@]+$": {
"type": "string",
"format": "uri"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}