{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/related_ids",
"title": "Related Identifiers",
"type": "object",
"description": "Identifiers related to a specific resource.",
"properties": {
"order_id": {
"type": "string",
"description": "Order ID related to the resource.",
"minLength": 1,
"maxLength": 20,
"pattern": "^[A-Z0-9]+$"
},
"authorization_id": {
"type": "string",
"description": "Authorization ID related to the resource.",
"minLength": 1,
"maxLength": 20,
"pattern": "^[A-Z0-9]+$"
},
"capture_id": {
"type": "string",
"description": "Capture ID related to the resource.",
"minLength": 1,
"maxLength": 20,
"pattern": "^[A-Z0-9]+$"
}
}
}