{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "NewDepartment", "required": [ "name", "parentDepartmentId" ], "properties": { "name": { "type": "string" }, "parentDepartmentId": { "type": "string", "format": "uuid" }, "code": { "type": "string" } }, "type": "object", "xml": { "name": "request" } }