{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DebugFile", "title": "DebugFile", "type": "object", "properties": { "id": { "type": "string" }, "debugId": { "type": "string" }, "cpuName": { "type": "string" }, "objectName": { "type": "string" }, "symbolType": { "type": "string" }, "size": { "type": "integer" }, "dateCreated": { "type": "string", "format": "date-time" }, "data": { "type": "object" } }, "required": [ "id" ] }