You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the TableSchema standard, constraints such as a fields being required or unique need to be specified within a constraints property (see documentation).
In all the dataresource.yaml files specify properties like required or unique directly under each field, which is allowed, but it means they don't have the intended meaning, i.e., frictionless will not consider them when validating the data.
What needs to be done is for any field that has required: true or unique: true, these need to be moved into a constraints property.
E.g. this
In the TableSchema standard, constraints such as a fields being required or unique need to be specified within a
constraints
property (see documentation).In all the
dataresource.yaml
files specify properties likerequired
orunique
directly under each field, which is allowed, but it means they don't have the intended meaning, i.e.,frictionless
will not consider them when validating the data.What needs to be done is for any field that has
required: true
orunique: true
, these need to be moved into aconstraints
property.E.g. this
becomes
Note that specifying
required: false
orunique: false
is not necessary as these are the case by default.The text was updated successfully, but these errors were encountered: