Atlassian · Schema
TimeTrackingDetails
Time tracking details.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| originalEstimate | string | The original estimate of time needed for this issue in readable format. |
| originalEstimateSeconds | integer | The original estimate of time needed for this issue in seconds. |
| remainingEstimate | string | The remaining estimate of time needed for this issue in readable format. |
| remainingEstimateSeconds | integer | The remaining estimate of time needed for this issue in seconds. |
| timeSpent | string | Time worked on this issue in readable format. |
| timeSpentSeconds | integer | Time worked on this issue in seconds. |
JSON Schema
{
"$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"
}