FuelTypeDTO

FuelTypeDTO schema from Master Data Management OpenAPI Specification

GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Properties

Name Type Description
fuelTypeCode string
fuelTypeDescription string
fuelGroupCode string
fuelGroupDescription string
View JSON Schema on GitHub

JSON Schema

cam-master-data-fuel-type-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-master-data-fuel-type-dto-schema.json",
  "title": "FuelTypeDTO",
  "description": "FuelTypeDTO schema from Master Data Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "fuelTypeCode": {
      "type": "string",
      "example": "string"
    },
    "fuelTypeDescription": {
      "type": "string",
      "example": "string"
    },
    "fuelGroupCode": {
      "type": "string",
      "example": "string"
    },
    "fuelGroupDescription": {
      "type": "string",
      "example": "string"
    }
  },
  "required": [
    "fuelTypeCode",
    "fuelTypeDescription",
    "fuelGroupCode",
    "fuelGroupDescription"
  ]
}