---
title: "DateChangeReasonCollection"
url: "https://stage-api-docs.centraldispatch.com/apis/stage-fulfillment-api-1-0-0/versions/8637c155-7ff6-49fa-ac0a-3b4df78c9665/schemas/DateChangeReasonCollection"
---

> Full API specification: https://stage-api-docs.centraldispatch.com/apis/stage-fulfillment-api-1-0-0/versions/8637c155-7ff6-49fa-ac0a-3b4df78c9665.md

# DateChangeReasonCollection

Details of a collection of items with ID and Name pairs.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Fulfillment API
  version: 1.0.0
servers:
  - url: https://fulfillment-api.centraldispatch.com
    description: Production server
components:
  schemas:
    DateChangeReasonResponse:
      type: object
      properties:
        id:
          type: string
          description: The ID of the date change reason.
          format: uuid
          example: da1e0000-e89b-12d3-a456-426614174000
        name:
          type: string
          description: The name of the date change reason.
          nullable: true
          example: Mechanical issues with carrier's truck
      description: Details of the date change reason.
    DateChangeReasonCollection:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: "#/components/schemas/DateChangeReasonResponse"
          description: A collection of items.
          nullable: true
      description: Details of a collection of items with ID and Name pairs.
```
