{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "TraceNotFoundResponse", "type": "object", "additionalProperties": false, "properties": { "msg": { "type": "string", "description": "Message indicating the status of the request overall." }, "details": { "type": "string", "description": "Message clarifying the unsuccessful response.", "nullable": true }, "status": { "type": "integer", "description": "Status code indicating the status of the request overall.", "format": "int32" }, "ctime": { "type": "integer", "description": "Unix timestamp of when the underlying data was last updated.", "format": "int64" }, "now": { "type": "integer", "description": "Unix timestamp of the current UTC time on the server.", "format": "int64" }, "ptime": { "type": "integer", "description": "Time taken on API server to process the request, in milliseconds.", "format": "int64" } } }