return_reasons
Fields that describe the reason for the return and other metadata related to the return. These are the same fields specified in the request.
- Is optional
-
Type:
array
with following properties:
Property | Type | Required | Description |
---|---|---|---|
type |
String | Optional | Type of return, as defined in the RippleNet Rulebook |
code |
String | Optional | ISO 20022 code for the return, as defined in the RippleNet Rulebook |
reason |
String | Optional | ISO 20022 reason for the return, as defined in the RippleNet Rulebook |
JSON schema extract
{
"type": "array",
"description": "Fields that describe the reason for the return and other metadata related to the return. These are the same fields specified in the request.",
"items": [
{
"type": "array",
"items": [
{
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "Type of return, as defined in the RippleNet Rulebook."
},
"code": {
"type": "string",
"description": "ISO 20022 code for the return, as defined in the RippleNet Rulebook."
},
"reason": {
"type": "string",
"description": "ISO 20022 reason for the return, as defined in the RippleNet Rulebook."
}
}
}
]
}
],
}