{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RowV1", "title": "RowV1", "type": "object", "properties": { "id": { "type": "string", "nullable": true, "readOnly": true }, "data_id": { "type": "string", "nullable": true, "readOnly": true }, "data": { "$ref": "#/components/schemas/RowData" }, "columns": { "type": "array", "items": { "$ref": "#/components/schemas/ColumnV1" }, "nullable": true } }, "required": [ "data" ] }