Table with no columns

A table containing no columns has been defined.

How to fix

Ensure that you have at least one column defined per table

Problem example:


{
  "tables": [
    {
      "schema": "Person",
      "name": "Address",
      "columns": []                   // Empty columns array
    }
  ]
}

Ensure that you have at least one column defined per table:

{
  "tables": [
    {
      "schema": "Person",
      "name": "Address",
      "columns": [
        {
          "name": "City",
          "deterministic": false,
          "maxLength": 15
        },
        {
          "name": "AddressLine1",
          "dataset": "AddressesUnique",
          "deterministic": false
        }
      ]
    }
  ]
}


Didn't find what you were looking for?