export_to_json
Convert an Excalidraw drawing into JSON format using the provided drawing ID, enabling easy data integration and sharing.
Instructions
Export an Excalidraw drawing to JSON
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"minLength": 1,
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}