{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-schema/cam-camd-services-bulk-file-dto-schema.json", "title": "BulkFileDTO", "description": "BulkFileDTO schema from CAMD Administrative & General Services OpenAPI Specification", "type": "object", "properties": { "filename": { "type": "string", "example": "EPA Facility" }, "s3Path": { "type": "string", "example": "string" }, "bytes": { "type": "number", "example": 0.0 }, "kiloBytes": { "type": "number", "example": 0.0 }, "megaBytes": { "type": "number", "example": 0.0 }, "gigaBytes": { "type": "number", "example": 0.0 }, "lastUpdated": { "format": "date-time", "type": "string", "example": "2024-01-15T12:00:00Z" }, "metadata": { "type": "object", "example": {} } }, "required": [ "filename", "s3Path", "bytes", "kiloBytes", "megaBytes", "gigaBytes", "lastUpdated", "metadata" ] }