There currently only is a resource-array datatype, which requires using nested resources if there are multiple values.
Often I would want to have a property with multiple plain values though.
Reasons:
Image you want an array of ints or strings.
- defining an extra resource type is really noisy in the schema
- wrapping each value in an extra object introduces a lot of overhead for larger databases
So there should be a datatype for "array of type T".
Defining the nested type would run into similar issues as #126 though.
There currently only is a
resource-arraydatatype, which requires using nested resources if there are multiple values.Often I would want to have a property with multiple plain values though.
Reasons:
Image you want an array of ints or strings.
So there should be a datatype for "array of type T".
Defining the nested type would run into similar issues as #126 though.