BigCommerce · Schema
Return_Full
A view of a return.
E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS
Properties
| Name | Type | Description |
|---|---|---|
| items | array | |
| total | string | The total price of the items being returned. |
| currency | string | The transactional currency of the return and the associated order. |
| customer | object | |
| comment | string | A comment provided to the merchant for review. |
| status | object | |
| date_modified | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Return_Full",
"title": "Return_Full",
"type": "object",
"description": "A view of a return.",
"properties": {
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ReturnItem"
}
},
"total": {
"type": "string",
"format": "decimal",
"description": "The total price of the items being returned."
},
"currency": {
"type": "string",
"format": "iso-4217",
"description": "The transactional currency of the return and the associated order."
},
"customer": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"email": {
"type": "string",
"format": "email"
}
}
},
"comment": {
"type": "string",
"description": "A comment provided to the merchant for review."
},
"status": {
"$ref": "#/components/schemas/Status_Full"
},
"date_modified": {
"type": "string",
"format": "date-time"
}
},
"x-internal": false
}