jx/internal/resource/schemas/package-declaration.jsonschema

18 lines
397 B
Plaintext
Raw Normal View History

2024-04-09 19:30:05 +00:00
{
"$id": "package-declaration.jsonschema",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "package-declaration",
"type": "object",
"required": [ "type", "attributes" ],
"properties": {
"type": {
"type": "string",
"description": "Resource type name.",
"enum": [ "package" ]
},
"attributes": {
"$ref": "package.jsonschema"
}
}
}