Files
hunfabric/modules/net-swp/schemas/url-list.schema.json
2026-04-18 10:07:14 +02:00

18 lines
304 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "URL list",
"type": "object",
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"values": {
"type": "array",
"items": {
"type": "string"
}
}
}
}