Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 482 Bytes

create-computation.mdx

File metadata and controls

28 lines (25 loc) · 482 Bytes
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"
      },
    ]
  },