summaryrefslogtreecommitdiff
path: root/app/validators/json_schemas/import_failure_external_identifiers.json
blob: 3756e712de5dd9bb4d260532568f0e5d6a106e15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "Import failure external identifiers",
  "type": "object",
  "maxProperties": 3,
  "patternProperties": {
    ".*": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "integer"
        }
      ]
    }
  }
}