Acceldata
Acceldata
Last updated:

Metadata Schema

Returned by Retrieve Asset Metadata.

Top-level Fields

Field

Type

Description

columns

array

List of column definitions

Nested: columns[]

Field

Type

Description

Example

name

string

Column name

email

dataType

string

Column type

string

nullable

boolean

Whether null allowed

true

comment

string

Column description

Customer email

Example JSON

Json

{

"columns": [

{ "name": "id", "dataType": "integer", "nullable": false },

{ "name": "email", "dataType": "string", "nullable": true }

]

}