2023 Limitless Workshop - Automated Document Collection Handling (Full Video)

Описание к видео 2023 Limitless Workshop - Automated Document Collection Handling (Full Video)

Live recording combined with some post-workshop recordings of / about Workshop 3 during ACS (I)'s "Limitless" staff productivity sharing event.

Note that the two sets of "code" talked about at the very end of the video is as follows:

-----
The Parse JSON Code:

{
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"link": {
"type": "string"
},
"id": {
"type": "string"
},
"type": {},
"size": {
"type": "integer"
},
"referenceId": {
"type": "string"
},
"driveId": {
"type": "string"
},
"status": {
"type": "integer"
},
"uploadSessionUrl": {}
},
"required": [
"name",
"link",
"id",
"type",
"size",
"referenceId",
"driveId",
"status",
"uploadSessionUrl"
]
}
}

-----
The File Extension Extraction Manual Expression:

last(split(first(body('Parse_JSON'))?['name'],'.'))

Комментарии

Информация по комментариям в разработке