{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-structure/cam-monitor-plan-lmequalification-structure.json", "name": "LMEQualification", "description": "LMEQualification schema from Monitor Plan Management OpenAPI Specification", "type": "object", "properties": { "id": { "type": "string", "example": "12345" }, "qualificationId": { "type": "string", "example": "12345" }, "qualificationDataYear": { "type": "double", "example": 2024 }, "so2Tons": { "type": "double", "example": 0.0 }, "noxTons": { "type": "double", "example": 0.0 }, "operatingHours": { "type": "double", "example": 0.0 }, "userId": { "type": "string", "example": "12345" }, "addDate": { "type": "datetime", "example": "2024-01-15T12:00:00Z" }, "updateDate": { "type": "datetime", "example": "2024-01-15T12:00:00Z" }, "qualification": { "$ref": "#/components/schemas/MonitorQualification" } }, "required": [ "id", "qualificationId", "qualificationDataYear", "so2Tons", "noxTons", "operatingHours", "userId", "addDate", "updateDate", "qualification" ] }