Skip to content

adding items keyword to text arrays

Amanda Lewis requested to merge fix/array-items into fix/inconsistencies

This can keep track of updates to the schema where the array types need to have the items keyword that specifies the type of the values.

The text_array type needs to have

"items": {
    "type": "string"
}

and the numerical_array type needs to have

"items": {
    "type": "number"
}

Merge request reports