---
title: "Validate Run Sets Compatibility"
method: POST
path: "/run_sets/validate_compatibility"
---

# Validate Run Sets Compatibility

`POST /run_sets/validate_compatibility`

Check if two run sets are compatible for comparison.

Run sets are compatible if they have the same incidents with
the same number of sessions per incident.

## Request body

- ValidateRunSetsCompatibilityRequestBody — Request body for validating run set compatibility.
  - `run_set_a_id` string, required — First run set ID
  - `run_set_b_id` string, required — Second run set ID

## Response `200`

Successful Response

- ValidateRunSetsCompatibilityResponse — Response for run set compatibility check.
  - `compatible` boolean, required
  - `error` string, nullable
  - `run_set_a` RunSetInfo — Basic information about a run set.
    - `id` string, required
    - `name` string, nullable
    - `description` string, nullable
    - `image_url` string, nullable
    - `runs_per_incident` integer, required
    - `session_count` integer
    - `incident_count` integer
    - `created_at` string, nullable
    - `completed_at` string, nullable
  - `run_set_b` RunSetInfo — Basic information about a run set.
    - `id` string, required
    - `name` string, nullable
    - `description` string, nullable
    - `image_url` string, nullable
    - `runs_per_incident` integer, required
    - `session_count` integer
    - `incident_count` integer
    - `created_at` string, nullable
    - `completed_at` string, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/traversal/apis/fastapi.md) · [All operations](https://skmtc.net/traversal/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/traversal/fastapi/revisions/2134ebffd1ef/schema)
