jx/internal/folio/schemas/foo-declaration.schema.json
Matthew Rich 04b27dc5df
Some checks failed
Lint / golangci-lint (push) Has been cancelled
Declarative Tests / test (push) Has been cancelled
Declarative Tests / build-fedora (push) Has been cancelled
Declarative Tests / build-ubuntu-focal (push) Has been cancelled
add folio package
2024-08-17 18:19:56 -07:00

24 lines
496 B
JSON

{
"$id": "foo-declaration.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "foo-declaration",
"type": "object",
"required": [ "type", "attributes" ],
"properties": {
"type": {
"type": "string",
"description": "Resource type name.",
"enum": [ "foo" ]
},
"config": {
"type": "string",
"description": "Config name"
},
"attributes": {
"oneOf": [
{ "$ref": "foo.schema.json" }
]
}
}
}