{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "concept_common", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 256 }, "status": { "type": "boolean", "default": true }, "archived": { "type": "boolean", "default": false } }, "required": [ "name" ] }