resources/SimpleMoldSchema.json
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "metadata": { "type": "object", "properties": { "name": { "type": "string" }, "guid": { "type": "string", "format": "uuid" } }, "required": [ "name", "guid" ] } }, "required": [ "metadata" ] } |