UnitDefaultTestDTO

UnitDefaultTestDTO schema from QA Certification Management OpenAPI Specification

GovernmentEnvironmentalOpenDataAirQualityWaterQualityHazardousWasteComplianceEmissions

Properties

Name Type Description
unitDefaultTestRunData array
id string
testSumId string
calculatedNoxDefaultRate number
userId string
addDate string
updateDate string
fuelCode string
noxDefaultRate number
operatingConditionCode string
groupId string
numberOfUnitsInGroup number
numberOfTestsForGroup number
View JSON Schema on GitHub

JSON Schema

cam-qa-cert-unit-default-test-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-qa-cert-unit-default-test-dto-schema.json",
  "title": "UnitDefaultTestDTO",
  "description": "UnitDefaultTestDTO schema from QA Certification Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "unitDefaultTestRunData": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UnitDefaultTestRunDTO"
      },
      "example": [
        "string"
      ]
    },
    "id": {
      "type": "string",
      "example": "12345"
    },
    "testSumId": {
      "type": "string",
      "example": "12345"
    },
    "calculatedNoxDefaultRate": {
      "type": "number",
      "example": 35.5
    },
    "userId": {
      "type": "string",
      "example": "12345"
    },
    "addDate": {
      "type": "string",
      "example": "string"
    },
    "updateDate": {
      "type": "string",
      "example": "string"
    },
    "fuelCode": {
      "type": "string",
      "example": "string"
    },
    "noxDefaultRate": {
      "type": "number",
      "example": 0.0
    },
    "operatingConditionCode": {
      "type": "string",
      "example": "string"
    },
    "groupId": {
      "type": "string",
      "maxLength": 10,
      "example": "12345"
    },
    "numberOfUnitsInGroup": {
      "type": "number",
      "example": 0.0
    },
    "numberOfTestsForGroup": {
      "type": "number",
      "example": 0.0
    }
  },
  "required": [
    "unitDefaultTestRunData",
    "id",
    "testSumId",
    "calculatedNoxDefaultRate",
    "userId",
    "addDate",
    "updateDate"
  ]
}