Automotion docs

UNSUPPORTED_SCHEMA_VERSION

The "schema" version tag is missing or not supported.

HTTP status: 400

What it means

The "schema" version tag is missing or not supported.

Why it happens

  • The document's schema field is missing, or names a version this API does not support.

How to fix it

  • Set "schema": "v1" at the top level of the movie document.
  • Documents always parse under the version they declare, so declare one.

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": "UNSUPPORTED_SCHEMA_VERSION",
    "message": "The \"schema\" version tag is missing or not supported (received \"v3\"). Declare a supported Movie Schema version such as \"v1\".",
    "path": "schema",
    "docsUrl": "https://automotion.dev/docs/errors/unsupported_schema_version"
  },
  "requestId": "req_0123456789abcdef0123456789abcdef"
}

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

On this page