title | openapi |
---|---|
Create Computation |
post /computations |
Create a new computation.
Tables can further reference computations in the column schema:
"schema": {
"columns": [
{
"id": "invoiceDate",
"displayName": "Invoice Date",
"type": {
"kind": "computation",
"id": "abc123"
}
},
{
"id": "totalAmount",
"displayName": "Total",
"type": "number"
},
]
},