jx/internal/resource/schemas/http-declaration.schema.json

22 lines
470 B
JSON
Raw Permalink Normal View History

2024-04-10 19:38:12 +00:00
{
2024-07-17 08:34:57 +00:00
"$id": "http-declaration.schema.json",
2024-04-10 19:38:12 +00:00
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "http-declaration",
"type": "object",
"required": [ "type", "attributes" ],
"properties": {
"type": {
"type": "string",
"description": "Resource type name.",
"enum": [ "http" ]
},
"config": {
"type": "string",
"description": "Config name."
},
2024-04-10 19:38:12 +00:00
"attributes": {
2024-07-17 08:34:57 +00:00
"$ref": "http.schema.json"
2024-04-10 19:38:12 +00:00
}
}
}