sdj-esm
Version:
Self Described JSON - ESM
17 lines (16 loc) • 443 B
JSON
{
"id": "http://some.site.somewhere/entry-schema#",
"$schema": "https://json-schema.org/draft-/schema",
"type": "object",
"required": [ "options" ],
"properties": {
"options": {
"type": "array",
"description": "Interesting details: Fresh New Awesome",
"minItems": 1,
"items": { "type": "string" },
"uniqueItems": true,
},
"readonly": { "type": "boolean" }
}
}