DuctWafDTO
DuctWafDTO schema from Monitor Plan Management OpenAPI Specification
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions
Properties
| Name | Type | Description |
|---|---|---|
| wafDeterminationDate | string | The date the WAF applied in column 20 was determined. |
| wafBeginDate | string | The date on which the WAF was first applied to the flow rate data. |
| wafBeginHour | number | The hour in which the WAF was first applied to the flow rate data. |
| wafMethodCode | string | Code used to identify the WAF determination method. |
| wafValue | number | The WAF applied to the flow rate data, to four decimal places. |
| numberOfTestRuns | number | The number of runs in the WAF test (must be one for default WAF and at least three for a measured WAF) |
| numberOfTraversePointsWAF | number | The number of Method 1 traverse points in the WAF test runs. |
| numberOfTestPorts | number | The number of test ports at which measurements were made during the WAF test runs. |
| numberOfTraversePointsRef | number | The number of Method 1 traverse points in the reference flow RATA test runs. |
| ductWidth | number | The width of the rectangular duct at the test location. |
| ductDepth | number | The depth of the rectangular duct at the test location. |
| wafEndDate | string | The date on which the WAF was last applied to the flow rate data. |
| wafEndHour | number | The hour in which the WAF was last applied to the flow rate data. |
| id | string | Unique identifier of a rectangular duct WAF data record. |
| locationId | string | Unique identifier of a monitoring location record. |
| userId | string | User account or source of data that added or updated record. |
| addDate | string | Date and time in which record was added. |
| updateDate | string | Date and time in which record was last updated. |
| active | boolean |
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-monitor-plan-duct-waf-dto-schema.json",
"title": "DuctWafDTO",
"description": "DuctWafDTO schema from Monitor Plan Management OpenAPI Specification",
"type": "object",
"properties": {
"wafDeterminationDate": {
"format": "date-time",
"type": "string",
"description": "The date the WAF applied in column 20 was determined.",
"example": "2020-11-18"
},
"wafBeginDate": {
"format": "date-time",
"type": "string",
"description": "The date on which the WAF was first applied to the flow rate data.",
"example": "2020-11-28"
},
"wafBeginHour": {
"type": "number",
"description": "The hour in which the WAF was first applied to the flow rate data.",
"example": 12
},
"wafMethodCode": {
"type": "string",
"description": "Code used to identify the WAF determination method.",
"example": "FT"
},
"wafValue": {
"type": "number",
"description": "The WAF applied to the flow rate data, to four decimal places.",
"example": 1.0454
},
"numberOfTestRuns": {
"type": "number",
"description": "The number of runs in the WAF test (must be one for default WAF and at least three for a measured WAF)",
"example": 3
},
"numberOfTraversePointsWAF": {
"type": "number",
"description": "The number of Method 1 traverse points in the WAF test runs.",
"example": 48
},
"numberOfTestPorts": {
"type": "number",
"description": "The number of test ports at which measurements were made during the WAF test runs.",
"example": 4
},
"numberOfTraversePointsRef": {
"type": "number",
"description": "The number of Method 1 traverse points in the reference flow RATA test runs.",
"example": 48
},
"ductWidth": {
"type": "number",
"description": "The width of the rectangular duct at the test location.",
"example": 12
},
"ductDepth": {
"type": "number",
"description": "The depth of the rectangular duct at the test location.",
"example": 18.5
},
"wafEndDate": {
"format": "date-time",
"type": "string",
"description": "The date on which the WAF was last applied to the flow rate data.",
"example": "2021-09-18"
},
"wafEndHour": {
"type": "number",
"description": "The hour in which the WAF was last applied to the flow rate data.",
"example": 9
},
"id": {
"type": "string",
"description": "Unique identifier of a rectangular duct WAF data record.",
"example": "CAMD-6847FB7858174AD0ADF87FFBAF85EF9C"
},
"locationId": {
"type": "string",
"description": "Unique identifier of a monitoring location record.",
"example": "5"
},
"userId": {
"type": "string",
"description": "User account or source of data that added or updated record.",
"example": "abcde"
},
"addDate": {
"type": "string",
"description": "Date and time in which record was added.",
"example": "2009-02-20"
},
"updateDate": {
"type": "string",
"description": "Date and time in which record was last updated.",
"example": "2009-02-20"
},
"active": {
"type": "boolean",
"example": true
}
},
"required": [
"wafDeterminationDate",
"wafBeginDate",
"wafBeginHour",
"wafMethodCode",
"wafValue",
"numberOfTestRuns",
"numberOfTraversePointsWAF",
"numberOfTestPorts",
"numberOfTraversePointsRef",
"ductWidth",
"ductDepth",
"wafEndDate",
"wafEndHour",
"id",
"locationId",
"userId",
"addDate",
"updateDate",
"active"
]
}