AppECorrelationTestRunDTO
AppECorrelationTestRunDTO schema from QA Certification Management OpenAPI Specification
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions
Properties
| Name | Type | Description |
|---|---|---|
| appendixEHeatInputFromOilData | array | |
| appendixEHeatInputFromGasData | array | |
| id | string | |
| appECorrTestSumId | string | |
| calculatedHourlyHeatInputRate | number | |
| calculatedTotalHeatInput | number | |
| userId | string | |
| addDate | string | |
| updateDate | string | |
| runNumber | number | |
| referenceValue | number | |
| hourlyHeatInputRate | number | |
| totalHeatInput | number | |
| responseTime | number | |
| beginDate | string | |
| beginHour | number | |
| beginMinute | number | |
| endDate | string | |
| endHour | number | |
| endMinute | number |
JSON Schema
{
"$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-app-ecorrelation-test-run-dto-schema.json",
"title": "AppECorrelationTestRunDTO",
"description": "AppECorrelationTestRunDTO schema from QA Certification Management OpenAPI Specification",
"type": "object",
"properties": {
"appendixEHeatInputFromOilData": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AppEHeatInputFromOilDTO"
},
"example": [
"string"
]
},
"appendixEHeatInputFromGasData": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AppEHeatInputFromGasDTO"
},
"example": [
"string"
]
},
"id": {
"type": "string",
"example": "12345"
},
"appECorrTestSumId": {
"type": "string",
"example": "12345"
},
"calculatedHourlyHeatInputRate": {
"type": "number",
"example": 35.5
},
"calculatedTotalHeatInput": {
"type": "number",
"example": 35.5
},
"userId": {
"type": "string",
"example": "12345"
},
"addDate": {
"type": "string",
"example": "string"
},
"updateDate": {
"type": "string",
"example": "string"
},
"runNumber": {
"type": "number",
"example": 0.0
},
"referenceValue": {
"type": "number",
"example": 0.0
},
"hourlyHeatInputRate": {
"type": "number",
"example": 0.0
},
"totalHeatInput": {
"type": "number",
"example": 0.0
},
"responseTime": {
"type": "number",
"example": 0.0
},
"beginDate": {
"format": "date-time",
"type": "string",
"example": "2024-01-15T12:00:00Z"
},
"beginHour": {
"type": "number",
"example": 0.0
},
"beginMinute": {
"type": "number",
"example": 0.0
},
"endDate": {
"format": "date-time",
"type": "string",
"example": "2024-01-15T12:00:00Z"
},
"endHour": {
"type": "number",
"example": 0.0
},
"endMinute": {
"type": "number",
"example": 0.0
}
},
"required": [
"appendixEHeatInputFromOilData",
"appendixEHeatInputFromGasData",
"id",
"appECorrTestSumId",
"calculatedHourlyHeatInputRate",
"calculatedTotalHeatInput",
"userId",
"addDate",
"updateDate",
"runNumber",
"beginDate",
"beginHour",
"beginMinute",
"endDate",
"endHour",
"endMinute"
]
}