FlowRataRunDTO
FlowRataRunDTO schema from QA Certification Management OpenAPI Specification
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions
Properties
| Name | Type | Description |
|---|---|---|
| rataTraverseData | array | |
| id | string | |
| rataRunId | string | |
| calculatedDryMolecularWeight | number | |
| calculatedWetMolecularWeight | number | |
| calculatedAverageVelocityWithoutWallEffects | number | |
| calculatedAverageVelocityWithWallEffects | number | |
| calculatedCalculatedWAF | number | |
| userId | string | |
| addDate | string | |
| updateDate | string | |
| numberOfTraversePoints | number | |
| barometricPressure | number | |
| staticStackPressure | number | |
| percentCO2 | number | |
| percentO2 | number | |
| percentMoisture | number | |
| dryMolecularWeight | number | |
| wetMolecularWeight | number | |
| averageVelocityWithoutWallEffects | number | |
| averageVelocityWithWallEffects | number | |
| calculatedWAF | number | |
| averageStackFlowRate | 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-flow-rata-run-dto-schema.json",
"title": "FlowRataRunDTO",
"description": "FlowRataRunDTO schema from QA Certification Management OpenAPI Specification",
"type": "object",
"properties": {
"rataTraverseData": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RataTraverseDTO"
},
"example": [
"string"
]
},
"id": {
"type": "string",
"example": "12345"
},
"rataRunId": {
"type": "string",
"example": "12345"
},
"calculatedDryMolecularWeight": {
"type": "number",
"example": 35.5
},
"calculatedWetMolecularWeight": {
"type": "number",
"example": 35.5
},
"calculatedAverageVelocityWithoutWallEffects": {
"type": "number",
"example": 35.5
},
"calculatedAverageVelocityWithWallEffects": {
"type": "number",
"example": 35.5
},
"calculatedCalculatedWAF": {
"type": "number",
"example": 35.5
},
"userId": {
"type": "string",
"example": "12345"
},
"addDate": {
"type": "string",
"example": "string"
},
"updateDate": {
"type": "string",
"example": "string"
},
"numberOfTraversePoints": {
"type": "number",
"minimum": 12,
"maximum": 99,
"example": 0.0
},
"barometricPressure": {
"type": "number",
"example": 0.0
},
"staticStackPressure": {
"type": "number",
"example": 0.0
},
"percentCO2": {
"type": "number",
"example": 0.0
},
"percentO2": {
"type": "number",
"example": 0.0
},
"percentMoisture": {
"type": "number",
"example": 0.0
},
"dryMolecularWeight": {
"type": "number",
"example": 0.0
},
"wetMolecularWeight": {
"type": "number",
"example": 0.0
},
"averageVelocityWithoutWallEffects": {
"type": "number",
"maximum": 9999.99,
"example": 0.0
},
"averageVelocityWithWallEffects": {
"type": "number",
"example": 0.0
},
"calculatedWAF": {
"type": "number",
"example": 35.5
},
"averageStackFlowRate": {
"type": "number",
"maximum": 9999999999,
"example": 0.0
}
},
"required": [
"rataTraverseData",
"id",
"rataRunId",
"calculatedDryMolecularWeight",
"calculatedWetMolecularWeight",
"calculatedAverageVelocityWithoutWallEffects",
"calculatedAverageVelocityWithWallEffects",
"calculatedCalculatedWAF",
"userId",
"addDate",
"updateDate",
"numberOfTraversePoints",
"barometricPressure",
"staticStackPressure",
"percentCO2",
"percentO2",
"percentMoisture",
"wetMolecularWeight",
"averageVelocityWithoutWallEffects",
"averageStackFlowRate"
]
}