Type | Read/write | Author | Availability |
Write | Finbourne | Provided with LUSID |
Providing you have sufficient access control permissions, the Lusid.DataType.Writer
provider enables you to write a Luminesce SQL query that creates or updates data types.
Note
The LUSID user running the query must have sufficient access control permissions to both use the provider and interact with data types in LUSID. This should automatically be the case if you are the domain owner.
You must construct a valid table of data to write, one data type type per record. Lusid.DataType.Writer
lists the fields (columns) available to populate with values for each record, and has a set of parameters to help you construct a valid table.
Your query can use the WriteAction
field to perform one of the following operations:
Insert (create) a data type. This operation fails if the data type already exists. This is the default operation if you omit
WriteAction
.Update a data type. Note it is possible to update all fields except the
Scope
andCode
fields. This operation fails if the data type does not already exist.
See also: Lusid.DataType
Basic usage
Query parameters
Lusid.DataType.Writer
has parameters that help you construct a valid table of data to write.
Note
The
toWrite
parameter is mandatory and used to actually write the table of data into LUSID.
To list available parameters, their data types, default values, and an explanation for each, run the following query using a suitable tool:
Data fields
Lusid.DataType.Writer
lists the fields you can populate in your table of data to write.
Depending on the operation you want to perform, the following fields are mandatory to include in the table of data:
Operation | Mandatory fields |
Create |
|
Update |
|
To list all available fields, their data types, whether fields are considered 'main', and an explanation for each, run the following query using a suitable tool:
Write errors
We recommend examining the results of every write query using one or more of the WriteError
, WriteErrorCode
and WriteErrorDetail
fields.
For each record in the table of data to write, Lusid.DataType.Writer
returns an error code. If the operation is successful, the error code is 0. If unsuccessful, a positive error code and explanation help you discover why LUSID considers the operation invalid.
For example, the query:
... fails because a Code
is not specified.
Examples
Note
For more example Luminesce SQL queries, visit our Github repo.
Example 1: Create a data type
You can create a data type in your LUSID domain by supplying all mandatory fields and using 'insert' as WriteAction
.
Example 2: Update a data type with additional details
You can update an existing data type by supplying the mandatory and existing fields, the fields you want to update, and by using 'update' as WriteAction
.
Note
Fields not supplied are set to null. You should therefore ensure your table of data includes any existing fields and their values.
Example 3: Create multiple data types at the same time
You can create all your data types at the same time in one Luminesce query. In this example, the query defaults to a create operation as no explicit WriteAction
is specified.
Example 4: Create a data type and store reference data
You can use the FieldDefinitionIsUnique
, FieldDefinitionIsRequired
, FieldDefinitionKey
, ReferenceDataValue
, ReferenceDataFieldKey
and ReferenceDataFieldValue
to store additional reference data against the set of allowed values for a data type.
In this example, we create a naceCode
data type that simultaneously constrains the user to only entering recognised NACE codes, and additionally stores the full activity definition for each code. This means you don’t have to create additional properties to store this information. Read more.
The first ten rows of the table of data returned by the query looks like this, with the AcceptableValues
column populated based on the values we supplied for ReferenceDataValue
: