---
title: "DraftSlaResponse"
url: "https://stage-api-docs.centraldispatch.com/apis/stage-listing-api-2-0-0/versions/6459c118-c2b9-484e-816d-5657457559e4/schemas/DraftSlaResponse"
---

> Full API specification: https://stage-api-docs.centraldispatch.com/apis/stage-listing-api-2-0-0/versions/6459c118-c2b9-484e-816d-5657457559e4.md

# DraftSlaResponse

Details of the service level agreement of a draft listing.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Listing API
  version: 2.0.0
servers:
  - url: https://marketplace-api.centraldispatch.com
    description: Production server
components:
  schemas:
    DraftSlaResponse:
      type: object
      properties:
        duration:
          type: string
          description: How many days the customer has to pick up/deliver. The format is
            ISO 8601 duration format `P{duration in days}D` where the number of
            days comes from when the listing becomes available. For example,
            `P2D` means 2 days. This sets the deadline for completing the
            transport.
          example: P2D
        timeZoneOffset:
          type: string
          description: "Which time zone to use for SLA calculations. For example, `-5.00`
            represents Eastern Time and `+0.00` represents UTC/GMT. Can be
            negative. Acceptable range: -12:00 to +14:00 hours."
          example: -7:00
        rolloverTime:
          pattern: ^-?(\d+\.)?\d{2}:\d{2}:\d{2}(\.\d{1,7})?$
          type: string
          description: The time of day the "business day" ends. For example, 17:30 means
            5:30 PM. If the load is accepted after this time and available for
            immediate pickup, the ability for it to be picked up on the same day
            is determined by `includeCurrentDayAfterRollOver`.
          example: 19:00:00
        includeCurrentDayAfterRollOver:
          type: boolean
          description: "Indicates whether the load can be picked up after the rollover
            time if it is available on the same day the load is accepted. This
            could be do to the pickup location not being open or reachable after
            the rollover time. Does not apply to listings with availableDate in
            the future.\r

            Example with 5:30 PM rollover:\r

            When true: When accepting the load, the carrier can choose to pick
            it up after 5:30 PM. Sla duration starts tomorrow and ends on day
            3.\r

            When false: When accepting the load, the carrier cannot choose to
            pick it up after 5:30 PM today. It can only be picked up tomorrow as
            the pickup location has closed at the rollover time. Sla duration
            starts tomorrow and ends on day 3."
          example: true
      description: Details of the service level agreement of a draft listing.
```
