HourlyOperatingDTO

HourlyOperatingDTO schema from Streaming Services OpenAPI Specification

GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Properties

Name Type Description
id string
locationId string
reportPeriodId number
beginDate string
beginHour number
operatingTime number
hourLoad number
loadUnitsOfMeasureCode string
userId string
addDate string
updateDate string
View JSON Schema on GitHub

JSON Schema

cam-streaming-hourly-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-hourly-operating-dto-schema.json",
  "title": "HourlyOperatingDTO",
  "description": "HourlyOperatingDTO 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
    },
    "beginDate": {
      "format": "date-time",
      "type": "string",
      "example": "2024-01-15T12:00:00Z"
    },
    "beginHour": {
      "type": "number",
      "example": 0.0
    },
    "operatingTime": {
      "type": "number",
      "example": 0.0
    },
    "hourLoad": {
      "type": "number",
      "example": 0.0
    },
    "loadUnitsOfMeasureCode": {
      "type": "string",
      "example": "string"
    },
    "userId": {
      "type": "string",
      "example": "12345"
    },
    "addDate": {
      "format": "date-time",
      "type": "string",
      "example": "2024-01-15T12:00:00Z"
    },
    "updateDate": {
      "format": "date-time",
      "type": "string",
      "example": "2024-01-15T12:00:00Z"
    }
  },
  "required": [
    "id",
    "locationId",
    "reportPeriodId",
    "beginDate",
    "beginHour",
    "operatingTime",
    "hourLoad",
    "loadUnitsOfMeasureCode",
    "userId",
    "addDate",
    "updateDate"
  ]
}