Table
Table content. Columns are optional; rows are the only required field.
Metadata
Definition
#/$defs/Table
Type
object
Source
spec/schemas/opf.schema.json
Fields
columns
Type: array<string> · Optional · Default: —
Optional column labels rendered above table rows.
{
"columns": [
"Region",
"Q3 Revenue",
"Q4 Revenue",
"YoY %"
]
}rows
Type: array<array<ref:TableCell>> · Required · Default: —
Two-dimensional table row data; each row aligns by index with columns when columns are supplied.
{
"rows": [
[
"North America",
12.4,
18.1,
"46%"
],
[
"EMEA",
8.2,
11.5,
"40%"
]
]
}