Properties
| Name | Type | Description |
|---|---|---|
| requestId | string | Request identification of the change. Only the first change made with each `requestId` will be effective on a given order. Use different IDs for different changes to the same order. |
| reason | string | Reason for order change. This may be shown to the shopper in the UI or transactional emails. |
| discountValue | integer | This field can be used to apply a discount to the total value of the order. Value in cents. |
| incrementValue | integer | This field can be used to increment the total value of the order. Value in cents. |
| itemsRemoved | array | List of items that should be removed from the order. |
| itemsAdded | array | List of items that should be added to the order. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RegisterChangeRequest",
"title": "RegisterChangeRequest",
"required": [
"requestId",
"reason",
"discountValue",
"incrementValue"
],
"type": "object",
"properties": {
"requestId": {
"type": "string",
"description": "Request identification of the change. Only the first change made with each `requestId` will be effective on a given order. Use different IDs for different changes to the same order.",
"example": "change-request-0123"
},
"reason": {
"type": "string",
"description": "Reason for order change. This may be shown to the shopper in the UI or transactional emails.",
"example": "Stock shortage"
},
"discountValue": {
"type": "integer",
"description": "This field can be used to apply a discount to the total value of the order. Value in cents.",
"example": 100
},
"incrementValue": {
"type": "integer",
"description": "This field can be used to increment the total value of the order. Value in cents.",
"example": 100
},
"itemsRemoved": {
"type": "array",
"description": "List of items that should be removed from the order.",
"items": {
"type": "object",
"description": "Removed items' details.",
"required": [
"id",
"price",
"quantity"
],
"properties": {
"id": {
"type": "string",
"description": "Product ID of the item.",
"example": "0"
},
"price": {
"type": "integer",
"description": "Price of the item in cents.",
"example": 2499
},
"quantity": {
"type": "integer",
"description": "Amount of items to be removed.",
"example": 1
}
}
}
},
"itemsAdded": {
"type": "array",
"description": "List of items that should be added to the order.",
"items": {
"type": "object",
"description": "Added items' details.",
"required": [
"id",
"price",
"quantity"
],
"properties": {
"id": {
"type": "string",
"description": "Product ID of the item.",
"example": "0"
},
"price": {
"type": "integer",
"description": "Price of the item in cents.",
"example": 2499
},
"quantity": {
"type": "integer",
"description": "Amount of items to be added.",
"example": 1
}
}
}
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/vtex-registerchangerequest"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.