jx/internal/resource/schemas/http-declaration.jsonschema
Matthew Rich 11a55e27d0
Some checks failed
Lint / golangci-lint (push) Failing after 9m54s
Declarative Tests / test (push) Successful in 1m21s
add http resource create method
2024-04-10 12:38:12 -07:00

18 lines
385 B
Plaintext

{
"$id": "http-declaration.jsonschema",
"$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" ]
},
"attributes": {
"$ref": "http.jsonschema"
}
}
}