Require Reference without Unique Reference

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

Hi @ghbm ,

Go to edit queue and check if Unique Reference is enabled.

If yes, delete the queue and recreate by disabling it.

In the new version:

image

I don’t want reference to be unique

Yes, so disable it. Click on No.

I want reference to be required but not unique