CycleTimeSummaryDTO

CycleTimeSummaryDTO schema from QA Certification Management OpenAPI Specification

GovernmentEnvironmentalOpen DataAir QualityWater QualityHazardous WasteComplianceEmissions

Properties

Name Type Description
cycleTimeInjectionData array
id string
testSumId string
calculatedTotalTime number
userId string
addDate string
updateDate string
totalTime number
View JSON Schema on GitHub

JSON Schema

cam-qa-cert-cycle-time-summary-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-cycle-time-summary-dto-schema.json",
  "title": "CycleTimeSummaryDTO",
  "description": "CycleTimeSummaryDTO schema from QA Certification Management OpenAPI Specification",
  "type": "object",
  "properties": {
    "cycleTimeInjectionData": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CycleTimeInjectionDTO"
      },
      "example": [
        "string"
      ]
    },
    "id": {
      "type": "string",
      "example": "12345"
    },
    "testSumId": {
      "type": "string",
      "example": "12345"
    },
    "calculatedTotalTime": {
      "type": "number",
      "example": 35.5
    },
    "userId": {
      "type": "string",
      "example": "12345"
    },
    "addDate": {
      "type": "string",
      "example": "string"
    },
    "updateDate": {
      "type": "string",
      "example": "string"
    },
    "totalTime": {
      "type": "number",
      "example": 0.0
    }
  },
  "required": [
    "cycleTimeInjectionData",
    "id",
    "testSumId",
    "calculatedTotalTime",
    "userId",
    "addDate",
    "updateDate"
  ]
}