{

"components": {
  "schemas": {
    "request": {
      "type": "object",
      "xml": { "name": "/" },
      "properties": {
        "time_track": {
          "type": "object",
          "properties": {
            "name": { "type": "string", "example": "Time Track Name" },
            "minutes_parsed": { "type": "string", "example": "2h" }
          }
        }
      }
    },
    "response": {
      "type": "object",
      "xml": { "name": "/", "wrapped": true },
      "properties": {
        "time_track": {
          "type": "object",
          "properties": {
            "id": { "$ref": "../../components.json#/components/response/schemas/id" },
            "name": { "type": "string", "example": "Time Track Name" },
            "minutes": { "type": "string", "example": "120" },
            "created_at": { "type": "string", "example": "2025-01-01T00:00:00.000+01:00" },
            "updated_at": { "type": "string", "example": "2025-01-01T00:00:00.000+01:00" },
            "creator": { "$ref": "../../components.json#/components/response/schemas/user_details" },
            "parent": { "$ref": "../../components.json#/components/response/schemas/parent_object" }
          }
        }
      }
    }
  }
}

}