{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-schema/cam-qa-cert-hg-summary-dto-schema.json", "title": "HgSummaryDTO", "description": "HgSummaryDTO schema from QA Certification Management OpenAPI Specification", "type": "object", "properties": { "hgInjectionData": { "type": "array", "items": { "$ref": "#/components/schemas/HgInjectionDTO" }, "example": [ "string" ] }, "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "calculatedMeanMeasuredValue": { "type": "number", "example": 35.5 }, "calculatedMeanReferenceValue": { "type": "number", "example": 35.5 }, "calculatedPercentError": { "type": "number", "example": 35.5 }, "calculatedAPSIndicator": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "gasLevelCode": { "type": "string", "example": "string" }, "meanMeasuredValue": { "type": "number", "example": 0.0 }, "meanReferenceValue": { "type": "number", "example": 0.0 }, "percentError": { "type": "number", "example": 0.0 }, "apsIndicator": { "type": "number", "example": 0.0 } }, "required": [ "hgInjectionData", "id", "testSumId", "calculatedMeanMeasuredValue", "calculatedMeanReferenceValue", "calculatedPercentError", "calculatedAPSIndicator", "userId", "addDate", "updateDate", "gasLevelCode" ] }