SupplementalOperatingDTO

SupplementalOperatingDTO schema from Streaming Services OpenAPI Specification

GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Properties

Name Type Description
id string
locationId string
reportPeriodId number
operatingTypeCode string
fuelCode string
operatingValue number
userId string
addDate string
updateDate string
View JSON Schema on GitHub

JSON Schema

cam-streaming-supplemental-operating-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-supplemental-operating-dto-schema.json",
  "title": "SupplementalOperatingDTO",
  "description": "SupplementalOperatingDTO 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
    },
    "operatingTypeCode": {
      "type": "string",
      "example": "string"
    },
    "fuelCode": {
      "type": "string",
      "example": "string"
    },
    "operatingValue": {
      "type": "number",
      "example": 0.0
    },
    "userId": {
      "type": "string",
      "example": "12345"
    },
    "addDate": {
      "type": "string",
      "example": "string"
    },
    "updateDate": {
      "type": "string",
      "example": "string"
    }
  },
  "required": [
    "id",
    "locationId",
    "reportPeriodId",
    "operatingTypeCode",
    "fuelCode",
    "operatingValue",
    "userId",
    "addDate",
    "updateDate"
  ]
}