{ "openapi": "3.0.0", "paths": { "/qa-certification-mgmt/health": { "get": { "operationId": "HealthController_check", "parameters": [], "responses": { "200": { "description": "The Health Check is successful", "content": { "application/json": { "schema": { "type": "object", "properties": { "status": { "type": "string", "example": "ok" }, "info": { "type": "object", "example": { "database": { "status": "up" } }, "additionalProperties": { "type": "object", "required": [ "status" ], "properties": { "status": { "type": "string" } }, "additionalProperties": true }, "nullable": true }, "error": { "type": "object", "example": {}, "additionalProperties": { "type": "object", "required": [ "status" ], "properties": { "status": { "type": "string" } }, "additionalProperties": true }, "nullable": true }, "details": { "type": "object", "example": { "database": { "status": "up" } }, "additionalProperties": { "type": "object", "required": [ "status" ], "properties": { "status": { "type": "string" } }, "additionalProperties": true } } } }, "examples": { "HealthController_check200Example": { "summary": "Default HealthController_check 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } }, "503": { "description": "The Health Check is not successful", "content": { "application/json": { "schema": { "type": "object", "properties": { "status": { "type": "string", "example": "error" }, "info": { "type": "object", "example": { "database": { "status": "up" } }, "additionalProperties": { "type": "object", "required": [ "status" ], "properties": { "status": { "type": "string" } }, "additionalProperties": true }, "nullable": true }, "error": { "type": "object", "example": { "redis": { "status": "down", "message": "Could not connect" } }, "additionalProperties": { "type": "object", "required": [ "status" ], "properties": { "status": { "type": "string" } }, "additionalProperties": true }, "nullable": true }, "details": { "type": "object", "example": { "database": { "status": "up" }, "redis": { "status": "down", "message": "Could not connect" } }, "additionalProperties": { "type": "object", "required": [ "status" ], "properties": { "status": { "type": "string" } }, "additionalProperties": true } } } }, "examples": { "HealthController_check503Example": { "summary": "Default HealthController_check 503 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "tags": [ "Health" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/export": { "get": { "operationId": "QACertificationController_export", "parameters": [ { "name": "facilityId", "required": true, "in": "query", "description": "The Facility ID code assigned by the Department of Energy's Energy Information Administration. The Energy Information Administration Plant ID code is also referred to as the \"ORIS code\", \"ORISPL code\", \"Facility ID\", or \"Facility code\", among other names. If a Plant ID code has not been assigned by the Department of Energy's Energy Information Administration, then plant code means a code beginning with \"88\" assigned by the EPA's Clean Air Markets Division for electronic reporting.", "schema": { "type": "number" }, "example": 0.0 }, { "name": "unitIds", "required": false, "in": "query", "description": "Unique identifier for each unit at a facility.", "style": "pipeDelimited", "explode": false, "schema": { "type": "array", "items": { "type": "string" } }, "example": [ "12345" ] }, { "name": "stackPipeIds", "required": false, "in": "query", "description": "This is the alphanumeric code assigned by a source to identify a multiple or common stack or pipe at which emissions are determined.", "style": "pipeDelimited", "explode": false, "schema": { "type": "array", "items": { "type": "string" } }, "example": [ "12345" ] }, { "name": "testSummaryIds", "required": false, "in": "query", "description": "Unique identifier of a test summary record.", "style": "pipeDelimited", "explode": false, "schema": { "type": "array", "items": { "type": "string" } }, "example": [ "12345" ] }, { "name": "qaCertificationEventIds", "required": false, "in": "query", "description": "Unique identifier of a QA certification event record.", "schema": { "type": "array", "items": { "type": "string" } }, "example": [ "12345" ] }, { "name": "testTypeCodes", "required": false, "in": "query", "description": "Code used to identify test type or the type of test performed.", "style": "pipeDelimited", "explode": false, "schema": { "type": "array", "items": { "type": "string", "enum": [ "7DAY", "AF2LCHK", "APPE", "BCAL", "CYCLE", "DAHS", "DAYCAL", "DGFMCAL", "F2LCHK", "F2LREF", "FF2LBAS", "FF2LTST", "FFACC", "FFACCTT", "HGLINE", "HGSI1", "HGSI3", "INTCHK", "LEAK", "LINE", "MFMCAL", "ONOFF", "OTHER", "PEI", "PEMSACC", "PEMSCAL", "QGA", "RATA", "TSCAL", "UNITDEF" ] } }, "example": [ "7DAY" ] }, { "name": "qaTestExtensionExemptionIds", "required": false, "in": "query", "description": "Unique Id for variances from prescribed testing requirements or extensions to the normal QA testing schedule.", "schema": { "type": "array", "items": { "type": "string" } }, "example": [ "12345" ] }, { "name": "beginDate", "required": false, "in": "query", "description": "Date in which information became effective or activity started.", "schema": { "format": "date-time", "type": "string" }, "example": "2024-01-15T12:00:00Z" }, { "name": "endDate", "required": false, "in": "query", "description": "End date for a given period of a unit's emissions.", "schema": { "format": "date-time", "type": "string" }, "example": "2024-01-15T12:00:00Z" }, { "name": "reportedValuesOnly", "required": false, "in": "query", "schema": { "type": "boolean" }, "example": true } ], "responses": { "200": { "description": "Successfull export of official QA Certification data", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/QACertificationDTO" }, "examples": { "QACertificationController_export200Example": { "summary": "Default QACertificationController_export 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "summary": "Exports Official QA Certification Data", "tags": [ "QA Certification" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/cert-events": { "get": { "operationId": "QACertificationController_getFilteredCerts", "parameters": [ { "name": "orisCodes", "required": true, "in": "query", "description": "Array of oris codes", "style": "pipeDelimited", "explode": false, "schema": { "type": "array", "items": { "type": "number" } }, "example": [ 0.0 ] }, { "name": "monPlanIds", "required": false, "in": "query", "description": "Array of configurations", "style": "pipeDelimited", "explode": false, "schema": { "type": "array", "items": { "type": "string" } }, "example": [ "12345" ] }, { "name": "quarters", "required": false, "in": "query", "description": "Array of quarter abbreviations", "style": "pipeDelimited", "explode": false, "schema": { "type": "array", "items": { "type": "string" } }, "example": [ "string" ] } ], "responses": { "200": { "description": "Retrieves workspace test summary records given a list of oris codes and or mon plan ids", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/CertEventReviewAndSubmitDTO" } } } }, "examples": { "QACertificationController_getFilteredCerts200Example": { "summary": "Default QACertificationController_getFilteredCerts 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "QA Certification" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/test-summary": { "get": { "operationId": "QACertificationController_getFilteredTestSums", "parameters": [ { "name": "orisCodes", "required": true, "in": "query", "description": "Array of oris codes", "style": "pipeDelimited", "explode": false, "schema": { "type": "array", "items": { "type": "number" } }, "example": [ 0.0 ] }, { "name": "monPlanIds", "required": false, "in": "query", "description": "Array of configurations", "style": "pipeDelimited", "explode": false, "schema": { "type": "array", "items": { "type": "string" } }, "example": [ "12345" ] }, { "name": "quarters", "required": false, "in": "query", "description": "Array of quarter abbreviations", "style": "pipeDelimited", "explode": false, "schema": { "type": "array", "items": { "type": "string" } }, "example": [ "string" ] } ], "responses": { "200": { "description": "Retrieves workspace test summary records given a list of oris codes and or mon plan ids", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/ReviewAndSubmitTestSummaryDTO" } } } }, "examples": { "QACertificationController_getFilteredTestSums200Example": { "summary": "Default QACertificationController_getFilteredTestSums 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "QA Certification" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/test-extension-exemption": { "get": { "operationId": "QACertificationController_getFilteredTee", "parameters": [ { "name": "orisCodes", "required": true, "in": "query", "description": "Array of oris codes", "style": "pipeDelimited", "explode": false, "schema": { "type": "array", "items": { "type": "number" } }, "example": [ 0.0 ] }, { "name": "monPlanIds", "required": false, "in": "query", "description": "Array of configurations", "style": "pipeDelimited", "explode": false, "schema": { "type": "array", "items": { "type": "string" } }, "example": [ "12345" ] }, { "name": "quarters", "required": false, "in": "query", "description": "Array of quarter abbreviations", "style": "pipeDelimited", "explode": false, "schema": { "type": "array", "items": { "type": "string" } }, "example": [ "string" ] } ], "responses": { "200": { "description": "Retrieves workspace tee records given a list of oris codes and or mon plan ids", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/TeeReviewAndSubmitDTO" } } } }, "examples": { "QACertificationController_getFilteredTee200Example": { "summary": "Default QACertificationController_getFilteredTee 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "QA Certification" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary": { "get": { "operationId": "TestSummaryController_getTestSummaries", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testTypeCodes", "required": false, "in": "query", "description": "Code used to identify test type or the type of test performed.", "style": "pipeDelimited", "explode": false, "schema": { "type": "array", "items": { "type": "string", "enum": [ "7DAY", "AF2LCHK", "APPE", "BCAL", "CYCLE", "DAHS", "DAYCAL", "DGFMCAL", "F2LCHK", "F2LREF", "FF2LBAS", "FF2LTST", "FFACC", "FFACCTT", "HGLINE", "HGSI1", "HGSI3", "INTCHK", "LEAK", "LINE", "MFMCAL", "ONOFF", "OTHER", "PEI", "PEMSACC", "PEMSCAL", "QGA", "RATA", "TSCAL", "UNITDEF" ] } }, "example": [ "7DAY" ] }, { "name": "systemTypeCodes", "required": false, "in": "query", "schema": { "type": "array", "items": { "type": "string", "enum": [ "CO2", "FLOW", "GAS", "H2O", "H2OM", "H2OT", "HCL", "HF", "HG", "LTGS", "LTOL", "NOX", "NOXC", "NOXE", "NOXP", "O2", "OILM", "OILV", "OP", "PM", "SO2", "ST" ] } }, "example": [ "CO2" ] }, { "name": "beginDate", "required": false, "in": "query", "description": "Date in which information became effective or activity started.", "schema": { "format": "date-time", "type": "string" }, "example": "2024-01-15T12:00:00Z" }, { "name": "endDate", "required": false, "in": "query", "description": "End date for a given period of a unit's emissions.", "schema": { "format": "date-time", "type": "string" }, "example": "2024-01-15T12:00:00Z" } ], "responses": { "200": { "description": "Retrieves official Test Summary records per filter criteria", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/TestSummaryRecordDTO" } } } }, "examples": { "TestSummaryController_getTestSummaries200Example": { "summary": "Default TestSummaryController_getTestSummaries 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Test Summary" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{id}": { "get": { "operationId": "TestSummaryController_getTestSummary", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Test Summary record by its id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/TestSummaryRecordDTO" }, "examples": { "TestSummaryController_getTestSummary200Example": { "summary": "Default TestSummaryController_getTestSummary 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Test Summary" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/linearities": { "get": { "operationId": "LinearitySummaryController_getLinearitySummaries", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Linearity Summary records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/LinearitySummaryRecordDTO" } } } }, "examples": { "LinearitySummaryController_getLinearitySummaries200Example": { "summary": "Default LinearitySummaryController_getLinearitySummaries 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Linearity Summary" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/linearities/{id}": { "get": { "operationId": "LinearitySummaryController_getLinearitySummary", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Linearity Summary record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/LinearitySummaryRecordDTO" }, "examples": { "LinearitySummaryController_getLinearitySummary200Example": { "summary": "Default LinearitySummaryController_getLinearitySummary 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Linearity Summary" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/linearities/{linSumId}/injections": { "get": { "operationId": "LinearityInjectionController_getInjections", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "linSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Linearity Injection records by Linearity Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/LinearityInjectionRecordDTO" } } } }, "examples": { "LinearityInjectionController_getInjections200Example": { "summary": "Default LinearityInjectionController_getInjections 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Linearity Injection" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/linearities/{linSumId}/injections/{id}": { "get": { "operationId": "LinearityInjectionController_getInjection", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "linSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Linearity Injection record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/LinearityInjectionRecordDTO" }, "examples": { "LinearityInjectionController_getInjection200Example": { "summary": "Default LinearityInjectionController_getInjection 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Linearity Injection" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/protocol-gases": { "get": { "operationId": "ProtocolGasController_getProtocolGases", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Protocol Gas records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/ProtocolGasDTO" } } } }, "examples": { "ProtocolGasController_getProtocolGases200Example": { "summary": "Default ProtocolGasController_getProtocolGases 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Protocol Gas" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/protocol-gases/{id}": { "get": { "operationId": "ProtocolGasController_getProtocolGas", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Protocol Gas record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ProtocolGasRecordDTO" }, "examples": { "ProtocolGasController_getProtocolGas200Example": { "summary": "Default ProtocolGasController_getProtocolGas 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Protocol Gas" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/rata": { "get": { "operationId": "RataController_getRatas", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves workspace RATA records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/RataRecordDTO" } } } }, "examples": { "RataController_getRatas200Example": { "summary": "Default RataController_getRatas 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Rata" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/rata/{id}": { "get": { "operationId": "RataController_getRata", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves workspace RATA record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RataRecordDTO" }, "examples": { "RataController_getRata200Example": { "summary": "Default RataController_getRata 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Rata" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/test-qualifications": { "get": { "operationId": "TestQualificationController_getTestQualifications", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Test Qualification records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/TestQualificationDTO" } } } }, "examples": { "TestQualificationController_getTestQualifications200Example": { "summary": "Default TestQualificationController_getTestQualifications 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Test Qualification" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/test-qualifications/{id}": { "get": { "operationId": "TestQualificationController_getTestQualification", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Test Qualification record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/TestQualificationRecordDTO" }, "examples": { "TestQualificationController_getTestQualification200Example": { "summary": "Default TestQualificationController_getTestQualification 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Test Qualification" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/fuel-flow-to-load-tests": { "get": { "operationId": "FuelFlowToLoadTestController_getFuelFlowToLoadTests", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Fuel Flow To Load Test records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/FuelFlowToLoadTestDTO" } } } }, "examples": { "FuelFlowToLoadTestController_getFuelFlowToLoadTests200Example": { "summary": "Default FuelFlowToLoadTestController_getFuelFlowToLoadTests 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Fuel Flow To Load Test" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/fuel-flow-to-load-tests/{id}": { "get": { "operationId": "FuelFlowToLoadTestController_getFuelFlowToLoadTest", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Fuel Flow To Load Test record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/FuelFlowToLoadTestDTO" }, "examples": { "FuelFlowToLoadTestController_getFuelFlowToLoadTest200Example": { "summary": "Default FuelFlowToLoadTestController_getFuelFlowToLoadTest 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Fuel Flow To Load Test" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/fuel-flow-to-load-baselines": { "get": { "operationId": "FuelFlowToLoadBaselineController_getFuelFlowToLoadBaselines", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Fuel Flow To Load Baseline records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/FuelFlowToLoadBaselineDTO" } } } }, "examples": { "FuelFlowToLoadBaselineController_getFuelFlowToLoadBaselines200Example": { "summary": "Default FuelFlowToLoadBaselineController_getFuelFlowToLoadBaselines 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Fuel Flow To Load Baseline" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/fuel-flow-to-load-baselines/{id}": { "get": { "operationId": "FuelFlowToLoadBaselineController_getFuelFlowToLoadBaseline", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Fuel Flow To Load Baseline record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/FuelFlowToLoadBaselineDTO" }, "examples": { "FuelFlowToLoadBaselineController_getFuelFlowToLoadBaseline200Example": { "summary": "Default FuelFlowToLoadBaselineController_getFuelFlowToLoadBaseline 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Fuel Flow To Load Baseline" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/fuel-flowmeter-accuracies": { "get": { "operationId": "FuelFlowmeterAccuracyController_getFuelFlowmeterAccuracies", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves Fuel Flowmeter Accuracy records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/FuelFlowmeterAccuracyRecordDTO" } } } }, "examples": { "FuelFlowmeterAccuracyController_getFuelFlowmeterAccuracies200Example": { "summary": "Default FuelFlowmeterAccuracyController_getFuelFlowmeterAccuracies 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Fuel Flowmeter Accuracy" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/fuel-flowmeter-accuracies/{id}": { "get": { "operationId": "FuelFlowmeterAccuracyController_getFuelFlowmeterAccuracy", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves a Fuel Flowmeter Accuracy record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/FuelFlowmeterAccuracyRecordDTO" }, "examples": { "FuelFlowmeterAccuracyController_getFuelFlowmeterAccuracy200Example": { "summary": "Default FuelFlowmeterAccuracyController_getFuelFlowmeterAccuracy 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Fuel Flowmeter Accuracy" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/flow-to-load-checks": { "get": { "operationId": "FlowToLoadCheckController_getFlowToLoadChecks", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves Flow To Load Check records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/FlowToLoadCheckRecordDTO" } } } }, "examples": { "FlowToLoadCheckController_getFlowToLoadChecks200Example": { "summary": "Default FlowToLoadCheckController_getFlowToLoadChecks 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Flow To Load Check" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/flow-to-load-checks/{id}": { "get": { "operationId": "FlowToLoadCheckController_getFlowToLoadCheck", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves a Flow To Load Check record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/FlowToLoadCheckRecordDTO" }, "examples": { "FlowToLoadCheckController_getFlowToLoadCheck200Example": { "summary": "Default FlowToLoadCheckController_getFlowToLoadCheck 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Flow To Load Check" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/flow-to-load-references": { "get": { "operationId": "FlowToLoadReferenceController_getFlowToLoadReferences", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves Flow To Load Reference records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/FlowToLoadReferenceRecordDTO" } } } }, "examples": { "FlowToLoadReferenceController_getFlowToLoadReferences200Example": { "summary": "Default FlowToLoadReferenceController_getFlowToLoadReferences 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Flow To Load Reference" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/flow-to-load-references/{id}": { "get": { "operationId": "FlowToLoadReferenceController_getFlowToLoadReference", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves a Flow To Load Reference record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/FlowToLoadReferenceRecordDTO" }, "examples": { "FlowToLoadReferenceController_getFlowToLoadReference200Example": { "summary": "Default FlowToLoadReferenceController_getFlowToLoadReference 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Flow To Load Reference" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/air-emission-testings": { "get": { "operationId": "AirEmissionTestingController_getAirEmissionsTestings", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Air Emission Testing records by Rata Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/AirEmissionTestingDTO" } } } }, "examples": { "AirEmissionTestingController_getAirEmissionsTestings200Example": { "summary": "Default AirEmissionTestingController_getAirEmissionsTestings 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Air Emission Testing" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/air-emission-testings/{id}": { "get": { "operationId": "AirEmissionTestingController_getAirEmissionsTesting", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Air Emission Testing record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/AirEmissionTestingDTO" }, "examples": { "AirEmissionTestingController_getAirEmissionsTesting200Example": { "summary": "Default AirEmissionTestingController_getAirEmissionsTesting 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Air Emission Testing" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/appendix-e-correlation-test-summaries": { "get": { "operationId": "AppendixETestSummaryController_getAppECorrelations", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves Appendix E Correlation Test Summary records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/AppECorrelationTestSummaryRecordDTO" } } } }, "examples": { "AppendixETestSummaryController_getAppECorrelations200Example": { "summary": "Default AppendixETestSummaryController_getAppECorrelations 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Appendix E Correlation Test Summary" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/appendix-e-correlation-test-summaries/{id}": { "get": { "operationId": "AppendixETestSummaryController_getAppECorrelation", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves an Appendix E Correlation Test Summary record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/AppECorrelationTestSummaryRecordDTO" }, "examples": { "AppendixETestSummaryController_getAppECorrelation200Example": { "summary": "Default AppendixETestSummaryController_getAppECorrelation 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Appendix E Correlation Test Summary" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/appendix-e-correlation-test-summaries/{appECorrTestSumId}/appendix-e-correlation-test-runs": { "get": { "operationId": "AppECorrelationTestRunController_getAppECorrelationTestRuns", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "appECorrTestSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves an official Appendix E Correlation Test Run records by Appendix E Correlation Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/AppECorrelationTestRunBaseDTO" } } } }, "examples": { "AppECorrelationTestRunController_getAppECorrelationTestRuns200Example": { "summary": "Default AppECorrelationTestRunController_getAppECorrelationTestRuns 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Appendix E Correlation Test Run" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/appendix-e-correlation-test-summaries/{appECorrTestSumId}/appendix-e-correlation-test-runs/{id}": { "get": { "operationId": "AppECorrelationTestRunController_getAppECorrelationTestRun", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "appECorrTestSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves an official Appendix E Correlation Test Run record by its unique Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/AppECorrelationTestRunRecordDTO" }, "examples": { "AppECorrelationTestRunController_getAppECorrelationTestRun200Example": { "summary": "Default AppECorrelationTestRunController_getAppECorrelationTestRun 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Appendix E Correlation Test Run" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/appendix-e-correlation-test-summaries/{appECorrTestSumId}/appendix-e-correlation-test-runs/{appECorrTestRunId}/appendix-e-heat-input-from-oils": { "get": { "operationId": "AppEHeatInputFromOilController_getAppEHeatInputFromOilRecords", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "appECorrTestSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "appECorrTestRunId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Appendix E Heat Input from Oil records by Appendix E Correlation Test Run Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/AppEHeatInputFromOilRecordDTO" } } } }, "examples": { "AppEHeatInputFromOilController_getAppEHeatInputFromOilRecords200Example": { "summary": "Default AppEHeatInputFromOilController_getAppEHeatInputFromOilRecords 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Appendix E Heat Input From Oil" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/appendix-e-correlation-test-summaries/{appECorrTestSumId}/appendix-e-correlation-test-runs/{appECorrTestRunId}/appendix-e-heat-input-from-oils/{id}": { "get": { "operationId": "AppEHeatInputFromOilController_getAppEHeatInputFromOilRecord", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "appECorrTestSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "appECorrTestRunId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Appendix E Heat Input from Oil record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/AppEHeatInputFromOilRecordDTO" }, "examples": { "AppEHeatInputFromOilController_getAppEHeatInputFromOilRecord200Example": { "summary": "Default AppEHeatInputFromOilController_getAppEHeatInputFromOilRecord 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Appendix E Heat Input From Oil" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/appendix-e-correlation-test-summaries/{appECorrTestSumId}/appendix-e-correlation-test-runs/{appECorrTestRunId}/appendix-e-heat-input-from-gases": { "get": { "operationId": "AppEHeatInputFromGasController_getAppEHeatInputFromGases", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "appECorrTestSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "appECorrTestRunId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves a workspace Appendix E Heat Input From Gas records by Appendix E Correlation Test Run Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/AppEHeatInputFromGasRecordDTO" } } } }, "examples": { "AppEHeatInputFromGasController_getAppEHeatInputFromGases200Example": { "summary": "Default AppEHeatInputFromGasController_getAppEHeatInputFromGases 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Appendix E Heat Input From Gas" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/appendix-e-correlation-test-summaries/{appECorrTestSumId}/appendix-e-correlation-test-runs/{appECorrTestRunId}/appendix-e-heat-input-from-gases/{id}": { "get": { "operationId": "AppEHeatInputFromGasController_getAppEHeatInputFromGas", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "appECorrTestSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "appECorrTestRunId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves a workspace Appendix E Heat Input From Gas record by it's Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/AppEHeatInputFromGasRecordDTO" }, "examples": { "AppEHeatInputFromGasController_getAppEHeatInputFromGas200Example": { "summary": "Default AppEHeatInputFromGasController_getAppEHeatInputFromGas 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Appendix E Heat Input From Gas" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/calibration-injections": { "get": { "operationId": "CalibrationInjectionController_getCalibrationInjections", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves workspace Calibration Injection records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/CalibrationInjectionDTO" } } } }, "examples": { "CalibrationInjectionController_getCalibrationInjections200Example": { "summary": "Default CalibrationInjectionController_getCalibrationInjections 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Calibration Injection" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/calibration-injections/{id}": { "get": { "operationId": "CalibrationInjectionController_getCalibrationInjection", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves workspace Calibration Injection record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CalibrationInjectionDTO" }, "examples": { "CalibrationInjectionController_getCalibrationInjection200Example": { "summary": "Default CalibrationInjectionController_getCalibrationInjection 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Calibration Injection" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/online-offline-calibration": { "get": { "operationId": "OnlineOfflineCalibrationController_getOnlineOfflineCalibrations", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Online Offline Calibration records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/OnlineOfflineCalibrationDTO" } } } }, "examples": { "OnlineOfflineCalibrationController_getOnlineOfflineCalibrations200Example": { "summary": "Default OnlineOfflineCalibrationController_getOnlineOfflineCalibrations 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Online Offline Calibration" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/online-offline-calibration/{id}": { "get": { "operationId": "OnlineOfflineCalibrationController_getOnlineOfflineCalibration", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Online Offline Calibration record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/OnlineOfflineCalibrationRecordDTO" }, "examples": { "OnlineOfflineCalibrationController_getOnlineOfflineCalibration200Example": { "summary": "Default OnlineOfflineCalibrationController_getOnlineOfflineCalibration 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Online Offline Calibration" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/cycle-time-summaries": { "get": { "operationId": "CycleTimeSummaryController_getCycleTimeSummaries", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Cycle Time Summary records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/CycleTimeSummaryDTO" } } } }, "examples": { "CycleTimeSummaryController_getCycleTimeSummaries200Example": { "summary": "Default CycleTimeSummaryController_getCycleTimeSummaries 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Cycle Time Summary" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/cycle-time-summaries/{id}": { "get": { "operationId": "CycleTimeSummaryController_getCycleTimeSummary", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Cycle Time Summary record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CycleTimeSummaryDTO" }, "examples": { "CycleTimeSummaryController_getCycleTimeSummary200Example": { "summary": "Default CycleTimeSummaryController_getCycleTimeSummary 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Cycle Time Summary" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/cycle-time-summaries/{cycleTimeSumId}/cycle-time-injections": { "get": { "operationId": "CycleTimeInjectionController_getCycleTimeInjections", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "cycleTimeSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retreives official Cycle Time Injection records by Cycle Time Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/CycleTimeInjectionRecordDTO" } } } }, "examples": { "CycleTimeInjectionController_getCycleTimeInjections200Example": { "summary": "Default CycleTimeInjectionController_getCycleTimeInjections 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Cycle Time Injection" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/cycle-time-summaries/{cycleTimeSumId}/cycle-time-injections/{id}": { "get": { "operationId": "CycleTimeInjectionController_getCycleTimeInjection", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "cycleTimeSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves workspace Cycle Time Injection record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CycleTimeInjectionRecordDTO" }, "examples": { "CycleTimeInjectionController_getCycleTimeInjection200Example": { "summary": "Default CycleTimeInjectionController_getCycleTimeInjection 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Cycle Time Injection" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/unit-default-tests": { "get": { "operationId": "UnitDefaultTestController_getUnitDefaultTests", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Unit Default Test records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/UnitDefaultTestRecordDTO" } } } }, "examples": { "UnitDefaultTestController_getUnitDefaultTests200Example": { "summary": "Default UnitDefaultTestController_getUnitDefaultTests 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Unit Default Test" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/unit-default-tests/{id}": { "get": { "operationId": "UnitDefaultTestController_getUnitDefaultTest", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Unit Default Test record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UnitDefaultTestRecordDTO" }, "examples": { "UnitDefaultTestController_getUnitDefaultTest200Example": { "summary": "Default UnitDefaultTestController_getUnitDefaultTest 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Unit Default Test" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/unit-default-tests/{unitDefaultTestSumId}/unit-default-test-runs": { "get": { "operationId": "UnitDefaultTestRunController_getUnitDefaultTestRuns", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "unitDefaultTestSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Unit Default Test Run records by Unit Default Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/UnitDefaultTestRunRecordDTO" } } } }, "examples": { "UnitDefaultTestRunController_getUnitDefaultTestRuns200Example": { "summary": "Default UnitDefaultTestRunController_getUnitDefaultTestRuns 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Unit Default Test Run" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/unit-default-tests/{unitDefaultTestSumId}/unit-default-test-runs/{id}": { "get": { "operationId": "UnitDefaultTestRunController_getUnitDefaultTestRun", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "unitDefaultTestSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Unit Default Test Run record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UnitDefaultTestRunRecordDTO" }, "examples": { "UnitDefaultTestRunController_getUnitDefaultTestRun200Example": { "summary": "Default UnitDefaultTestRunController_getUnitDefaultTestRun 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Unit Default Test Run" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/transmitter-transducer-accuracy": { "get": { "operationId": "TransmitterTransducerAccuracyController_getTransmitterTransducerAccuracies", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Transmitter Transducer Accuracy records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/TransmitterTransducerAccuracyDTO" } } } }, "examples": { "TransmitterTransducerAccuracyController_getTransmitterTransducerAccuracies200Example": { "summary": "Default TransmitterTransducerAccuracyController_getTransmitterTransducerAccuracies 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Transmitter Transducer Accuracy" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/transmitter-transducer-accuracy/{id}": { "get": { "operationId": "TransmitterTransducerAccuracyController_getTransmitterTransducerAccuracy", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Transmitter Transducer Accuracy record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/TransmitterTransducerAccuracyDTO" }, "examples": { "TransmitterTransducerAccuracyController_getTransmitterTransducerAccuracy200Example": { "summary": "Default TransmitterTransducerAccuracyController_getTransmitterTransducerAccuracy 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Transmitter Transducer Accuracy" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/hg-summaries": { "get": { "operationId": "HgSummaryController_getHgSummaries", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves workspace Hg Summary records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/HgSummaryDTO" } } } }, "examples": { "HgSummaryController_getHgSummaries200Example": { "summary": "Default HgSummaryController_getHgSummaries 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Hg Summary" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/hg-summaries/{id}": { "get": { "operationId": "HgSummaryController_getHgSummary", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves workspace Hg Summary record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HgSummaryDTO" }, "examples": { "HgSummaryController_getHgSummary200Example": { "summary": "Default HgSummaryController_getHgSummary 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Hg Summary" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/hg-summaries/{hgTestSumId}/hg-injections": { "get": { "operationId": "HgInjectionController_getHgInjections", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "hgTestSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves Hg Injection records by Test Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/HgInjectionRecordDTO" } } } }, "examples": { "HgInjectionController_getHgInjections200Example": { "summary": "Default HgInjectionController_getHgInjections 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Hg Injection" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/hg-summaries/{hgTestSumId}/hg-injections/{id}": { "get": { "operationId": "HgInjectionController_getHgInjection", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "hgTestSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves Injection Hg Injection record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HgInjectionRecordDTO" }, "examples": { "HgInjectionController_getHgInjection200Example": { "summary": "Default HgInjectionController_getHgInjection 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Hg Injection" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/rata/{rataId}/rata-summaries": { "get": { "operationId": "RataSummaryController_etRataSummaries", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Rata Summary records.", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/RataSummaryDTO" } } } }, "examples": { "RataSummaryController_etRataSummaries200Example": { "summary": "Default RataSummaryController_etRataSummaries 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Rata Summary" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/rata/{rataId}/rata-summaries/{id}": { "get": { "operationId": "RataSummaryController_getRataSummary", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves an official Rata Summary record.", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RataSummaryRecordDTO" }, "examples": { "RataSummaryController_getRataSummary200Example": { "summary": "Default RataSummaryController_getRataSummary 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Rata Summary" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/rata/{rataId}/rata-summaries/{rataSumId}/rata-runs": { "get": { "operationId": "RataRunController_getRataRuns", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Rata Run records by Rata Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/RataRunDTO" } } } }, "examples": { "RataRunController_getRataRuns200Example": { "summary": "Default RataRunController_getRataRuns 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Rata Run" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/rata/{rataId}/rata-summaries/{rataSumId}/rata-runs/{id}": { "get": { "operationId": "RataRunController_getRataRun", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Rata Run record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RataRunDTO" }, "examples": { "RataRunController_getRataRun200Example": { "summary": "Default RataRunController_getRataRun 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Rata Run" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/rata/{rataId}/rata-summaries/{rataSumId}/rata-runs/{rataRunId}/flow-rata-runs": { "get": { "operationId": "FlowRataRunController_getFlowRataRuns", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataRunId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Flow Rata Run records by Flow Rata Summary Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/FlowRataRunDTO" } } } }, "examples": { "FlowRataRunController_getFlowRataRuns200Example": { "summary": "Default FlowRataRunController_getFlowRataRuns 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Flow Rata Run" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/rata/{rataId}/rata-summaries/{rataSumId}/rata-runs/{rataRunId}/flow-rata-runs/{id}": { "get": { "operationId": "FlowRataRunController_getFlowRataRun", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataRunId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Flow Rata Run record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/FlowRataRunDTO" }, "examples": { "FlowRataRunController_getFlowRataRun200Example": { "summary": "Default FlowRataRunController_getFlowRataRun 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Flow Rata Run" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/rata/{rataId}/rata-summaries/{rataSumId}/rata-runs/{rataRunId}/flow-rata-runs/{flowRataRunId}/rata-traverses": { "get": { "operationId": "RataTraverseController_getRataTraverses", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataRunId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "flowRataRunId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Rata Traverse records by Flow Rata Run ID", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/RataTraverseRecordDTO" } } } }, "examples": { "RataTraverseController_getRataTraverses200Example": { "summary": "Default RataTraverseController_getRataTraverses 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Rata Traverse" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-summary/{testSumId}/rata/{rataId}/rata-summaries/{rataSumId}/rata-runs/{rataRunId}/flow-rata-runs/{flowRataRunId}/rata-traverses/{id}": { "get": { "operationId": "RataTraverseController_getRataTraverse", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "testSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataSumId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "rataRunId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "flowRataRunId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official Rata Traverse record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RataTraverseRecordDTO" }, "examples": { "RataTraverseController_getRataTraverse200Example": { "summary": "Default RataTraverseController_getRataTraverse 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Rata Traverse" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/qa-certification-events": { "get": { "operationId": "QaCertificationEventController_getQACertEvents", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves official QA Certification Event records by Location Id", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/QACertificationEventDTO" } } } }, "examples": { "QaCertificationEventController_getQACertEvents200Example": { "summary": "Default QaCertificationEventController_getQACertEvents 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "QA Certification Event" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/qa-certification-events/{id}": { "get": { "operationId": "QaCertificationEventController_getQACertEvent", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves QA Certification Event record by its Id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/QACertificationEventDTO" }, "examples": { "QaCertificationEventController_getQACertEvent200Example": { "summary": "Default QaCertificationEventController_getQACertEvent 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "QA Certification Event" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-extension-exemptions": { "get": { "operationId": "TestExtensionExemptionsController_getTestExtensionExemptions", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves workspace Test Extension Exemption records per filter criteria", "content": { "application/json": { "schema": { "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/TestExtensionExemptionRecordDTO" } } } }, "examples": { "TestExtensionExemptionsController_getTestExtensionExemptions200Example": { "summary": "Default TestExtensionExemptionsController_getTestExtensionExemptions 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Test Extension Exemption" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } }, "/qa-certification-mgmt/locations/{locId}/test-extension-exemptions/{id}": { "get": { "operationId": "TestExtensionExemptionsController_getTestExtensionExemption", "parameters": [ { "name": "locId", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" }, { "name": "id", "required": true, "in": "path", "schema": { "type": "string" }, "example": "12345" } ], "responses": { "200": { "description": "Retrieves workspace Test Extension Exemption record by its id", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/TestExtensionExemptionRecordDTO" }, "examples": { "TestExtensionExemptionsController_getTestExtensionExemption200Example": { "summary": "Default TestExtensionExemptionsController_getTestExtensionExemption 200 response", "x-microcks-default": true, "value": { "status": "ok", "message": "Example response" } } } } } } }, "security": [ { "APIKey": [] } ], "tags": [ "Test Extension Exemption" ], "x-microcks-operation": { "delay": 0, "dispatcher": "FALLBACK" } } } }, "info": { "title": "QA Certification Management OpenAPI Specification", "description": "QA & Certification management API endpoints for qa test data, qa cert events, and test extension & exemption data", "version": "v2.0.80 published: Thu Mar 26 2026", "contact": {} }, "tags": [], "servers": [ { "url": "https://api.epa.gov/easey" } ], "components": { "securitySchemes": { "APIKey": { "type": "apiKey", "in": "header", "name": "x-api-key", "description": "API Key required via \"x-api-key\" request header!" }, "Token": { "scheme": "bearer", "bearerFormat": "JWT", "type": "http", "description": "Authorization \"bearer\" token required for data modification operations" } }, "schemas": { "TeeReviewAndSubmitDTO": { "type": "object", "properties": { "orisCode": { "type": "number", "example": 0.0 }, "facilityName": { "type": "string", "example": "EPA Facility" }, "monPlanId": { "type": "string", "example": "12345" }, "locationInfo": { "type": "string", "example": "string" }, "testExtensionExemptionIdentifier": { "type": "string", "example": "12345" }, "extensExemptCode": { "type": "string", "example": "string" }, "monLocIdentifier": { "type": "string", "example": "12345" }, "systemComponentIdentifier": { "type": "string", "example": "12345" }, "rptPeriodIdentifier": { "type": "number", "example": 0.0 }, "userid": { "type": "string", "example": "12345" }, "updateDate": { "type": "string", "example": "string" }, "evalStatusCode": { "type": "string", "example": "active" }, "evalStatusCodeDescription": { "type": "string", "example": "active" }, "severityCode": { "type": "string", "example": "string" }, "severityDescription": { "type": "string", "example": "string" }, "submissionAvailabilityCode": { "type": "string", "example": "string" }, "submissionAvailabilityCodeDescription": { "type": "string", "example": "string" }, "periodAbbreviation": { "type": "string", "example": "string" }, "fuelCode": { "type": "string", "example": "string" }, "hoursUsed": { "type": "number", "example": 0.0 }, "spanScaleCode": { "type": "string", "example": "string" } }, "required": [ "orisCode", "facilityName", "monPlanId", "locationInfo", "testExtensionExemptionIdentifier", "extensExemptCode", "monLocIdentifier", "systemComponentIdentifier", "rptPeriodIdentifier", "userid", "updateDate", "evalStatusCode", "evalStatusCodeDescription", "severityCode", "severityDescription", "submissionAvailabilityCode", "submissionAvailabilityCodeDescription", "periodAbbreviation", "fuelCode", "hoursUsed", "spanScaleCode" ] }, "ReviewAndSubmitTestSummaryDTO": { "type": "object", "properties": { "orisCode": { "type": "number", "example": 0.0 }, "facilityName": { "type": "string", "example": "EPA Facility" }, "monPlanId": { "type": "string", "example": "12345" }, "locationInfo": { "type": "string", "example": "string" }, "testSumId": { "type": "string", "example": "12345" }, "systemComponentId": { "type": "string", "example": "12345" }, "testTypeCode": { "type": "string", "example": "string" }, "testNum": { "type": "string", "example": "string" }, "beginDate": { "type": "string", "example": "string" }, "endDate": { "type": "string", "example": "string" }, "userId": { "type": "string", "example": "12345" }, "updateDate": { "type": "string", "example": "string" }, "evalStatusCode": { "type": "string", "example": "active" }, "submissionAvailabilityCode": { "type": "string", "example": "string" }, "evalStatusCodeDescription": { "type": "string", "example": "active" }, "severityCode": { "type": "string", "example": "string" }, "severityDescription": { "type": "string", "example": "string" }, "submissionCodeDescription": { "type": "string", "example": "string" }, "periodAbbreviation": { "type": "string", "example": "string" } }, "required": [ "orisCode", "facilityName", "monPlanId", "locationInfo", "testSumId", "systemComponentId", "testTypeCode", "testNum", "beginDate", "endDate", "userId", "updateDate", "evalStatusCode", "submissionAvailabilityCode", "evalStatusCodeDescription", "severityCode", "severityDescription", "submissionCodeDescription", "periodAbbreviation" ] }, "CertEventReviewAndSubmitDTO": { "type": "object", "properties": { "orisCode": { "type": "number", "example": 0.0 }, "facilityName": { "type": "string", "example": "EPA Facility" }, "monPlanId": { "type": "string", "example": "12345" }, "locationInfo": { "type": "string", "example": "string" }, "qaCertEventIdentifier": { "type": "string", "example": "12345" }, "qaCertEventCode": { "type": "string", "example": "string" }, "monLocIdentifier": { "type": "string", "example": "12345" }, "systemComponentIdentifier": { "type": "string", "example": "12345" }, "rptPeriodIdentifier": { "type": "number", "example": 0.0 }, "eventDate": { "type": "string", "example": "string" }, "conditionDate": { "type": "string", "example": "string" }, "lastCompletion": { "type": "string", "example": "string" }, "userid": { "type": "string", "example": "12345" }, "updateDate": { "type": "string", "example": "string" }, "evalStatusCode": { "type": "string", "example": "active" }, "evalStatusCodeDescription": { "type": "string", "example": "active" }, "severityCode": { "type": "string", "example": "string" }, "severityDescription": { "type": "string", "example": "string" }, "submissionAvailabilityCode": { "type": "string", "example": "string" }, "submissionAvailabilityDescription": { "type": "string", "example": "string" }, "requiredTestCode": { "type": "string", "example": "string" }, "periodAbbreviation": { "type": "string", "example": "string" } }, "required": [ "orisCode", "facilityName", "monPlanId", "locationInfo", "qaCertEventIdentifier", "qaCertEventCode", "monLocIdentifier", "systemComponentIdentifier", "rptPeriodIdentifier", "eventDate", "conditionDate", "lastCompletion", "userid", "updateDate", "evalStatusCode", "evalStatusCodeDescription", "severityCode", "severityDescription", "submissionAvailabilityCode", "submissionAvailabilityDescription", "requiredTestCode", "periodAbbreviation" ] }, "CalibrationInjectionDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "calculatedZeroCalibrationError": { "type": "number", "example": 35.5 }, "calculatedZeroAPSIndicator": { "type": "number", "example": 35.5 }, "calculatedUpscaleCalibrationError": { "type": "number", "example": 35.5 }, "calculatedUpscaleAPSIndicator": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "onlineOfflineIndicator": { "type": "number", "example": 0.0 }, "upscaleGasLevelCode": { "type": "string", "example": "string" }, "zeroInjectionDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "zeroInjectionHour": { "type": "number", "example": 0.0 }, "zeroInjectionMinute": { "type": "number", "example": 0.0 }, "upscaleInjectionDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "upscaleInjectionHour": { "type": "number", "example": 0.0 }, "upscaleInjectionMinute": { "type": "number", "example": 0.0 }, "zeroMeasuredValue": { "type": "number", "example": 0.0 }, "upscaleMeasuredValue": { "type": "number", "example": 0.0 }, "zeroAPSIndicator": { "type": "number", "example": 0.0 }, "upscaleAPSIndicator": { "type": "number", "example": 0.0 }, "zeroCalibrationError": { "type": "number", "example": 0.0 }, "upscaleCalibrationError": { "type": "number", "example": 0.0 }, "zeroReferenceValue": { "type": "number", "example": 0.0 }, "upscaleReferenceValue": { "type": "number", "example": 0.0 } }, "required": [ "id", "testSumId", "calculatedZeroCalibrationError", "calculatedZeroAPSIndicator", "calculatedUpscaleCalibrationError", "calculatedUpscaleAPSIndicator", "userId", "addDate", "updateDate" ] }, "LinearityInjectionDTO": { "type": "object", "properties": { "injectionDate": { "format": "date-time", "type": "string", "description": "injectionDate. ADD TO PROPERTY METADATA", "example": "2024-01-15T12:00:00Z" }, "injectionHour": { "type": "number", "description": "injectionHour. ADD TO PROPERTY METADATA", "example": 0.0 }, "injectionMinute": { "type": "number", "description": "injectionMinute. ADD TO PROPERTY METADATA", "example": 0.0 }, "measuredValue": { "type": "number", "description": "measuredValue. ADD TO PROPERTY METADATA", "example": 0.0 }, "referenceValue": { "type": "number", "description": "referenceValue. ADD TO PROPERTY METADATA", "example": 0.0 }, "id": { "type": "string", "example": "12345" }, "linSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" } }, "required": [ "injectionDate", "injectionMinute", "id", "linSumId", "userId", "addDate", "updateDate" ] }, "LinearitySummaryDTO": { "type": "object", "properties": { "gasLevelCode": { "type": "string", "description": "gasLevelCode. ADD TO PROPERTY METADATA", "example": "string" }, "meanMeasuredValue": { "type": "number", "description": "meanMeasuredValue. ADD TO PROPERTY METADATA", "example": 0.0 }, "meanReferenceValue": { "type": "number", "description": "meanReferenceValue. ADD TO PROPERTY METADATA", "example": 0.0 }, "percentError": { "type": "number", "description": "percentError. ADD TO PROPERTY METADATA", "example": 0.0 }, "apsIndicator": { "type": "number", "description": "Used to indicate if the alternative performance specification (APS) is used.", "example": 0 }, "linearityInjectionData": { "type": "array", "items": { "$ref": "#/components/schemas/LinearityInjectionDTO" }, "example": [ "string" ] }, "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "calculatedMeanReferenceValue": { "type": "number", "example": 35.5 }, "calculatedMeanMeasuredValue": { "type": "number", "example": 35.5 }, "calculatedPercentError": { "type": "number", "example": 35.5 }, "calculatedAPSIndicator": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" } }, "required": [ "gasLevelCode", "linearityInjectionData", "id", "testSumId", "calculatedMeanReferenceValue", "calculatedMeanMeasuredValue", "calculatedPercentError", "calculatedAPSIndicator", "userId", "addDate", "updateDate" ] }, "RataTraverseDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "flowRataRunId": { "type": "string", "example": "12345" }, "calculatedCalculatedVelocity": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "probeId": { "type": "string", "maxLength": 11, "example": "12345" }, "probeTypeCode": { "type": "string", "example": "string" }, "pressureMeasureCode": { "type": "string", "example": "string" }, "methodTraversePointId": { "type": "string", "minLength": 1, "maxLength": 3, "example": "12345" }, "velocityCalibrationCoefficient": { "type": "number", "example": 0.0 }, "lastProbeDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "averageVelocityDifferencePressure": { "type": "number", "example": 0.0 }, "averageSquareVelocityDifferencePressure": { "type": "number", "example": 0.0 }, "tStackTemperature": { "type": "number", "example": 0.0 }, "pointUsedIndicator": { "type": "number", "example": 0.0 }, "numberWallEffectsPoints": { "type": "number", "example": 0.0 }, "yawAngle": { "type": "number", "example": 0.0 }, "pitchAngle": { "type": "number", "example": 0.0 }, "calculatedVelocity": { "type": "number", "example": 35.5 }, "replacementVelocity": { "type": "number", "example": 0.0 } }, "required": [ "id", "flowRataRunId", "calculatedCalculatedVelocity", "userId", "addDate", "updateDate", "probeId", "probeTypeCode", "pressureMeasureCode", "methodTraversePointId", "velocityCalibrationCoefficient", "lastProbeDate", "tStackTemperature" ] }, "FlowRataRunDTO": { "type": "object", "properties": { "rataTraverseData": { "type": "array", "items": { "$ref": "#/components/schemas/RataTraverseDTO" }, "example": [ "string" ] }, "id": { "type": "string", "example": "12345" }, "rataRunId": { "type": "string", "example": "12345" }, "calculatedDryMolecularWeight": { "type": "number", "example": 35.5 }, "calculatedWetMolecularWeight": { "type": "number", "example": 35.5 }, "calculatedAverageVelocityWithoutWallEffects": { "type": "number", "example": 35.5 }, "calculatedAverageVelocityWithWallEffects": { "type": "number", "example": 35.5 }, "calculatedCalculatedWAF": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "numberOfTraversePoints": { "type": "number", "minimum": 12, "maximum": 99, "example": 0.0 }, "barometricPressure": { "type": "number", "example": 0.0 }, "staticStackPressure": { "type": "number", "example": 0.0 }, "percentCO2": { "type": "number", "example": 0.0 }, "percentO2": { "type": "number", "example": 0.0 }, "percentMoisture": { "type": "number", "example": 0.0 }, "dryMolecularWeight": { "type": "number", "example": 0.0 }, "wetMolecularWeight": { "type": "number", "example": 0.0 }, "averageVelocityWithoutWallEffects": { "type": "number", "maximum": 9999.99, "example": 0.0 }, "averageVelocityWithWallEffects": { "type": "number", "example": 0.0 }, "calculatedWAF": { "type": "number", "example": 35.5 }, "averageStackFlowRate": { "type": "number", "maximum": 9999999999, "example": 0.0 } }, "required": [ "rataTraverseData", "id", "rataRunId", "calculatedDryMolecularWeight", "calculatedWetMolecularWeight", "calculatedAverageVelocityWithoutWallEffects", "calculatedAverageVelocityWithWallEffects", "calculatedCalculatedWAF", "userId", "addDate", "updateDate", "numberOfTraversePoints", "barometricPressure", "staticStackPressure", "percentCO2", "percentO2", "percentMoisture", "wetMolecularWeight", "averageVelocityWithoutWallEffects", "averageStackFlowRate" ] }, "RataRunDTO": { "type": "object", "properties": { "flowRataRunData": { "type": "array", "items": { "$ref": "#/components/schemas/FlowRataRunDTO" }, "example": [ "string" ] }, "id": { "type": "string", "example": "12345" }, "rataSumId": { "type": "string", "example": "12345" }, "calculatedRataReferenceValue": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "runNumber": { "type": "number", "example": 0.0 }, "beginDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "beginHour": { "type": "number", "example": 0.0 }, "beginMinute": { "type": "number", "example": 0.0 }, "endDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "endHour": { "type": "number", "example": 0.0 }, "endMinute": { "type": "number", "example": 0.0 }, "cemValue": { "type": "number", "example": 0.0 }, "rataReferenceValue": { "type": "number", "example": 0.0 }, "grossUnitLoad": { "type": "number", "example": 0.0 }, "runStatusCode": { "type": "string", "example": "active" } }, "required": [ "flowRataRunData", "id", "rataSumId", "calculatedRataReferenceValue", "userId", "addDate", "updateDate", "runNumber", "beginDate", "beginHour", "beginMinute", "endDate", "endHour", "endMinute", "runStatusCode" ] }, "RataSummaryDTO": { "type": "object", "properties": { "operatingLevelCode": { "type": "string", "description": "operatingLevelCode. ADD TO PROPERTY METADATA", "example": "string" }, "averageGrossUnitLoad": { "type": "number", "description": "Average gross unit load (MWe or steam) or average velocity at operating level.", "example": 71 }, "referenceMethodCode": { "type": "string", "description": "referenceMethodCode. ADD TO PROPERTY METADATA", "example": "string" }, "meanCEMValue": { "type": "number", "description": "meanCEMValue. ADD TO PROPERTY METADATA", "example": 0.0 }, "meanRATAReferenceValue": { "type": "number", "minimum": 1, "description": "meanRATAReferenceValue. ADD TO PROPERTY METADATA", "example": 0.0 }, "meanDifference": { "type": "number", "description": "meanDifference. ADD TO PROPERTY METADATA", "example": 0.0 }, "standardDeviationDifference": { "type": "number", "description": "standardDeviationDifference. ADD TO PROPERTY METADATA", "example": 0.0 }, "confidenceCoefficient": { "type": "number", "description": "confidenceCoefficient. ADD TO PROPERTY METADATA", "example": 0.0 }, "tValue": { "type": "number", "description": "tValue. ADD TO PROPERTY METADATA", "example": 0.0 }, "apsIndicator": { "type": "number", "description": "Used to indicate if the alternative performance specification (APS) is used.", "example": 0 }, "apsCode": { "type": "string", "description": "Code used to identify the Alternate Performance Spec.", "example": "PS15" }, "relativeAccuracy": { "type": "number", "description": "relativeAccuracy. ADD TO PROPERTY METADATA", "example": 35.5 }, "biasAdjustmentFactor": { "type": "number", "description": "biasAdjustmentFactor. ADD TO PROPERTY METADATA", "example": 0.0 }, "co2OrO2ReferenceMethodCode": { "type": "string", "description": "co2OrO2ReferenceMethodCode. ADD TO PROPERTY METADATA", "example": "string" }, "stackDiameter": { "type": "number", "description": "stackDiameter. ADD TO PROPERTY METADATA", "example": 0.0 }, "stackArea": { "type": "number", "description": "stackArea. ADD TO PROPERTY METADATA", "example": 0.0 }, "numberOfTraversePoints": { "type": "number", "description": "numberOfTraversePoints. ADD TO PROPERTY METADATA", "example": 0.0 }, "calculatedWAF": { "type": "number", "description": "calculatedWAF. ADD TO PROPERTY METADATA", "example": 35.5 }, "defaultWAF": { "type": "number", "description": "defaultWAF. ADD TO PROPERTY METADATA", "example": 0.0 }, "rataRunData": { "type": "array", "items": { "$ref": "#/components/schemas/RataRunDTO" }, "example": [ "string" ] }, "id": { "type": "string", "example": "12345" }, "rataId": { "type": "string", "example": "12345" }, "calculatedAverageGrossUnitLoad": { "type": "number", "example": 35.5 }, "calculatedMeanCEMValue": { "type": "number", "example": 35.5 }, "calculatedMeanRATAReferenceValue": { "type": "number", "example": 35.5 }, "calculatedMeanDifference": { "type": "number", "example": 35.5 }, "calculatedStandardDeviationDifference": { "type": "number", "example": 35.5 }, "calculatedConfidenceCoefficient": { "type": "number", "example": 35.5 }, "calculatedTValue": { "type": "number", "example": 35.5 }, "calculatedApsIndicator": { "type": "number", "example": 35.5 }, "calculatedRelativeAccuracy": { "type": "number", "example": 35.5 }, "calculatedBiasAdjustmentFactor": { "type": "number", "example": 35.5 }, "calculatedStackArea": { "type": "number", "example": 35.5 }, "calculatedCalculatedWAF": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" } }, "required": [ "operatingLevelCode", "rataRunData", "id", "rataId", "calculatedAverageGrossUnitLoad", "calculatedMeanCEMValue", "calculatedMeanRATAReferenceValue", "calculatedMeanDifference", "calculatedStandardDeviationDifference", "calculatedConfidenceCoefficient", "calculatedTValue", "calculatedApsIndicator", "calculatedRelativeAccuracy", "calculatedBiasAdjustmentFactor", "calculatedStackArea", "calculatedCalculatedWAF", "userId", "addDate", "updateDate" ] }, "RataDTO": { "type": "object", "properties": { "numberOfLoadLevels": { "type": "number", "description": "NumberOfLoadLevels. ADD TO PROPERTY METADATA", "example": 0.0 }, "relativeAccuracy": { "type": "number", "description": "relativeAccuracy. ADD TO PROPERTY METADATA", "example": 35.5 }, "rataFrequencyCode": { "type": "string", "description": "rataFrequencyCode. ADD TO PROPERTY METADATA", "example": "string" }, "overallBiasAdjustmentFactor": { "type": "number", "description": "overallBiasAdjustmentFactor. ADD TO PROPERTY METADATA", "example": 0.0 }, "rataSummaryData": { "type": "array", "items": { "$ref": "#/components/schemas/RataSummaryDTO" }, "example": [ "string" ] }, "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "calculatedRataFrequencyCode": { "type": "string", "example": "string" }, "calculatedRelativeAccuracy": { "type": "number", "example": 35.5 }, "calculatedOverallBiasAdjustmentFactor": { "type": "number", "example": 35.5 }, "calculatedNumberOfLoadLevel": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" } }, "required": [ "rataSummaryData", "id", "testSumId", "calculatedRataFrequencyCode", "calculatedRelativeAccuracy", "calculatedOverallBiasAdjustmentFactor", "calculatedNumberOfLoadLevel", "userId", "addDate", "updateDate" ] }, "FlowToLoadReferenceDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "calculatedAverageGrossUnitLoad": { "type": "number", "example": 35.5 }, "calculatedAverageReferenceMethodFlow": { "type": "number", "example": 35.5 }, "calculatedReferenceFlowToLoadRatio": { "type": "number", "example": 35.5 }, "calculatedReferenceGrossHeatRate": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "rataTestNumber": { "type": "string", "maxLength": 18, "example": "string" }, "operatingLevelCode": { "type": "string", "example": "string" }, "averageGrossUnitLoad": { "type": "number", "example": 0.0 }, "averageReferenceMethodFlow": { "type": "number", "example": 0.0 }, "referenceFlowLoadRatio": { "type": "number", "example": 0.0 }, "averageHourlyHeatInputRate": { "type": "number", "example": 0.0 }, "referenceGrossHeatRate": { "type": "number", "example": 0.0 }, "calculatedSeparateReferenceIndicator": { "type": "number", "example": 35.5 } }, "required": [ "id", "testSumId", "calculatedAverageGrossUnitLoad", "calculatedAverageReferenceMethodFlow", "calculatedReferenceFlowToLoadRatio", "calculatedReferenceGrossHeatRate", "userId", "addDate", "updateDate", "operatingLevelCode" ] }, "FlowToLoadCheckDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "testBasisCode": { "type": "string", "example": "string" }, "biasAdjustedIndicator": { "type": "number", "example": 0.0 }, "averageAbsolutePercentDifference": { "type": "number", "example": 0.0 }, "numberOfHours": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedForFuel": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedRamping": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedBypass": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedPreRATA": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedTest": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedMainBypass": { "type": "number", "example": 0.0 }, "operatingLevelCode": { "type": "string", "example": "string" } }, "required": [ "id", "testSumId", "userId", "addDate", "updateDate" ] }, "CycleTimeInjectionDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "cycleTimeSumId": { "type": "string", "example": "12345" }, "calculatedInjectionCycleTime": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "gasLevelCode": { "type": "string", "example": "string" }, "calibrationGasValue": { "type": "number", "example": 0.0 }, "beginDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "beginHour": { "type": "number", "example": 0.0 }, "beginMinute": { "type": "number", "example": 0.0 }, "endDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "endHour": { "type": "number", "example": 0.0 }, "endMinute": { "type": "number", "example": 0.0 }, "injectionCycleTime": { "type": "number", "example": 0.0 }, "beginMonitorValue": { "type": "number", "example": 0.0 }, "endMonitorValue": { "type": "number", "example": 0.0 } }, "required": [ "id", "cycleTimeSumId", "calculatedInjectionCycleTime", "userId", "addDate", "updateDate", "gasLevelCode" ] }, "CycleTimeSummaryDTO": { "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" ] }, "OnlineOfflineCalibrationDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "onlineZeroInjectionDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "onlineZeroInjectionHour": { "type": "number", "example": 0.0 }, "onlineZeroCalibrationError": { "type": "number", "example": 0.0 }, "onlineZeroAPSIndicator": { "type": "number", "example": 0.0 }, "onlineZeroMeasuredValue": { "type": "number", "example": 0.0 }, "onlineZeroReferenceValue": { "type": "number", "example": 0.0 }, "onlineUpscaleCalibrationError": { "type": "number", "example": 0.0 }, "onlineUpscaleAPSIndicator": { "type": "number", "example": 0.0 }, "onlineUpscaleInjectionDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "onlineUpscaleInjectionHour": { "type": "number", "example": 0.0 }, "onlineUpscaleMeasuredValue": { "type": "number", "example": 0.0 }, "onlineUpscaleReferenceValue": { "type": "number", "example": 0.0 }, "offlineZeroCalibrationError": { "type": "number", "example": 0.0 }, "offlineZeroAPSIndicator": { "type": "number", "example": 0.0 }, "offlineZeroInjectionDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "offlineZeroInjectionHour": { "type": "number", "example": 0.0 }, "offlineZeroMeasuredValue": { "type": "number", "example": 0.0 }, "offlineZeroReferenceValue": { "type": "number", "example": 0.0 }, "offlineUpscaleCalibrationError": { "type": "number", "example": 0.0 }, "offlineUpscaleAPSIndicator": { "type": "number", "example": 0.0 }, "offlineUpscaleInjectionDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "offlineUpscaleInjectionHour": { "type": "number", "example": 0.0 }, "offlineUpscaleMeasuredValue": { "type": "number", "example": 0.0 }, "offlineUpscaleReferenceValue": { "type": "number", "example": 0.0 }, "upscaleGasLevelCode": { "type": "string", "example": "string" } }, "required": [ "id", "testSumId", "userId", "addDate", "updateDate" ] }, "FuelFlowmeterAccuracyDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "accuracyTestMethodCode": { "type": "string", "example": "string" }, "lowFuelAccuracy": { "type": "number", "example": 0.0 }, "midFuelAccuracy": { "type": "number", "example": 0.0 }, "highFuelAccuracy": { "type": "number", "example": 0.0 }, "reinstallationDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "reinstallationHour": { "type": "number", "example": 35.5 } }, "required": [ "id", "testSumId", "userId", "addDate", "updateDate" ] }, "TransmitterTransducerAccuracyDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "lowLevelAccuracy": { "type": "number", "example": 0.0 }, "lowLevelAccuracySpecCode": { "type": "string", "example": "string" }, "midLevelAccuracy": { "type": "number", "example": 0.0 }, "midLevelAccuracySpecCode": { "type": "string", "example": "12345" }, "highLevelAccuracy": { "type": "number", "example": 0.0 }, "highLevelAccuracySpecCode": { "type": "string", "example": "string" } }, "required": [ "id", "testSumId", "userId", "addDate", "updateDate" ] }, "FuelFlowToLoadBaselineDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "accuracyTestNumber": { "type": "string", "maxLength": 18, "example": "string" }, "peiTestNumber": { "type": "string", "maxLength": 18, "example": "string" }, "averageFuelFlowRate": { "type": "number", "example": 0.0 }, "averageLoad": { "type": "number", "example": 0.0 }, "baselineFuelFlowToLoadRatio": { "type": "number", "example": 0.0 }, "fuelFlowToLoadUnitsOfMeasureCode": { "type": "string", "example": "string" }, "averageHourlyHeatInputRate": { "type": "number", "example": 0.0 }, "baselineGHR": { "type": "number", "example": 0.0 }, "ghrUnitsOfMeasureCode": { "type": "string", "example": "string" }, "numberOfHoursExcludedCofiring": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedRamping": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedLowRange": { "type": "number", "example": 0.0 } }, "required": [ "id", "testSumId", "userId", "addDate", "updateDate" ] }, "FuelFlowToLoadTestDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "testBasisCode": { "type": "string", "example": "string" }, "averageDifference": { "type": "number", "example": 0.0 }, "numberOfHoursUsed": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedCofiring": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedRamping": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedLowRange": { "type": "number", "example": 0.0 } }, "required": [ "id", "testSumId", "userId", "addDate", "updateDate" ] }, "AppEHeatInputFromOilDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "appECorrTestRunId": { "type": "string", "example": "12345" }, "calculatedOilMass": { "type": "number", "example": 35.5 }, "calculatedOilHeatInput": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "monitoringSystemId": { "type": "string", "example": "12345" }, "oilMass": { "type": "number", "example": 0.0 }, "oilGCV": { "type": "number", "example": 0.0 }, "oilGCVUnitsOfMeasureCode": { "type": "string", "example": "string" }, "oilHeatInput": { "type": "number", "example": 0.0 }, "oilVolume": { "type": "number", "example": 0.0 }, "oilVolumeUnitsOfMeasureCode": { "type": "string", "example": "string" }, "oilDensity": { "type": "number", "example": 0.0 }, "oilDensityUnitsOfMeasureCode": { "type": "string", "example": "string" } }, "required": [ "id", "appECorrTestRunId", "calculatedOilMass", "calculatedOilHeatInput", "userId", "addDate", "updateDate", "monitoringSystemId" ] }, "AppEHeatInputFromGasDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "appECorrTestRunId": { "type": "string", "example": "12345" }, "calculatedGasHeatInput": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "monitoringSystemId": { "type": "string", "example": "12345" }, "gasGCV": { "type": "number", "example": 0.0 }, "gasVolume": { "type": "number", "example": 0.0 }, "gasHeatInput": { "type": "number", "example": 0.0 } }, "required": [ "id", "appECorrTestRunId", "calculatedGasHeatInput", "userId", "addDate", "updateDate", "monitoringSystemId" ] }, "AppECorrelationTestRunDTO": { "type": "object", "properties": { "appendixEHeatInputFromOilData": { "type": "array", "items": { "$ref": "#/components/schemas/AppEHeatInputFromOilDTO" }, "example": [ "string" ] }, "appendixEHeatInputFromGasData": { "type": "array", "items": { "$ref": "#/components/schemas/AppEHeatInputFromGasDTO" }, "example": [ "string" ] }, "id": { "type": "string", "example": "12345" }, "appECorrTestSumId": { "type": "string", "example": "12345" }, "calculatedHourlyHeatInputRate": { "type": "number", "example": 35.5 }, "calculatedTotalHeatInput": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "runNumber": { "type": "number", "example": 0.0 }, "referenceValue": { "type": "number", "example": 0.0 }, "hourlyHeatInputRate": { "type": "number", "example": 0.0 }, "totalHeatInput": { "type": "number", "example": 0.0 }, "responseTime": { "type": "number", "example": 0.0 }, "beginDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "beginHour": { "type": "number", "example": 0.0 }, "beginMinute": { "type": "number", "example": 0.0 }, "endDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "endHour": { "type": "number", "example": 0.0 }, "endMinute": { "type": "number", "example": 0.0 } }, "required": [ "appendixEHeatInputFromOilData", "appendixEHeatInputFromGasData", "id", "appECorrTestSumId", "calculatedHourlyHeatInputRate", "calculatedTotalHeatInput", "userId", "addDate", "updateDate", "runNumber", "beginDate", "beginHour", "beginMinute", "endDate", "endHour", "endMinute" ] }, "AppECorrelationTestSummaryDTO": { "type": "object", "properties": { "appendixECorrelationTestRunData": { "type": "array", "items": { "$ref": "#/components/schemas/AppECorrelationTestRunDTO" }, "example": [ "string" ] }, "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "calculatedMeanReferenceValue": { "type": "number", "example": 35.5 }, "calculatedAverageHourlyHeatInputRate": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "operatingLevelForRun": { "type": "number", "example": 0.0 }, "meanReferenceValue": { "type": "number", "example": 0.0 }, "averageHourlyHeatInputRate": { "type": "number", "example": 0.0 }, "fFactor": { "type": "number", "example": 0.0 } }, "required": [ "appendixECorrelationTestRunData", "id", "testSumId", "calculatedMeanReferenceValue", "calculatedAverageHourlyHeatInputRate", "userId", "addDate", "updateDate", "operatingLevelForRun" ] }, "UnitDefaultTestRunDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "unitDefaultTestSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "operatingLevelForRun": { "type": "number", "example": 0.0 }, "runNumber": { "type": "number", "example": 0.0 }, "beginDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "beginHour": { "type": "number", "example": 0.0 }, "beginMinute": { "type": "number", "example": 0.0 }, "endDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "endHour": { "type": "number", "example": 0.0 }, "endMinute": { "type": "number", "example": 0.0 }, "responseTime": { "type": "number", "example": 0.0 }, "referenceValue": { "type": "number", "example": 0.0 }, "runUsedIndicator": { "type": "number", "example": 0.0 } }, "required": [ "id", "unitDefaultTestSumId", "userId", "addDate", "updateDate", "operatingLevelForRun", "runNumber" ] }, "UnitDefaultTestDTO": { "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" ] }, "HgInjectionDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "hgTestSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "injectionDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "injectionHour": { "type": "number", "example": 0.0 }, "injectionMinute": { "type": "number", "example": 0.0 }, "measuredValue": { "type": "number", "example": 0.0 }, "referenceValue": { "type": "number", "example": 0.0 } }, "required": [ "id", "hgTestSumId", "userId", "addDate", "updateDate", "injectionDate", "injectionHour", "injectionMinute" ] }, "HgSummaryDTO": { "type": "object", "properties": { "hgInjectionData": { "type": "array", "items": { "$ref": "#/components/schemas/HgInjectionDTO" }, "example": [ "string" ] }, "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "calculatedMeanMeasuredValue": { "type": "number", "example": 35.5 }, "calculatedMeanReferenceValue": { "type": "number", "example": 35.5 }, "calculatedPercentError": { "type": "number", "example": 35.5 }, "calculatedAPSIndicator": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "gasLevelCode": { "type": "string", "example": "string" }, "meanMeasuredValue": { "type": "number", "example": 0.0 }, "meanReferenceValue": { "type": "number", "example": 0.0 }, "percentError": { "type": "number", "example": 0.0 }, "apsIndicator": { "type": "number", "example": 0.0 } }, "required": [ "hgInjectionData", "id", "testSumId", "calculatedMeanMeasuredValue", "calculatedMeanReferenceValue", "calculatedPercentError", "calculatedAPSIndicator", "userId", "addDate", "updateDate", "gasLevelCode" ] }, "TestQualificationDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "testClaimCode": { "type": "string", "example": "string" }, "beginDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "endDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "highLoadPercentage": { "type": "number", "example": 0.0 }, "midLoadPercentage": { "type": "number", "example": 0.0 }, "lowLoadPercentage": { "type": "number", "example": 0.0 } }, "required": [ "id", "testSumId", "userId", "addDate", "updateDate", "testClaimCode" ] }, "ProtocolGasDTO": { "type": "object", "properties": { "gasTypeCode": { "type": "string", "description": "gasTypeCode. ADD TO PROPERTY METADATA", "example": "string" }, "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "gasLevelCode": { "type": "string", "example": "string" }, "cylinderIdentifier": { "type": "string", "maxLength": 25, "example": "12345" }, "vendorIdentifier": { "type": "string", "example": "12345" }, "expirationDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" } }, "required": [ "gasTypeCode", "id", "testSumId", "userId", "addDate", "updateDate", "gasLevelCode" ] }, "AirEmissionTestingDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "qiLastName": { "type": "string", "maxLength": 25, "example": "EPA Facility" }, "qiFirstName": { "type": "string", "maxLength": 25, "example": "EPA Facility" }, "qiMiddleInitial": { "type": "string", "maxLength": 1, "example": "12345" }, "aetbName": { "type": "string", "maxLength": 50, "example": "EPA Facility" }, "aetbPhoneNumber": { "type": "string", "maxLength": 18, "example": "string" }, "aetbEmail": { "type": "string", "maxLength": 70, "format": "email", "example": "analyst@example.com" }, "examDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "providerName": { "type": "string", "maxLength": 50, "example": "EPA Facility" }, "providerEmail": { "type": "string", "maxLength": 70, "format": "email", "example": "analyst@example.com" } }, "required": [ "id", "testSumId", "userId", "addDate", "updateDate", "qiLastName", "qiFirstName", "aetbName", "aetbPhoneNumber", "aetbEmail", "examDate", "providerName", "providerEmail" ] }, "TestSummaryDTO": { "type": "object", "properties": { "stackPipeId": { "type": "string", "description": "Stack Pipe Identifier. ADD TO PROPERTY METADATA", "example": "12345" }, "unitId": { "type": "string", "description": "Unique identifier for each unit at a facility.", "example": "12345" }, "testTypeCode": { "type": "string", "description": "Test Type Code. ADD TO PROPERTY METADATA", "example": "string" }, "monitoringSystemId": { "type": "string", "description": "Unique identifier of a monitoring system record.", "example": "12345" }, "componentId": { "type": "string", "description": "The three digit code assigned by the source to identify the component.", "example": "12345" }, "spanScaleCode": { "type": "string", "description": "Code used to identify the span scale.", "example": "string" }, "testNumber": { "type": "string", "maxLength": 18, "description": "Test Number. ADD TO PROPERTY METADATA", "example": "string" }, "testReasonCode": { "type": "string", "description": "Test Reason Code. ADD TO PROPERTY METADATA", "example": "string" }, "testDescription": { "type": "string", "maxLength": 100, "description": "Test Description. ADD TO PROPERTY METADATA", "example": "string" }, "testResultCode": { "type": "string", "description": "Test Result Code. ADD TO PROPERTY METADATA", "example": "string" }, "beginDate": { "format": "date-time", "type": "string", "description": "Date in which information became effective or activity started.", "example": "2020-07-25" }, "beginHour": { "type": "number", "description": "Begin Hour. ADD TO PROPERTY METADATA", "example": 0.0 }, "beginMinute": { "type": "number", "description": "Begin Minute. ADD TO PROPERTY METADATA", "example": 0.0 }, "endDate": { "format": "date-time", "type": "string", "description": "End date for a given period of a unit's emissions.", "example": "2024-01-15T12:00:00Z" }, "endHour": { "type": "number", "description": "End Hour. ADD TO PROPERTY METADATA", "example": 0.0 }, "endMinute": { "type": "number", "description": "End Minute. ADD TO PROPERTY METADATA", "example": 0.0 }, "gracePeriodIndicator": { "type": "number", "description": "Grace Period Indicator. ADD TO PROPERTY METADATA", "example": 0.0 }, "year": { "type": "number", "description": "The calendar year during which activity occurred.", "example": 2024 }, "quarter": { "type": "number", "description": "Calendar quarter in which activity occurred.", "example": 0.0 }, "testComment": { "type": "string", "maxLength": 1000, "description": "Test Comment. ADD TO PROPERTY METADATA", "example": "string" }, "injectionProtocolCode": { "type": "string", "description": "Injection Protocol Code. ADD TO PROPERTY METADATA", "example": "string" }, "calibrationInjectionData": { "type": "array", "items": { "$ref": "#/components/schemas/CalibrationInjectionDTO" }, "example": [ "string" ] }, "linearitySummaryData": { "type": "array", "items": { "$ref": "#/components/schemas/LinearitySummaryDTO" }, "example": [ "string" ] }, "rataData": { "type": "array", "items": { "$ref": "#/components/schemas/RataDTO" }, "example": [ "string" ] }, "flowToLoadReferenceData": { "type": "array", "items": { "$ref": "#/components/schemas/FlowToLoadReferenceDTO" }, "example": [ "string" ] }, "flowToLoadCheckData": { "type": "array", "items": { "$ref": "#/components/schemas/FlowToLoadCheckDTO" }, "example": [ "string" ] }, "cycleTimeSummaryData": { "type": "array", "items": { "$ref": "#/components/schemas/CycleTimeSummaryDTO" }, "example": [ "string" ] }, "onlineOfflineCalibrationData": { "type": "array", "items": { "$ref": "#/components/schemas/OnlineOfflineCalibrationDTO" }, "example": [ "string" ] }, "fuelFlowmeterAccuracyData": { "type": "array", "items": { "$ref": "#/components/schemas/FuelFlowmeterAccuracyDTO" }, "example": [ "string" ] }, "transmitterTransducerData": { "type": "array", "items": { "$ref": "#/components/schemas/TransmitterTransducerAccuracyDTO" }, "example": [ "string" ] }, "fuelFlowToLoadBaselineData": { "type": "array", "items": { "$ref": "#/components/schemas/FuelFlowToLoadBaselineDTO" }, "example": [ "string" ] }, "fuelFlowToLoadTestData": { "type": "array", "items": { "$ref": "#/components/schemas/FuelFlowToLoadTestDTO" }, "example": [ "string" ] }, "appendixECorrelationTestSummaryData": { "type": "array", "items": { "$ref": "#/components/schemas/AppECorrelationTestSummaryDTO" }, "example": [ "string" ] }, "unitDefaultTestData": { "type": "array", "items": { "$ref": "#/components/schemas/UnitDefaultTestDTO" }, "example": [ "string" ] }, "hgSummaryData": { "type": "array", "items": { "$ref": "#/components/schemas/HgSummaryDTO" }, "example": [ "string" ] }, "testQualificationData": { "type": "array", "items": { "$ref": "#/components/schemas/TestQualificationDTO" }, "example": [ "string" ] }, "protocolGasData": { "type": "array", "items": { "$ref": "#/components/schemas/ProtocolGasDTO" }, "example": [ "string" ] }, "airEmissionTestingData": { "type": "array", "items": { "$ref": "#/components/schemas/AirEmissionTestingDTO" }, "example": [ "string" ] }, "id": { "type": "string", "example": "12345" }, "locationId": { "type": "string", "example": "12345" }, "calculatedGracePeriodIndicator": { "type": "number", "example": 35.5 }, "calculatedTestResultCode": { "type": "string", "example": "string" }, "reportPeriodId": { "type": "number", "example": 0.0 }, "calculatedSpanValue": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "evalStatusCode": { "type": "string", "example": "active" }, "evalStatusCodeDescription": { "type": "string", "example": "active" }, "submissionAvailabilityCode": { "type": "string", "example": "string" }, "submissionAvailabilityCodeDescription": { "type": "string", "example": "string" } }, "required": [ "stackPipeId", "unitId", "testTypeCode", "componentId", "testNumber", "calibrationInjectionData", "linearitySummaryData", "rataData", "flowToLoadReferenceData", "flowToLoadCheckData", "cycleTimeSummaryData", "onlineOfflineCalibrationData", "fuelFlowmeterAccuracyData", "transmitterTransducerData", "fuelFlowToLoadBaselineData", "fuelFlowToLoadTestData", "appendixECorrelationTestSummaryData", "unitDefaultTestData", "hgSummaryData", "testQualificationData", "protocolGasData", "airEmissionTestingData", "id", "locationId", "calculatedGracePeriodIndicator", "calculatedTestResultCode", "reportPeriodId", "calculatedSpanValue", "userId", "addDate", "updateDate", "evalStatusCode", "evalStatusCodeDescription", "submissionAvailabilityCode", "submissionAvailabilityCodeDescription" ] }, "QACertificationEventDTO": { "type": "object", "properties": { "stackPipeId": { "type": "string", "description": "Stack Pipe Identifier. ADD TO PROPERTY METADATA", "example": "12345" }, "unitId": { "type": "string", "description": "Unique identifier for each unit at a facility.", "example": "12345" }, "monitoringSystemId": { "type": "string", "description": "Unique identifier of a monitoring system record.", "example": "12345" }, "componentId": { "type": "string", "description": "The three digit code assigned by the source to identify the component.", "example": "12345" }, "id": { "type": "string", "example": "12345" }, "locationId": { "type": "string", "example": "12345" }, "lastUpdated": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "updatedStatusFlag": { "type": "string", "example": "active" }, "needsEvalFlag": { "type": "string", "example": "string" }, "checkSessionId": { "type": "string", "example": "12345" }, "submissionId": { "type": "number", "example": 0.0 }, "submissionAvailabilityCode": { "type": "string", "example": "string" }, "pendingStatusCode": { "type": "string", "example": "active" }, "evalStatusCode": { "type": "string", "example": "active" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "isSubmitted": { "type": "boolean", "example": true }, "isSavedNotSubmitted": { "type": "boolean", "example": true }, "certificationEventCode": { "type": "string", "example": "string" }, "certificationEventDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "certificationEventHour": { "type": "number", "example": 0.0 }, "requiredTestCode": { "type": "string", "example": "string" }, "conditionalBeginDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "conditionalBeginHour": { "type": "number", "example": 0.0 }, "completionTestDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "completionTestHour": { "type": "number", "example": 0.0 }, "version": { "type": "string", "example": "string" } }, "required": [ "stackPipeId", "unitId", "id", "locationId", "lastUpdated", "updatedStatusFlag", "needsEvalFlag", "checkSessionId", "submissionId", "submissionAvailabilityCode", "pendingStatusCode", "evalStatusCode", "userId", "addDate", "updateDate", "certificationEventCode", "certificationEventDate" ] }, "TestExtensionExemptionDTO": { "type": "object", "properties": { "stackPipeId": { "type": "string", "description": "Stack Pipe Identifier. ADD TO PROPERTY METADATA", "example": "12345" }, "unitId": { "type": "string", "description": "Unique identifier for each unit at a facility.", "example": "12345" }, "year": { "type": "number", "description": "The calendar year during which activity occurred.", "example": 2024 }, "quarter": { "type": "number", "description": "Calendar quarter in which activity occurred.", "example": 0.0 }, "monitoringSystemId": { "type": "string", "description": "Unique identifier of a monitoring system record.", "example": "12345" }, "componentId": { "type": "string", "description": "The three digit code assigned by the source to identify the component.", "example": "12345" }, "spanScaleCode": { "type": "string", "description": "Code used to identify the span scale.", "example": "string" }, "id": { "type": "string", "example": "12345" }, "locationId": { "type": "string", "example": "12345" }, "reportPeriodId": { "type": "number", "example": 0.0 }, "checkSessionId": { "type": "string", "example": "12345" }, "submissionId": { "type": "string", "example": "12345" }, "submissionAvailabilityCode": { "type": "string", "example": "string" }, "pendingStatusCode": { "type": "string", "example": "active" }, "evalStatusCode": { "type": "string", "example": "active" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "isSubmitted": { "type": "boolean", "example": true }, "isSavedNotSubmitted": { "type": "boolean", "example": true }, "hoursUsed": { "type": "number", "example": 0.0 }, "fuelCode": { "type": "string", "example": "string" }, "extensionOrExemptionCode": { "type": "string", "example": "string" } }, "required": [ "stackPipeId", "unitId", "year", "quarter", "id", "locationId", "reportPeriodId", "checkSessionId", "submissionId", "submissionAvailabilityCode", "pendingStatusCode", "evalStatusCode", "userId", "addDate", "updateDate", "extensionOrExemptionCode" ] }, "QACertificationDTO": { "type": "object", "properties": { "orisCode": { "type": "number", "description": "The Facility ID code assigned by the Department of Energy's Energy Information Administration. The Energy Information Administration Plant ID code is also referred to as the \"ORIS code\", \"ORISPL code\", \"Facility ID\", or \"Facility code\", among other names. If a Plant ID code has not been assigned by the Department of Energy's Energy Information Administration, then plant code means a code beginning with \"88\" assigned by the EPA's Clean Air Markets Division for electronic reporting.", "example": 0.0 }, "testSummaryData": { "type": "array", "items": { "$ref": "#/components/schemas/TestSummaryDTO" }, "example": [ "string" ] }, "certificationEventData": { "type": "array", "items": { "$ref": "#/components/schemas/QACertificationEventDTO" }, "example": [ "string" ] }, "testExtensionExemptionData": { "type": "array", "items": { "$ref": "#/components/schemas/TestExtensionExemptionDTO" }, "example": [ "string" ] } }, "required": [ "orisCode", "testSummaryData", "certificationEventData", "testExtensionExemptionData" ] }, "TestSummaryRecordDTO": { "type": "object", "properties": { "stackPipeId": { "type": "string", "description": "Stack Pipe Identifier. ADD TO PROPERTY METADATA", "example": "12345" }, "unitId": { "type": "string", "description": "Unique identifier for each unit at a facility.", "example": "12345" }, "testTypeCode": { "type": "string", "description": "Test Type Code. ADD TO PROPERTY METADATA", "example": "string" }, "monitoringSystemId": { "type": "string", "description": "Unique identifier of a monitoring system record.", "example": "12345" }, "componentId": { "type": "string", "description": "The three digit code assigned by the source to identify the component.", "example": "12345" }, "spanScaleCode": { "type": "string", "description": "Code used to identify the span scale.", "example": "string" }, "testNumber": { "type": "string", "maxLength": 18, "description": "Test Number. ADD TO PROPERTY METADATA", "example": "string" }, "testReasonCode": { "type": "string", "description": "Test Reason Code. ADD TO PROPERTY METADATA", "example": "string" }, "testDescription": { "type": "string", "maxLength": 100, "description": "Test Description. ADD TO PROPERTY METADATA", "example": "string" }, "testResultCode": { "type": "string", "description": "Test Result Code. ADD TO PROPERTY METADATA", "example": "string" }, "beginDate": { "format": "date-time", "type": "string", "description": "Date in which information became effective or activity started.", "example": "2020-07-25" }, "beginHour": { "type": "number", "description": "Begin Hour. ADD TO PROPERTY METADATA", "example": 0.0 }, "beginMinute": { "type": "number", "description": "Begin Minute. ADD TO PROPERTY METADATA", "example": 0.0 }, "endDate": { "format": "date-time", "type": "string", "description": "End date for a given period of a unit's emissions.", "example": "2024-01-15T12:00:00Z" }, "endHour": { "type": "number", "description": "End Hour. ADD TO PROPERTY METADATA", "example": 0.0 }, "endMinute": { "type": "number", "description": "End Minute. ADD TO PROPERTY METADATA", "example": 0.0 }, "gracePeriodIndicator": { "type": "number", "description": "Grace Period Indicator. ADD TO PROPERTY METADATA", "example": 0.0 }, "year": { "type": "number", "description": "The calendar year during which activity occurred.", "example": 2024 }, "quarter": { "type": "number", "description": "Calendar quarter in which activity occurred.", "example": 0.0 }, "testComment": { "type": "string", "maxLength": 1000, "description": "Test Comment. ADD TO PROPERTY METADATA", "example": "string" }, "injectionProtocolCode": { "type": "string", "description": "Injection Protocol Code. ADD TO PROPERTY METADATA", "example": "string" }, "id": { "type": "string", "example": "12345" }, "locationId": { "type": "string", "example": "12345" }, "calculatedGracePeriodIndicator": { "type": "number", "example": 35.5 }, "calculatedTestResultCode": { "type": "string", "example": "string" }, "reportPeriodId": { "type": "number", "example": 0.0 }, "calculatedSpanValue": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "evalStatusCode": { "type": "string", "example": "active" }, "evalStatusCodeDescription": { "type": "string", "example": "active" }, "submissionAvailabilityCode": { "type": "string", "example": "string" }, "submissionAvailabilityCodeDescription": { "type": "string", "example": "string" } }, "required": [ "stackPipeId", "unitId", "testTypeCode", "componentId", "testNumber", "id", "locationId", "calculatedGracePeriodIndicator", "calculatedTestResultCode", "reportPeriodId", "calculatedSpanValue", "userId", "addDate", "updateDate", "evalStatusCode", "evalStatusCodeDescription", "submissionAvailabilityCode", "submissionAvailabilityCodeDescription" ] }, "LinearitySummaryRecordDTO": { "type": "object", "properties": { "gasLevelCode": { "type": "string", "description": "gasLevelCode. ADD TO PROPERTY METADATA", "example": "string" }, "meanMeasuredValue": { "type": "number", "description": "meanMeasuredValue. ADD TO PROPERTY METADATA", "example": 0.0 }, "meanReferenceValue": { "type": "number", "description": "meanReferenceValue. ADD TO PROPERTY METADATA", "example": 0.0 }, "percentError": { "type": "number", "description": "percentError. ADD TO PROPERTY METADATA", "example": 0.0 }, "apsIndicator": { "type": "number", "description": "Used to indicate if the alternative performance specification (APS) is used.", "example": 0 }, "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "calculatedMeanReferenceValue": { "type": "number", "example": 35.5 }, "calculatedMeanMeasuredValue": { "type": "number", "example": 35.5 }, "calculatedPercentError": { "type": "number", "example": 35.5 }, "calculatedAPSIndicator": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" } }, "required": [ "gasLevelCode", "id", "testSumId", "calculatedMeanReferenceValue", "calculatedMeanMeasuredValue", "calculatedPercentError", "calculatedAPSIndicator", "userId", "addDate", "updateDate" ] }, "LinearityInjectionRecordDTO": { "type": "object", "properties": { "injectionDate": { "format": "date-time", "type": "string", "description": "injectionDate. ADD TO PROPERTY METADATA", "example": "2024-01-15T12:00:00Z" }, "injectionHour": { "type": "number", "description": "injectionHour. ADD TO PROPERTY METADATA", "example": 0.0 }, "injectionMinute": { "type": "number", "description": "injectionMinute. ADD TO PROPERTY METADATA", "example": 0.0 }, "measuredValue": { "type": "number", "description": "measuredValue. ADD TO PROPERTY METADATA", "example": 0.0 }, "referenceValue": { "type": "number", "description": "referenceValue. ADD TO PROPERTY METADATA", "example": 0.0 }, "id": { "type": "string", "example": "12345" }, "linSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" } }, "required": [ "injectionDate", "injectionMinute", "id", "linSumId", "userId", "addDate", "updateDate" ] }, "ProtocolGasRecordDTO": { "type": "object", "properties": { "gasTypeCode": { "type": "string", "description": "gasTypeCode. ADD TO PROPERTY METADATA", "example": "string" }, "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "gasLevelCode": { "type": "string", "example": "string" }, "cylinderIdentifier": { "type": "string", "maxLength": 25, "example": "12345" }, "vendorIdentifier": { "type": "string", "example": "12345" }, "expirationDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" } }, "required": [ "gasTypeCode", "id", "testSumId", "userId", "addDate", "updateDate", "gasLevelCode" ] }, "RataRecordDTO": { "type": "object", "properties": { "numberOfLoadLevels": { "type": "number", "description": "NumberOfLoadLevels. ADD TO PROPERTY METADATA", "example": 0.0 }, "relativeAccuracy": { "type": "number", "description": "relativeAccuracy. ADD TO PROPERTY METADATA", "example": 35.5 }, "rataFrequencyCode": { "type": "string", "description": "rataFrequencyCode. ADD TO PROPERTY METADATA", "example": "string" }, "overallBiasAdjustmentFactor": { "type": "number", "description": "overallBiasAdjustmentFactor. ADD TO PROPERTY METADATA", "example": 0.0 }, "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "calculatedRataFrequencyCode": { "type": "string", "example": "string" }, "calculatedRelativeAccuracy": { "type": "number", "example": 35.5 }, "calculatedOverallBiasAdjustmentFactor": { "type": "number", "example": 35.5 }, "calculatedNumberOfLoadLevel": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" } }, "required": [ "id", "testSumId", "calculatedRataFrequencyCode", "calculatedRelativeAccuracy", "calculatedOverallBiasAdjustmentFactor", "calculatedNumberOfLoadLevel", "userId", "addDate", "updateDate" ] }, "TestQualificationRecordDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "testClaimCode": { "type": "string", "example": "string" }, "beginDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "endDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "highLoadPercentage": { "type": "number", "example": 0.0 }, "midLoadPercentage": { "type": "number", "example": 0.0 }, "lowLoadPercentage": { "type": "number", "example": 0.0 } }, "required": [ "id", "testSumId", "userId", "addDate", "updateDate", "testClaimCode" ] }, "FuelFlowmeterAccuracyRecordDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "accuracyTestMethodCode": { "type": "string", "example": "string" }, "lowFuelAccuracy": { "type": "number", "example": 0.0 }, "midFuelAccuracy": { "type": "number", "example": 0.0 }, "highFuelAccuracy": { "type": "number", "example": 0.0 }, "reinstallationDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "reinstallationHour": { "type": "number", "example": 35.5 } }, "required": [ "id", "testSumId", "userId", "addDate", "updateDate" ] }, "FlowToLoadCheckRecordDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "testBasisCode": { "type": "string", "example": "string" }, "biasAdjustedIndicator": { "type": "number", "example": 0.0 }, "averageAbsolutePercentDifference": { "type": "number", "example": 0.0 }, "numberOfHours": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedForFuel": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedRamping": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedBypass": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedPreRATA": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedTest": { "type": "number", "example": 0.0 }, "numberOfHoursExcludedMainBypass": { "type": "number", "example": 0.0 }, "operatingLevelCode": { "type": "string", "example": "string" } }, "required": [ "id", "testSumId", "userId", "addDate", "updateDate" ] }, "FlowToLoadReferenceRecordDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "calculatedAverageGrossUnitLoad": { "type": "number", "example": 35.5 }, "calculatedAverageReferenceMethodFlow": { "type": "number", "example": 35.5 }, "calculatedReferenceFlowToLoadRatio": { "type": "number", "example": 35.5 }, "calculatedReferenceGrossHeatRate": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "rataTestNumber": { "type": "string", "maxLength": 18, "example": "string" }, "operatingLevelCode": { "type": "string", "example": "string" }, "averageGrossUnitLoad": { "type": "number", "example": 0.0 }, "averageReferenceMethodFlow": { "type": "number", "example": 0.0 }, "referenceFlowLoadRatio": { "type": "number", "example": 0.0 }, "averageHourlyHeatInputRate": { "type": "number", "example": 0.0 }, "referenceGrossHeatRate": { "type": "number", "example": 0.0 }, "calculatedSeparateReferenceIndicator": { "type": "number", "example": 35.5 } }, "required": [ "id", "testSumId", "calculatedAverageGrossUnitLoad", "calculatedAverageReferenceMethodFlow", "calculatedReferenceFlowToLoadRatio", "calculatedReferenceGrossHeatRate", "userId", "addDate", "updateDate", "operatingLevelCode" ] }, "AppECorrelationTestSummaryRecordDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "calculatedMeanReferenceValue": { "type": "number", "example": 35.5 }, "calculatedAverageHourlyHeatInputRate": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "operatingLevelForRun": { "type": "number", "example": 0.0 }, "meanReferenceValue": { "type": "number", "example": 0.0 }, "averageHourlyHeatInputRate": { "type": "number", "example": 0.0 }, "fFactor": { "type": "number", "example": 0.0 } }, "required": [ "id", "testSumId", "calculatedMeanReferenceValue", "calculatedAverageHourlyHeatInputRate", "userId", "addDate", "updateDate", "operatingLevelForRun" ] }, "AppECorrelationTestRunBaseDTO": { "type": "object", "properties": { "runNumber": { "type": "number", "example": 0.0 }, "referenceValue": { "type": "number", "example": 0.0 }, "hourlyHeatInputRate": { "type": "number", "example": 0.0 }, "totalHeatInput": { "type": "number", "example": 0.0 }, "responseTime": { "type": "number", "example": 0.0 }, "beginDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "beginHour": { "type": "number", "example": 0.0 }, "beginMinute": { "type": "number", "example": 0.0 }, "endDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "endHour": { "type": "number", "example": 0.0 }, "endMinute": { "type": "number", "example": 0.0 } }, "required": [ "runNumber", "beginDate", "beginHour", "beginMinute", "endDate", "endHour", "endMinute" ] }, "AppECorrelationTestRunRecordDTO": { "type": "object", "properties": { "runNumber": { "type": "number", "example": 0.0 }, "referenceValue": { "type": "number", "example": 0.0 }, "hourlyHeatInputRate": { "type": "number", "example": 0.0 }, "totalHeatInput": { "type": "number", "example": 0.0 }, "responseTime": { "type": "number", "example": 0.0 }, "beginDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "beginHour": { "type": "number", "example": 0.0 }, "beginMinute": { "type": "number", "example": 0.0 }, "endDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "endHour": { "type": "number", "example": 0.0 }, "endMinute": { "type": "number", "example": 0.0 }, "id": { "type": "string", "example": "12345" }, "appECorrTestSumId": { "type": "string", "example": "12345" }, "calculatedHourlyHeatInputRate": { "type": "number", "example": 35.5 }, "calculatedTotalHeatInput": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" } }, "required": [ "runNumber", "beginDate", "beginHour", "beginMinute", "endDate", "endHour", "endMinute", "id", "appECorrTestSumId", "calculatedHourlyHeatInputRate", "calculatedTotalHeatInput", "userId", "addDate", "updateDate" ] }, "AppEHeatInputFromOilRecordDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "appECorrTestRunId": { "type": "string", "example": "12345" }, "calculatedOilMass": { "type": "number", "example": 35.5 }, "calculatedOilHeatInput": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "monitoringSystemId": { "type": "string", "example": "12345" }, "oilMass": { "type": "number", "example": 0.0 }, "oilGCV": { "type": "number", "example": 0.0 }, "oilGCVUnitsOfMeasureCode": { "type": "string", "example": "string" }, "oilHeatInput": { "type": "number", "example": 0.0 }, "oilVolume": { "type": "number", "example": 0.0 }, "oilVolumeUnitsOfMeasureCode": { "type": "string", "example": "string" }, "oilDensity": { "type": "number", "example": 0.0 }, "oilDensityUnitsOfMeasureCode": { "type": "string", "example": "string" } }, "required": [ "id", "appECorrTestRunId", "calculatedOilMass", "calculatedOilHeatInput", "userId", "addDate", "updateDate", "monitoringSystemId" ] }, "AppEHeatInputFromGasRecordDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "appECorrTestRunId": { "type": "string", "example": "12345" }, "calculatedGasHeatInput": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "monitoringSystemId": { "type": "string", "example": "12345" }, "gasGCV": { "type": "number", "example": 0.0 }, "gasVolume": { "type": "number", "example": 0.0 }, "gasHeatInput": { "type": "number", "example": 0.0 } }, "required": [ "id", "appECorrTestRunId", "calculatedGasHeatInput", "userId", "addDate", "updateDate", "monitoringSystemId" ] }, "OnlineOfflineCalibrationRecordDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "testSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "onlineZeroInjectionDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "onlineZeroInjectionHour": { "type": "number", "example": 0.0 }, "onlineZeroCalibrationError": { "type": "number", "example": 0.0 }, "onlineZeroAPSIndicator": { "type": "number", "example": 0.0 }, "onlineZeroMeasuredValue": { "type": "number", "example": 0.0 }, "onlineZeroReferenceValue": { "type": "number", "example": 0.0 }, "onlineUpscaleCalibrationError": { "type": "number", "example": 0.0 }, "onlineUpscaleAPSIndicator": { "type": "number", "example": 0.0 }, "onlineUpscaleInjectionDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "onlineUpscaleInjectionHour": { "type": "number", "example": 0.0 }, "onlineUpscaleMeasuredValue": { "type": "number", "example": 0.0 }, "onlineUpscaleReferenceValue": { "type": "number", "example": 0.0 }, "offlineZeroCalibrationError": { "type": "number", "example": 0.0 }, "offlineZeroAPSIndicator": { "type": "number", "example": 0.0 }, "offlineZeroInjectionDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "offlineZeroInjectionHour": { "type": "number", "example": 0.0 }, "offlineZeroMeasuredValue": { "type": "number", "example": 0.0 }, "offlineZeroReferenceValue": { "type": "number", "example": 0.0 }, "offlineUpscaleCalibrationError": { "type": "number", "example": 0.0 }, "offlineUpscaleAPSIndicator": { "type": "number", "example": 0.0 }, "offlineUpscaleInjectionDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "offlineUpscaleInjectionHour": { "type": "number", "example": 0.0 }, "offlineUpscaleMeasuredValue": { "type": "number", "example": 0.0 }, "offlineUpscaleReferenceValue": { "type": "number", "example": 0.0 }, "upscaleGasLevelCode": { "type": "string", "example": "string" } }, "required": [ "id", "testSumId", "userId", "addDate", "updateDate" ] }, "CycleTimeInjectionRecordDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "cycleTimeSumId": { "type": "string", "example": "12345" }, "calculatedInjectionCycleTime": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "gasLevelCode": { "type": "string", "example": "string" }, "calibrationGasValue": { "type": "number", "example": 0.0 }, "beginDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "beginHour": { "type": "number", "example": 0.0 }, "beginMinute": { "type": "number", "example": 0.0 }, "endDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "endHour": { "type": "number", "example": 0.0 }, "endMinute": { "type": "number", "example": 0.0 }, "injectionCycleTime": { "type": "number", "example": 0.0 }, "beginMonitorValue": { "type": "number", "example": 0.0 }, "endMonitorValue": { "type": "number", "example": 0.0 } }, "required": [ "id", "cycleTimeSumId", "calculatedInjectionCycleTime", "userId", "addDate", "updateDate", "gasLevelCode" ] }, "UnitDefaultTestRecordDTO": { "type": "object", "properties": { "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": [ "id", "testSumId", "calculatedNoxDefaultRate", "userId", "addDate", "updateDate" ] }, "UnitDefaultTestRunRecordDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "unitDefaultTestSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "operatingLevelForRun": { "type": "number", "example": 0.0 }, "runNumber": { "type": "number", "example": 0.0 }, "beginDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "beginHour": { "type": "number", "example": 0.0 }, "beginMinute": { "type": "number", "example": 0.0 }, "endDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "endHour": { "type": "number", "example": 0.0 }, "endMinute": { "type": "number", "example": 0.0 }, "responseTime": { "type": "number", "example": 0.0 }, "referenceValue": { "type": "number", "example": 0.0 }, "runUsedIndicator": { "type": "number", "example": 0.0 } }, "required": [ "id", "unitDefaultTestSumId", "userId", "addDate", "updateDate", "operatingLevelForRun", "runNumber" ] }, "HgInjectionRecordDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "hgTestSumId": { "type": "string", "example": "12345" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "injectionDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "injectionHour": { "type": "number", "example": 0.0 }, "injectionMinute": { "type": "number", "example": 0.0 }, "measuredValue": { "type": "number", "example": 0.0 }, "referenceValue": { "type": "number", "example": 0.0 } }, "required": [ "id", "hgTestSumId", "userId", "addDate", "updateDate", "injectionDate", "injectionHour", "injectionMinute" ] }, "RataSummaryRecordDTO": { "type": "object", "properties": { "operatingLevelCode": { "type": "string", "description": "operatingLevelCode. ADD TO PROPERTY METADATA", "example": "string" }, "averageGrossUnitLoad": { "type": "number", "description": "Average gross unit load (MWe or steam) or average velocity at operating level.", "example": 71 }, "referenceMethodCode": { "type": "string", "description": "referenceMethodCode. ADD TO PROPERTY METADATA", "example": "string" }, "meanCEMValue": { "type": "number", "description": "meanCEMValue. ADD TO PROPERTY METADATA", "example": 0.0 }, "meanRATAReferenceValue": { "type": "number", "minimum": 1, "description": "meanRATAReferenceValue. ADD TO PROPERTY METADATA", "example": 0.0 }, "meanDifference": { "type": "number", "description": "meanDifference. ADD TO PROPERTY METADATA", "example": 0.0 }, "standardDeviationDifference": { "type": "number", "description": "standardDeviationDifference. ADD TO PROPERTY METADATA", "example": 0.0 }, "confidenceCoefficient": { "type": "number", "description": "confidenceCoefficient. ADD TO PROPERTY METADATA", "example": 0.0 }, "tValue": { "type": "number", "description": "tValue. ADD TO PROPERTY METADATA", "example": 0.0 }, "apsIndicator": { "type": "number", "description": "Used to indicate if the alternative performance specification (APS) is used.", "example": 0 }, "apsCode": { "type": "string", "description": "Code used to identify the Alternate Performance Spec.", "example": "PS15" }, "relativeAccuracy": { "type": "number", "description": "relativeAccuracy. ADD TO PROPERTY METADATA", "example": 35.5 }, "biasAdjustmentFactor": { "type": "number", "description": "biasAdjustmentFactor. ADD TO PROPERTY METADATA", "example": 0.0 }, "co2OrO2ReferenceMethodCode": { "type": "string", "description": "co2OrO2ReferenceMethodCode. ADD TO PROPERTY METADATA", "example": "string" }, "stackDiameter": { "type": "number", "description": "stackDiameter. ADD TO PROPERTY METADATA", "example": 0.0 }, "stackArea": { "type": "number", "description": "stackArea. ADD TO PROPERTY METADATA", "example": 0.0 }, "numberOfTraversePoints": { "type": "number", "description": "numberOfTraversePoints. ADD TO PROPERTY METADATA", "example": 0.0 }, "calculatedWAF": { "type": "number", "description": "calculatedWAF. ADD TO PROPERTY METADATA", "example": 35.5 }, "defaultWAF": { "type": "number", "description": "defaultWAF. ADD TO PROPERTY METADATA", "example": 0.0 }, "id": { "type": "string", "example": "12345" }, "rataId": { "type": "string", "example": "12345" }, "calculatedAverageGrossUnitLoad": { "type": "number", "example": 35.5 }, "calculatedMeanCEMValue": { "type": "number", "example": 35.5 }, "calculatedMeanRATAReferenceValue": { "type": "number", "example": 35.5 }, "calculatedMeanDifference": { "type": "number", "example": 35.5 }, "calculatedStandardDeviationDifference": { "type": "number", "example": 35.5 }, "calculatedConfidenceCoefficient": { "type": "number", "example": 35.5 }, "calculatedTValue": { "type": "number", "example": 35.5 }, "calculatedApsIndicator": { "type": "number", "example": 35.5 }, "calculatedRelativeAccuracy": { "type": "number", "example": 35.5 }, "calculatedBiasAdjustmentFactor": { "type": "number", "example": 35.5 }, "calculatedStackArea": { "type": "number", "example": 35.5 }, "calculatedCalculatedWAF": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" } }, "required": [ "operatingLevelCode", "id", "rataId", "calculatedAverageGrossUnitLoad", "calculatedMeanCEMValue", "calculatedMeanRATAReferenceValue", "calculatedMeanDifference", "calculatedStandardDeviationDifference", "calculatedConfidenceCoefficient", "calculatedTValue", "calculatedApsIndicator", "calculatedRelativeAccuracy", "calculatedBiasAdjustmentFactor", "calculatedStackArea", "calculatedCalculatedWAF", "userId", "addDate", "updateDate" ] }, "RataTraverseRecordDTO": { "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "flowRataRunId": { "type": "string", "example": "12345" }, "calculatedCalculatedVelocity": { "type": "number", "example": 35.5 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "probeId": { "type": "string", "maxLength": 11, "example": "12345" }, "probeTypeCode": { "type": "string", "example": "string" }, "pressureMeasureCode": { "type": "string", "example": "string" }, "methodTraversePointId": { "type": "string", "minLength": 1, "maxLength": 3, "example": "12345" }, "velocityCalibrationCoefficient": { "type": "number", "example": 0.0 }, "lastProbeDate": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "averageVelocityDifferencePressure": { "type": "number", "example": 0.0 }, "averageSquareVelocityDifferencePressure": { "type": "number", "example": 0.0 }, "tStackTemperature": { "type": "number", "example": 0.0 }, "pointUsedIndicator": { "type": "number", "example": 0.0 }, "numberWallEffectsPoints": { "type": "number", "example": 0.0 }, "yawAngle": { "type": "number", "example": 0.0 }, "pitchAngle": { "type": "number", "example": 0.0 }, "calculatedVelocity": { "type": "number", "example": 35.5 }, "replacementVelocity": { "type": "number", "example": 0.0 } }, "required": [ "id", "flowRataRunId", "calculatedCalculatedVelocity", "userId", "addDate", "updateDate", "probeId", "probeTypeCode", "pressureMeasureCode", "methodTraversePointId", "velocityCalibrationCoefficient", "lastProbeDate", "tStackTemperature" ] }, "TestExtensionExemptionRecordDTO": { "type": "object", "properties": { "stackPipeId": { "type": "string", "description": "Stack Pipe Identifier. ADD TO PROPERTY METADATA", "example": "12345" }, "unitId": { "type": "string", "description": "Unique identifier for each unit at a facility.", "example": "12345" }, "year": { "type": "number", "description": "The calendar year during which activity occurred.", "example": 2024 }, "quarter": { "type": "number", "description": "Calendar quarter in which activity occurred.", "example": 0.0 }, "monitoringSystemId": { "type": "string", "description": "Unique identifier of a monitoring system record.", "example": "12345" }, "componentId": { "type": "string", "description": "The three digit code assigned by the source to identify the component.", "example": "12345" }, "spanScaleCode": { "type": "string", "description": "Code used to identify the span scale.", "example": "string" }, "id": { "type": "string", "example": "12345" }, "locationId": { "type": "string", "example": "12345" }, "reportPeriodId": { "type": "number", "example": 0.0 }, "checkSessionId": { "type": "string", "example": "12345" }, "submissionId": { "type": "string", "example": "12345" }, "submissionAvailabilityCode": { "type": "string", "example": "string" }, "pendingStatusCode": { "type": "string", "example": "active" }, "evalStatusCode": { "type": "string", "example": "active" }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "string", "example": "string" }, "updateDate": { "type": "string", "example": "string" }, "isSubmitted": { "type": "boolean", "example": true }, "isSavedNotSubmitted": { "type": "boolean", "example": true }, "hoursUsed": { "type": "number", "example": 0.0 }, "fuelCode": { "type": "string", "example": "string" }, "extensionOrExemptionCode": { "type": "string", "example": "string" } }, "required": [ "stackPipeId", "unitId", "year", "quarter", "id", "locationId", "reportPeriodId", "checkSessionId", "submissionId", "submissionAvailabilityCode", "pendingStatusCode", "evalStatusCode", "userId", "addDate", "updateDate", "extensionOrExemptionCode" ] } } } }