Automotion docs

SCHEMA_INVALID

The movie document is not a valid Automotion movie.

HTTP status: 400

What it means

The movie document is not a valid Automotion movie.

Why it happens

  • The request's movie value is not an object, or is missing entire required sections such as scenes.

How to fix it

  • Send a complete movie document — start from the quickstart example.
  • Inspect the errors array for the full list of problems.

Example

Every non-2xx response uses the same envelope; path (when present) is the exact JSON path of the offending field, and requestId identifies the request in support conversations:

response.json
{
  "error": {
    "code": "SCHEMA_INVALID",
    "message": "The movie document is not a valid Automotion movie (3 error(s)).",
    "docsUrl": "https://automotion.dev/docs/errors/schema_invalid"
  },
  "requestId": "req_0123456789abcdef0123456789abcdef"
}

See the error index for the full catalog and the API overview for envelope semantics.

On this page