{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "CriterionGroupResultData", "required": [ "groupId", "groupTitle", "checklistId", "sessionId", "employeeId", "observerId" ], "properties": { "groupId": { "type": "string", "format": "uuid" }, "checklistId": { "type": "string", "format": "uuid" }, "groupTitle": { "type": "string" }, "sessionId": { "type": "string", "format": "uuid" }, "result": { "type": "number", "format": "float" }, "totalPoints": { "type": "number", "format": "float" }, "points": { "type": "number", "format": "float" }, "employeeId": { "type": "string", "format": "uuid" }, "observerId": { "type": "string", "format": "uuid" } }, "type": "object", "xml": { "name": "criterionGroupResultData" } }