SummaryValueBaseDTO

SummaryValueBaseDTO schema from Streaming Services OpenAPI Specification

GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Properties

Name Type Description
id string
locationId string
reportPeriodId number
parameterCode string
quarterlyValue number
yearTotal number
ozoneSeasonTotal number
userId string
addDate string
updateDate string
View JSON Schema on GitHub

JSON Schema

cam-streaming-summary-value-base-dto-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/cam-streaming-summary-value-base-dto-schema.json",
  "title": "SummaryValueBaseDTO",
  "description": "SummaryValueBaseDTO schema from Streaming Services OpenAPI Specification",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "12345"
    },
    "locationId": {
      "type": "string",
      "example": "12345"
    },
    "reportPeriodId": {
      "type": "number",
      "example": 0.0
    },
    "parameterCode": {
      "type": "string",
      "example": "string"
    },
    "quarterlyValue": {
      "type": "number",
      "example": 0.0
    },
    "yearTotal": {
      "type": "number",
      "example": 2024
    },
    "ozoneSeasonTotal": {
      "type": "number",
      "example": 0.0
    },
    "userId": {
      "type": "string",
      "example": "12345"
    },
    "addDate": {
      "type": "string",
      "example": "string"
    },
    "updateDate": {
      "type": "string",
      "example": "string"
    }
  },
  "required": [
    "id",
    "locationId",
    "reportPeriodId",
    "parameterCode",
    "quarterlyValue",
    "yearTotal",
    "ozoneSeasonTotal",
    "userId",
    "addDate",
    "updateDate"
  ]
}