---
title: The Story Scheduling Object
description: This is an object representing a story schedule. This object stores the information about the publishing schedule of a story.
url: https://storyblok.com/docs/api/management/scheduling-stories/the-story-scheduling-object
---

# The Story Scheduling Object

This is an object representing a story schedule. This object stores the information about the publishing schedule of a story.

## Properties

-   `id` (number)
    
    The numeric ID
    
-   `space_id` (number)
    
    Numeric ID of a space
    
-   `story_id` (number)
    
    ID of the story
    
-   `language` (string)
    
    The lang code
    
-   `publish_at` (string)
    
    The publishing date (Format: yyyy-MM-dd’T’HH:mm:ssZ)
    
-   `status` (string)
    
    Status of the scheduling. Can be `published_before_schedule`, or `scheduled`.
    
-   `deleted_at` (string)
    
    Deleted date (Format: YYYY-mm-dd HH:MM)
    
-   `created_at` (string)
    
    Creation date (Format: `yyyy-MM-dd'T'HH:mm:ssZ`)
    
-   `updated_at` (string)
    
    Latest update date (Format: `yyyy-MM-dd'T'HH:mm:ssZ`)
    

Example Object

```json
{
 "id": 2342,
 "space_id": 233027,
 "story_id": 314931981,
 "user_id": 110930,
 "language": "",
 "publish_at": "2024-04-27T10:12:00.000Z",
 "status": "published_before_schedule",
 "deleted_at": null,
 "created_at": "2024-04-26T09:42:34.179Z",
 "updated_at": "2024-04-26T09:45:39.262Z"
}
```

## Pagination

-   [Previous: Retrieve One Story Schedule](/docs/api/management/scheduling-stories/retrieve-one-story-schedule)
-   [Next: Update a Story Schedule](/docs/api/management/scheduling-stories/update-a-story-schedule)
