Hi
I’m trying to define a JSON schema for my Queue in Orchestrator.
I want ‘Reference’ to be required but I don’t want the reference to be unique for each queue item.
When adding “Reference” to “required” I can’t upload any queue items anymore.
Here’s my schema and csv-file that I’m testing with:
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"required": [
"Reference",
"Art",
"Notat"
],
"properties": {
"Reference": {
"type": "string",
"minLength": 1
},
"Aftaleindhold": {
"type": "string"
},
"Art": {
"type": "string",
"minLength": 1
},
"Notat": {
"type": "string",
"minLength": 1
}
}
}
Reference,Aftaleindhold,Art,Notat
25564617,2291987,Orientering,Queue test
25564617,1882521,Orientering,Queue test
25564617,1990437,Orientering,Queue test
25564617,2244187,Orientering,Queue test
25564617,2291987,Orientering,Queue test 2
25564617,2291987,Orientering,Queue test 3
25564617,1882521,Orientering,Queue test 2
25564617,1990437,Automatisk,Queue test
25564617,2244187,Automatisk,Queue test
25564617,2291987,Automatisk,Queue test
25564617,,Returpost,Queue test 4