Import project JSON
ae_project_import_jsonRebuild an Adobe After Effects project from a JSON document, with options to append or clear existing content and validate before applying.
Instructions
Rebuild the project from JSON (produced by ae_project_export_json). Supports clearFirst, dryRun (validate-only), skipValidation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| json | No | Inline JSON document (object, not string). Mutually exclusive with `inPath`. | |
| dryRun | No | If true, validate the document and return a plan without touching AE. Useful for debugging malformed exports. | |
| inPath | No | Absolute path to a JSON document produced by ae_project_export_json. Mutually exclusive with `json`. | |
| clearFirst | No | Remove all existing items from the current project before importing. Default: false (appends). | |
| skipValidation | No | Skip Node-side schema validation. Only use if you trust the input and want to hand broken data to AE for diagnosis. |