Tag Validation Mode
Strict

{
"presentation": {
"template": "template.pptx",
"tag_validation_mode": "strict",
"slides": [
{
"slide_index": 0,
"tags": [
{
"key": "non-existent-tag",
"value": "ONE"
},
{
"key": "date",
"value": "TWO"
},
{
"key": "client",
"value": "THREE"
},
{
"key": "type",
"value": "FOUR"
},
{
"key": "month",
"value": "FIVE"
}
]
}
]
}
}
Lenient


{
"presentation": {
"template": "template.pptx",
"tag_validation_mode": "lenient",
"slides": [
{
"type": "slide",
"slide_index": 0,
"tags": [
{
"key": "non-existent-tag",
"value": "ONE"
},
{
"key": "date",
"value": "TWO"
},
{
"key": "client",
"value": "THREE"
},
{
"key": "type",
"value": "FOUR"
},
{
"key": "month",
"value": "FIVE"
}
]
}
]
}
}
Last updated