Pages
A Page object represents all of the shapes, lines, groups, and layers contained on a single page of a given Lucid document.
Page Format
The format to define a page in JSON is shown below:
Property | Description | |
---|---|---|
id | ID Identifier for a given page (must be unique). | Required |
title | String Page display title. | Required |
shapes | Array[Shape] An array of all shapes in the page. | optional |
dataBackedShapes | Array[Data Backed Shape] An array of all shapes in the page. | optional |
lines | Array[Line] An array of all lines in the page. | optional |
groups | Array[Group] An array of all groups in the page. | optional |
layers | Array[Layer] An array of all layers in the page. | optional |
customData | Array[Custom Page Data] See Custom Page Data for a description of it's purpose. | optional |
{
"id": "page1",
"title": "Main Plan",
"shapes": [ ... ],
"lines": [ ... ],
"groups": [ ... ],
"layers": [ ... ],
"customData": [ ... ]
}
Updated 7 months ago