Typedef
| Static Public Summary | ||
| public |
A change indicating a modification to a schema or column.
|
|
| public |
An array of changes containing items of type Change
|
|
| public |
A column describing a single property of data.
|
|
| public |
A change indicating a column has been created.
|
|
| public |
A change indicating a column has been removed.
|
|
| public |
A change indicating a column has been renamed.
|
|
| public |
A change indicating the type of a column has changed.
|
|
| public |
A container for data that also includes information about the project and schema.
|
|
| public |
An object containing actual data, the keys are the column names and the values are depending on the column type.
|
|
| public |
A project
|
|
| public |
A change indicating a project has been created
|
|
| public |
A change indicating a project has been removed
|
|
| public |
A change indicating a project has been renamed
|
|
| public |
A change indicating a project has been tagged
|
|
| public |
A schema describing the properties of data.
|
|
| public |
A change indicating a schema has been created.
|
|
| public |
A change indicating a schema has been removed.
|
|
| public |
A change indicating a schema has been renamed.
|
|
| public |
A result of the validation containing errors when failed.
|
|
Static Public
public Change: Object source
A change indicating a modification to a schema or column.
Properties:
| Name | Type | Attribute | Description |
| projectId | String | The id of the project that this change applies to |
|
| schemaId | String | The id of the schema that this change applies to |
|
| change | String | A string indicating the type of change, this can be any of:
|
public ColumnRenameChange: Object source
A change indicating a column has been renamed.
Properties:
| Name | Type | Attribute | Description |
| projectId | String | The id of the project that this change applies to |
|
| schemaId | String | The id of the schema that this change applies to |
|
| columnId | String | The id of the column that has been renamed |
|
| name | String | The new name of the column |
|
| oldName | String | The old name of the column |
public ColumnTypechangeChange: Object source
A change indicating the type of a column has changed.
Properties:
| Name | Type | Attribute | Description |
| projectId | String | The id of the project that this change applies to |
|
| schemaId | String | The id of the schema that this change applies to |
|
| columnId | String | The id of the column that has changed |
|
| columnName | String | The name of the the column that has changed |
|
| type | String | The new type of the column |
|
| oldType | String | The old type of the column |
public DataInfo: Object source
A container for data that also includes information about the project and schema.
public Item: Object source
An object containing actual data, the keys are the column names and the values are depending on the column type.
Properties:
| Name | Type | Attribute | Description |
| value | * | Test |