met2

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 A description of the category of Supplemental Environment Project (SEP) for a settlement.
ObjectName string The JSON name used for the database column.
View JSON Schema on GitHub

JSON Schema

echo-case-met2-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-schema/echo-case-met2-schema.json",
  "title": "met2",
  "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": {
      "description": "A description of the category of Supplemental Environment Project (SEP) for a settlement.",
      "title": "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"
  ]
}