Edit page in Livemark
(2023-06-06 13:09)

Object Field

Overview

The field contains data which is valid JSON. Read more in Table Schema Standard.

Example

from frictionless import Schema, extract, fields

data = [['name'], ['{"key": "value"}']]
rows = extract(data, schema=Schema(fields=[fields.ObjectField(name='name')]))
print(rows)
{'memory': [{'name': {'key': 'value'}}]}

Reference

fields.ObjectField (class)

fields.ObjectField (class)

Field representation

Signature

(*, name: str, title: Optional[str] = None, description: Optional[str] = None, format: str = default, missing_values: List[str] = NOTHING, constraints: dict = NOTHING, rdf_type: Optional[str] = None, example: Optional[str] = None, schema: Optional[Schema] = None) -> None

Parameters

  • name (str)
  • title (Optional[str])
  • description (Optional[str])
  • format (str)
  • missing_values (List[str])
  • constraints (dict)
  • rdf_type (Optional[str])
  • example (Optional[str])
  • schema (Optional[Schema])

fields.objectField.name (property)

Signature

str

fields.objectField.type (property)

Signature

ClassVar[str]

fields.objectField.title (property)

Signature

Optional[str]

fields.objectField.description (property)

Signature

Optional[str]

fields.objectField.format (property)

Signature

str

fields.objectField.missing_values (property)

Signature

List[str]

fields.objectField.constraints (property)

Signature

dict

fields.objectField.rdf_type (property)

Signature

Optional[str]

fields.objectField.example (property)

Signature

Optional[str]

fields.objectField.schema (property)

Signature

Optional[Schema]

fields.objectField.builtin (property)

Signature

ClassVar[bool]

fields.objectField.supported_constraints (property)

Signature

ClassVar[List[str]]