meta3
Results Column Object
GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions
Properties
| Name | Type | Description |
|---|---|---|
| ColumnID | string | |
| ColumnName | string | |
| DataLength | string | Data length for EPA program database column. |
| DataType | string | Data type for EPA program database column. |
| Description | string | |
| ObjectName | string | The JSON name used for the database column. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-schema/echo-cwa-meta3-schema.json",
"title": "meta3",
"description": "Results Column Object",
"type": "object",
"properties": {
"ColumnID": {
"title": "Column ID",
"type": "string",
"example": "12345"
},
"ColumnName": {
"title": "Column Name",
"type": "string",
"example": "EPA Facility"
},
"DataLength": {
"description": "Data length for EPA program database column.",
"example": "10",
"title": "Data Length",
"type": "string"
},
"DataType": {
"description": "Data type for EPA program database column.",
"example": "NUMBER",
"title": "Data Type",
"type": "string"
},
"Description": {
"title": "Column Description",
"type": "string",
"example": "string"
},
"ObjectName": {
"description": "The JSON name used for the database column.",
"example": "CaseName",
"title": "Object Name",
"type": "string"
}
},
"required": [
"ColumnName",
"DataType",
"DataLength",
"ColumnID",
"ObjectName",
"Description"
]
}