18 lines
385 B
Plaintext
18 lines
385 B
Plaintext
{
|
|
"$id": "file-declaration.jsonschema",
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "file-declaration",
|
|
"type": "object",
|
|
"required": [ "type", "attributes" ],
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"description": "Resource type name.",
|
|
"enum": [ "file" ]
|
|
},
|
|
"attributes": {
|
|
"$ref": "file.jsonschema"
|
|
}
|
|
}
|
|
}
|