Properties
Name | Type | Format | Description | Example |
---|---|---|---|---|
id | string | - | The block identifier. It must begin with a letter and only contain lowercase alphanumeric characters and hyphen separators | movie-listing |
description | string | - | The description of the block | |
liveVersion | number | integer | The version number of the last version made live | |
madeLive | datetime | datetime | The last time the block was made live | |
versionsSinceLive | number | integer | A count of versions created since the block was last made live | |
projectId | string | - | The project identifier found in the project overview screen of the management console | movieDb |
branches | object[...] | - | An array of branches which are available for the block | |
branches.id | string | - | The name of the branch | main |
Example
[
{
"id": "movie-listing",
"description": "Displays the main listing for movies on the movie example site",
"liveVersion": 4,
"versionsSinceLive": 2,
"madeLive": "2021-03-02T11:16:01.408Z",
"projectId": "movieDb",
"branches": [
{
"id": "main"
}
]
}
]