---
title: "List dedicated engine schemas"
method: GET
path: "/api/v1/dedicated_engine_schemas"
tags: ["Dedicated Engine Schema"]
deprecated: true
---

# List dedicated engine schemas

`GET /api/v1/dedicated_engine_schemas`

> **Deprecated.**

Retrieve all dedicated engine schema objects.

**Please note that Dedicated Engine Schema is an internal API and can be changed without notice.**

## Query parameters

- `page_size` integer
- `cursor` string
- `id` integer[]
- `ordering` 'id' | '-id'

## Response `200`

OK

- object
  - `pagination` Pagination, required
    - `next` string, uri, nullable — URL for the next page of results. Contains an opaque signed `cursor` query parameter. Use this URL directly to fetch the next page — do not attempt to construct or modify the cursor value.
    - `previous` string, uri, nullable — URL for the previous page of results. Contains an opaque signed `cursor` query parameter. Use this URL directly to fetch the previous page — do not attempt to construct or modify the cursor value.
  - `results` DedicatedEngineSchema[], required
    - `id` integer, required — ID of the engine schema.
    - `url` string, uri, required — URL of the engine schema.
    - `content` EngineContent, required
      - `training_queues` string[] — List of Queues that will be used for the training. Note that queues can't have `delete_after` field set, otherwise a validation error is raised.
      - `fields` Field[] — Container for fields declarations. It may contain only objects of category `multivalue` or `datapoint`.
        - union — Field object that can be either multivalue (with tuple or datapoint children) or datapoint category.
          - MultivalueWithTuple
            - `category` 'multivalue' — Category of the object.
            - `engine_output_id` string — Unique name of the new extracted field in the trained Dedicated Engine.
            - `label` string — User-friendly label for an object, shown in the user interface.
            - `trained` boolean — Whether the field was successfully trained.
            - `type` 'grid' | 'freeform' — Type of the trained field.
            - `description` string — Description of field attribute.
            - `children` EngineTuple
              - …
          - MultivalueWithDatapoint
            - `category` 'multivalue' — Category of the object.
            - `children` EngineDatapoint
              - …
          - EngineDatapoint
            - `category` 'datapoint' — Category of the object.
            - `engine_output_id` string — Name of the new extracted field in the trained Dedicated Engine.
            - `label` string — User-friendly label for an object, shown in the user interface.
            - `trained` boolean — Whether the field was successfully trained.
            - `type` 'number' | 'string' | 'date' | 'enum' — Type of the trained field.
            - `description` string — Description of field attribute.
            - `sources` Source[] — Mapping describing the source Queues and their fields to train this field from.
              - …

## Other responses

- `400` — Invalid input data.
- `401` — The username/password is invalid or token is invalid (e.g. expired).
- `403` — Insufficient permission, missing authentication, invalid CSRF token and similar issue.
- `404` — The specified resource was not found.
- `409` — Conflict
- `429` — Request rate is too high, wait before sending more requests. See [Rate Limiting](/guides/overview#rate-limiting) for more details.
- `500` — Server failure while processing the request.
- `502` — Invalid response from the upstream server.
- `503` — We're temporarily offline for maintenance. Please try again later.
- `504` — Upstream server could not complete the request in time.

---

[API](https://skmtc.dev/rossum/apis/rossum-api.md) · [All operations](https://skmtc.dev/rossum/apis/rossum-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rossum/rossum-api/revisions/f1b5a910991d/schema)
