Properties
| Name | Type | Description |
|---|---|---|
| dataFormat | string | |
| data | string | |
| recipientIdentifier | string | Recipient identifier on the interop network |
| recipientIdentifierScheme | string | Identifier scheme (e.g., peppol) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/InteropDocumentRequest",
"title": "InteropDocumentRequest",
"type": "object",
"required": [
"dataFormat",
"data",
"recipientIdentifier"
],
"properties": {
"dataFormat": {
"type": "string"
},
"data": {
"type": "string"
},
"recipientIdentifier": {
"type": "string",
"description": "Recipient identifier on the interop network"
},
"recipientIdentifierScheme": {
"type": "string",
"description": "Identifier scheme (e.g., peppol)"
}
}
}