The field contains data that is a valid JSON format arrays. Read more in Table Schema Standard.
from frictionless import Schema, extract, fields
data = [['name'], ['["value1", "value2"]']]
rows = extract(data, schema=Schema(fields=[fields.ArrayField(name='name')]))
print(rows)
{'memory': [{'name': ['value1', 'value2']}]}
Field representation
(*, name: str, title: Optional[str] = None, description: Optional[str] = None, format: str = default, missing_values: List[str] = NOTHING, constraints: Dict[str, Any] = NOTHING, rdf_type: Optional[str] = None, example: Optional[str] = None, schema: Optional[Schema] = None, array_item: Optional[Dict[str, Any]] = NOTHING) -> None
A dictionary that specifies the type and other constraints for the data that will be read in this data type field.
Optional[Dict[str, Any]]