Files
hunfabric/modules/net-swp/schemas/url-list.schema.json
Ludovico Magnocavallo 5e0878903c SWP module refactor (#2737)
* new swp interface and factory

* outputs

* tests and fixes
2024-11-27 12:54:59 +00:00

17 lines
303 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"
}
}
}
}