CycleTimeInjectionRecordDTO
CycleTimeInjectionRecordDTO schema from QA Certification Management OpenAPI Specification
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| cycleTimeSumId | string | |
| calculatedInjectionCycleTime | number | |
| userId | string | |
| addDate | string | |
| updateDate | string | |
| gasLevelCode | string | |
| calibrationGasValue | number | |
| beginDate | string | |
| beginHour | number | |
| beginMinute | number | |
| endDate | string | |
| endHour | number | |
| endMinute | number | |
| injectionCycleTime | number | |
| beginMonitorValue | number | |
| endMonitorValue | 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-cycle-time-injection-record-dto-schema.json",
"title": "CycleTimeInjectionRecordDTO",
"description": "CycleTimeInjectionRecordDTO schema from QA Certification Management OpenAPI Specification",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "12345"
},
"cycleTimeSumId": {
"type": "string",
"example": "12345"
},
"calculatedInjectionCycleTime": {
"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"
},
"calibrationGasValue": {
"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
},
"injectionCycleTime": {
"type": "number",
"example": 0.0
},
"beginMonitorValue": {
"type": "number",
"example": 0.0
},
"endMonitorValue": {
"type": "number",
"example": 0.0
}
},
"required": [
"id",
"cycleTimeSumId",
"calculatedInjectionCycleTime",
"userId",
"addDate",
"updateDate",
"gasLevelCode"
]
}