Documents
The connector supports two types of documents. ExternalUrl keeps a reference to the document's path and Blob embeds the document into the AVIX file. Both the "url" attribute of ExternalUrl and the "binaryObject" attribute of Blob can contain the absolute path to the imported document. If the import is from a file endpoint then "binaryObject" can be the relative path to the document and the actual path is later resolved against the endpoint's path.
Examples
{
"attributes": {
"name": {
"msl": ""
},
"description": {
"msl": ""
},
"url": "C:\\Users\\YOUR_USER_NAME\\Pictures\\Skärmbild 2024-02-07 133440.png"
},
"type": "externalUrl",
"id": "5",
"originId": "7a462691-db92-4002-ab2f-819482f1a7b9"
}
{
"attributes": {
"name": {
"msl": ""
},
"description": {
"msl": ""
},
"binaryObject": "C:\\Users\\YOUR_USER_NAME\\Pictures\\Skärmbild 2024-02-07 133440.png"
},
"type": "blob",
"id": "5",
"originId": "7a462691-db92-4002-ab2f-819482f1a7b9"
}
{
"attributes": {
"name": {
"msl": ""
},
"description": {
"msl": ""
},
"binaryObject": "content\\Skärmbild 2024-02-07 133440.png"
},
"type": "blob",
"id": "5",
"originId": "7a462691-db92-4002-ab2f-819482f1a7b9"
}