sul-dlss-deprecated / taco

Apache License 2.0
10 stars 7 forks source link

Don't allow created or isDescribedby #407

Closed jcoyne closed 6 years ago

jcoyne commented 6 years ago

presently maps/DepositDRO.json has:

      "not": {"required": ["created", "isDescribedBy"]},

which indicates they are not allowed together. We need to ensure that neither field is set.

We should probably have:

      "not": {
        "anyOf": [
          { "required": ["created"] },
          { "required": ["isDescribedBy"] }
        ]
      },