# Site Migration Redirect Map Validator & Audit (`burly_bat/site-migration-redirect-map-qa`) Actor

Validate old-to-new URL migration maps in bulk before or after launch. Find broken 301/308 redirects, wrong final destinations, redirect chains, canonical mismatches, noindex pages, loops, and HTTPS downgrades. Export PASS/WARN/FAIL results to JSON, CSV, Excel, Markdown, and HTML.

- **URL**: https://apify.com/burly\_bat/site-migration-redirect-map-qa.md
- **Developed by:** [Burly Bat](https://apify.com/burly_bat) (community)
- **Categories:** SEO tools, Developer tools, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 validated migration mappings

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Site Migration Redirect Map Validator & Audit

Validate an entire **old URL → expected new URL** migration map before or after launch.
This Actor follows every redirect manually, checks the actual final destination and turns
raw HTTP behavior into a deployment gate your SEO, engineering and QA teams can act on.

### Why use this instead of a generic status checker?

A status checker tells you that an old URL eventually returned `200`. It does not tell you
whether it reached the **correct page from your migration spreadsheet**. This Actor treats
the mapping as a contract and validates both sides.

For each pair it checks:

- direct permanent `301` or `308` from the old URL;
- temporary redirects (`302`, `303`, `307`);
- every redirect hop, loops, missing `Location` and excessive chains;
- actual final URL versus the expected mapped target;
- final `2xx` status and HTTPS downgrade;
- self-referencing canonical from HTML or the HTTP `Link` header;
- `noindex` from meta robots, Googlebot meta and `X-Robots-Tag`;
- many old URLs mapped to the same destination;
- deterministic `PASS`, `WARN` or `FAIL`, issue codes and repair guidance.

Outputs include a dataset (JSON/CSV/Excel), JSON summary, Markdown summary and a
self-contained HTML report with a batch-level `deploymentGate`.

### Quick start

Paste two columns copied from Excel or Google Sheets:

```text
sourceUrl,expectedTargetUrl,rowId
https://old.example.com/pricing,https://new.example.com/pricing,pricing
https://old.example.com/docs,https://new.example.com/help,docs
````

You can also call the Actor with structured JSON:

```json
{
  "mappings": [
    {
      "sourceUrl": "https://old.example.com/pricing",
      "expectedTargetUrl": "https://new.example.com/pricing",
      "rowId": "pricing"
    }
  ],
  "ignoreTrailingSlash": true,
  "ignoreQueryString": false,
  "checkCanonical": true,
  "checkIndexability": true
}
```

### Result fields

Each dataset row contains:

- `sourceUrl`, `expectedTargetUrl`, `finalUrl`, optional `rowId`;
- `sourceStatusCode`, `finalStatusCode`, `redirectCount`, `redirectChain`;
- `isDirectPermanentRedirect`, `hasTemporaryRedirect`, `matchesExpectedTarget`;
- `canonicalUrl`, `canonicalMatchesTarget`, `robotsDirectives`, `isNoindex`;
- `resolved`, `confidence`, `verdict`, `issueCodes`, `issues`;
- response time and audit timestamp.

Common issue codes: `SOURCE_NOT_REDIRECT`, `TEMPORARY_REDIRECT`, `REDIRECT_CHAIN`,
`WRONG_DESTINATION`, `TARGET_NOT_OK`, `HTTPS_DOWNGRADE`, `MISSING_CANONICAL`,
`CANONICAL_MISMATCH`, `TARGET_NOINDEX`, `MANY_TO_ONE_TARGET`, `REDIRECT_LOOP`.

### How verdicts work

- **PASS** — direct permanent redirect, expected destination, healthy target and no
  enabled canonical/indexability defect.
- **WARN** — deploy may be possible, but the audit found quality risks such as a redirect
  chain, missing canonical or intentional many-to-one consolidation.
- **FAIL** — wrong destination, temporary/no redirect, broken/noindex target, canonical
  mismatch, loop, HTTPS downgrade or an unresolved network/safety failure.

`deploymentGate` is `FAIL` when any mapping fails. JavaScript-only redirects or tags are
not rendered; a non-HTML/blocked target is marked low-confidence and should be checked in
a browser.

### Security and responsible use

- Audit only public URLs you own or are authorized to test.
- The Actor blocks localhost, private/link-local/reserved IP ranges, cloud metadata hosts,
  URL credentials and non-standard ports. Every redirect hop is checked again.
- Responses are capped, requests time out and concurrency is bounded.
- No personal data, login credentials, proxy or external API is required.
- This is technical QA, not a guarantee of rankings or legal/SEO advice.

### Pricing

Pay per event: **$0.005 per source URL that returns a resolved final HTTP response**
(that is $5.00 per 1,000 checked mappings), plus a near-zero `$0.00005` Actor start event.

- A mapping is charged whenever the source URL resolves to a final HTTP response, no matter
  whether its verdict is `PASS`, `WARN` or `FAIL` — a detected 404 or a wrong target is a
  result you are paying for.
- Invalid expected targets, blocked URLs, DNS failures and connection failures are **never
  charged**, even though they are still delivered to the dataset.
- Platform usage is covered by the Actor creator, so the event price is what you pay.
- Set `maxTotalChargeUsd` on the run to cap your spend. The Actor trims the input before doing
  any work, so your limit is never exceeded and `skippedByChargeLimit` reports what was left out.

### Recommended workflow

1. Export the final migration map from your spreadsheet.
2. Run this Actor on staging or immediately after redirect deployment.
3. Fix every `FAIL`, review `WARN`, then rerun until `deploymentGate` is `PASS`.
4. Export CSV/Excel for the implementation team and archive the HTML report.
5. Schedule a short follow-up audit after launch if redirect rules may change.

### Sources

- [Google: Site moves with URL changes](https://developers.google.com/search/docs/crawling-indexing/site-move-with-url-changes)
- [Google: Redirects and Search](https://developers.google.com/search/docs/crawling-indexing/301-redirects)
- [Google: Canonical URLs](https://developers.google.com/search/docs/crawling-indexing/consolidate-duplicate-urls)
- [Google: Robots meta and X-Robots-Tag](https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag)
- [HTTP Semantics — RFC 9110](https://www.rfc-editor.org/rfc/rfc9110.html)

### Support boundaries

This Actor deliberately uses deterministic HTTP and server-rendered HTML. It does not log
in, bypass bot protection, render JavaScript or crawl a website automatically. Those limits
keep audits reproducible, inexpensive and low-maintenance.

# Actor input Schema

## `mappingText` (type: `string`):

One sourceUrl and expectedTargetUrl pair per line. A header row is optional. Paste directly from Excel or Google Sheets.

## `mappings` (type: `array`):

Alternative structured input. Each item needs sourceUrl and expectedTargetUrl; rowId is optional.

## `maxMappings` (type: `integer`):

Safety cap applied after combining text and JSON inputs.

## `maxRedirects` (type: `integer`):

Stop and fail a mapping when its redirect chain exceeds this limit.

## `timeoutSecs` (type: `integer`):

Maximum time to wait for each redirect hop or final response.

## `maxConcurrency` (type: `integer`):

Keep this conservative when auditing one host to avoid overloading it.

## `ignoreTrailingSlash` (type: `boolean`):

Treat /page and /page/ as the same expected destination.

## `ignoreQueryString` (type: `boolean`):

Off by default because losing parameters can be a migration defect.

## `checkCanonical` (type: `boolean`):

Validate rel=canonical in server-rendered HTML and the HTTP Link header.

## `checkIndexability` (type: `boolean`):

Fail a mapping when the final HTML or response headers contain noindex.

## Actor input object example

```json
{
  "mappingText": "sourceUrl,expectedTargetUrl,rowId\nhttps://httpbingo.org/redirect-to?url=https%3A%2F%2Fhttpbingo.org%2Fhtml&status_code=301,https://httpbingo.org/html,demo-1",
  "maxMappings": 1000,
  "maxRedirects": 10,
  "timeoutSecs": 20,
  "maxConcurrency": 8,
  "ignoreTrailingSlash": true,
  "ignoreQueryString": false,
  "checkCanonical": true,
  "checkIndexability": true
}
```

# Actor output Schema

## `results` (type: `string`):

One PASS/WARN/FAIL record per source-to-target mapping.

## `summary` (type: `string`):

Counts, deployment gate and issue frequencies.

## `htmlReport` (type: `string`):

Self-contained, safely escaped report for browser review.

## `markdownSummary` (type: `string`):

Portable audit summary for tickets, docs or pull requests.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "mappingText": `sourceUrl,expectedTargetUrl,rowId
https://httpbingo.org/redirect-to?url=https%3A%2F%2Fhttpbingo.org%2Fhtml&status_code=301,https://httpbingo.org/html,demo-1`
};

// Run the Actor and wait for it to finish
const run = await client.actor("burly_bat/site-migration-redirect-map-qa").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "mappingText": """sourceUrl,expectedTargetUrl,rowId
https://httpbingo.org/redirect-to?url=https%3A%2F%2Fhttpbingo.org%2Fhtml&status_code=301,https://httpbingo.org/html,demo-1""" }

# Run the Actor and wait for it to finish
run = client.actor("burly_bat/site-migration-redirect-map-qa").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "mappingText": "sourceUrl,expectedTargetUrl,rowId\\nhttps://httpbingo.org/redirect-to?url=https%3A%2F%2Fhttpbingo.org%2Fhtml&status_code=301,https://httpbingo.org/html,demo-1"
}' |
apify call burly_bat/site-migration-redirect-map-qa --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=burly_bat/site-migration-redirect-map-qa",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Site Migration Redirect Map Validator & Audit",
        "description": "Validate old-to-new URL migration maps in bulk before or after launch. Find broken 301/308 redirects, wrong final destinations, redirect chains, canonical mismatches, noindex pages, loops, and HTTPS downgrades. Export PASS/WARN/FAIL results to JSON, CSV, Excel, Markdown, and HTML.",
        "version": "0.1",
        "x-build-id": "qCCnfb2WX0H9tObMd"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/burly_bat~site-migration-redirect-map-qa/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-burly_bat-site-migration-redirect-map-qa",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/burly_bat~site-migration-redirect-map-qa/runs": {
            "post": {
                "operationId": "runs-sync-burly_bat-site-migration-redirect-map-qa",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/burly_bat~site-migration-redirect-map-qa/run-sync": {
            "post": {
                "operationId": "run-sync-burly_bat-site-migration-redirect-map-qa",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "mappingText": {
                        "title": "Paste URL mapping (CSV, TSV or semicolon-separated)",
                        "type": "string",
                        "description": "One sourceUrl and expectedTargetUrl pair per line. A header row is optional. Paste directly from Excel or Google Sheets."
                    },
                    "mappings": {
                        "title": "URL mappings as JSON",
                        "type": "array",
                        "description": "Alternative structured input. Each item needs sourceUrl and expectedTargetUrl; rowId is optional.",
                        "items": {
                            "type": "object",
                            "properties": {
                                "sourceUrl": {
                                    "title": "Source URL",
                                    "type": "string",
                                    "description": "Old URL that should redirect."
                                },
                                "expectedTargetUrl": {
                                    "title": "Expected target URL",
                                    "type": "string",
                                    "description": "New URL the source should reach."
                                },
                                "rowId": {
                                    "title": "Optional row ID",
                                    "type": "string",
                                    "description": "Spreadsheet or ticket reference copied to the result."
                                }
                            },
                            "required": [
                                "sourceUrl",
                                "expectedTargetUrl"
                            ]
                        }
                    },
                    "maxMappings": {
                        "title": "Maximum mappings",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Safety cap applied after combining text and JSON inputs.",
                        "default": 1000
                    },
                    "maxRedirects": {
                        "title": "Maximum redirect hops",
                        "minimum": 1,
                        "maximum": 15,
                        "type": "integer",
                        "description": "Stop and fail a mapping when its redirect chain exceeds this limit.",
                        "default": 10
                    },
                    "timeoutSecs": {
                        "title": "Timeout per HTTP request (seconds)",
                        "minimum": 3,
                        "maximum": 60,
                        "type": "integer",
                        "description": "Maximum time to wait for each redirect hop or final response.",
                        "default": 20
                    },
                    "maxConcurrency": {
                        "title": "Parallel mappings",
                        "minimum": 1,
                        "maximum": 15,
                        "type": "integer",
                        "description": "Keep this conservative when auditing one host to avoid overloading it.",
                        "default": 8
                    },
                    "ignoreTrailingSlash": {
                        "title": "Treat trailing slash as equivalent",
                        "type": "boolean",
                        "description": "Treat /page and /page/ as the same expected destination.",
                        "default": true
                    },
                    "ignoreQueryString": {
                        "title": "Ignore query string when comparing targets",
                        "type": "boolean",
                        "description": "Off by default because losing parameters can be a migration defect.",
                        "default": false
                    },
                    "checkCanonical": {
                        "title": "Check canonical on final HTML",
                        "type": "boolean",
                        "description": "Validate rel=canonical in server-rendered HTML and the HTTP Link header.",
                        "default": true
                    },
                    "checkIndexability": {
                        "title": "Check meta robots and X-Robots-Tag noindex",
                        "type": "boolean",
                        "description": "Fail a mapping when the final HTML or response headers contain noindex.",
                        "default": true
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
