{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TimeTrackingDetails", "title": "TimeTrackingDetails", "additionalProperties": false, "description": "Time tracking details.", "properties": { "originalEstimate": { "description": "The original estimate of time needed for this issue in readable format.", "readOnly": true, "type": "string" }, "originalEstimateSeconds": { "description": "The original estimate of time needed for this issue in seconds.", "format": "int64", "readOnly": true, "type": "integer" }, "remainingEstimate": { "description": "The remaining estimate of time needed for this issue in readable format.", "readOnly": true, "type": "string" }, "remainingEstimateSeconds": { "description": "The remaining estimate of time needed for this issue in seconds.", "format": "int64", "readOnly": true, "type": "integer" }, "timeSpent": { "description": "Time worked on this issue in readable format.", "readOnly": true, "type": "string" }, "timeSpentSeconds": { "description": "Time worked on this issue in seconds.", "format": "int64", "readOnly": true, "type": "integer" } }, "type": "object" }