{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "DocumentNode",
"type": "object",
"description": "The root node of a Figma document.",
"properties": {
"id": {
"type": "string",
"description": "A string uniquely identifying this node within the document."
},
"name": {
"type": "string",
"description": "The name given to the node by the user in the tool."
},
"type": {
"type": "string",
"description": "The type of the node."
},
"children": {
"type": "array",
"description": "An array of canvases (pages) attached to the document."
}
}
}