Metadata Management
Usage
Domain / Namespace
Authorisation will typically be provided at the Namespace level.
Creating a Metadata Type
POST
example to create metadata-type.
Request body:
Response:
Field | Description |
---|---|
id | UUID for the resource. Auto-generated, no need to pass when creating. |
version | Indicates how many times this resource has been updated. Auto-generated, no need to pass when creating. |
namespace | UUID of the namespace that this metadata type belongs to. |
name | Name for the metadata type. |
references | An array of metadata type IDs that will be used by the compiler to attach related references, if any. Can be left as an empty array by default. |
referenceType | Indicates how this resource will be referenced when compiled by the compiler. Either EMBED or LINK . Can be left as LINK by default. |
Creating Metadata
POST
example to create metadata
Request body:
Response:
Field | Description |
---|---|
id | UUID for the resource. |
version | A timestamp containing when this resource was updated. Auto-generated by the system. No need to pass when creating/updating. |
latest | A boolean value: false means this is a version history, true means this is the latest value. Auto-generated by the system. No need to pass when creating/updating. |
metadataType | A metadata type ID. |
metadataId | A unique identifier provided by the developer for this resource. It will be part of the URL when this resource is compiled. |
status | Indicates the status of the resource, which can be AVAILABLE , ALLOCATED , or PUBLISHED . You must set this to PUBLISHED by default; otherwise, it will not generate compiled metadata. |
targetGroup | Another category for this resource used for drawing. Can be left as an empty string. |
metadata | Accepts an object with arbitrary properties. This can be any data you want to store for this resource and will be part of the compiled data by the compiler. |
Was this page helpful?