Skip to main content

Data Category Layouts

EntityDatastoreDatastore.DataCategory.Layout

Data category layouts define how dataset categories are visually presented.

Use the Datastore_DataCategory_Layout endpoint to query data category layouts.

Endpoints

List Data Category Layouts

GET/v1/odata/Datastore_DataCategory_Layout

Single Data Category Layout

GET/v1/odata/Datastore_DataCategory_Layout({id})

Fields

Datastore Fields (inherited)

FieldTypeDescription
NameStringDisplay name
CodeStringUnique code identifier
LocalizedNameStringLocalized display name
IsDefaultBooleanWhether this is the default value

Relationships

RelationshipTarget EntityCardinalityDescription
DatasetCategoryDatasetCategory1:NDatasetCategory

Expanding Relationships

GET/v1/odata/Datastore_DataCategory_Layout({id})?$expand=DatasetCategory
GET/v1/odata/Datastore_DataCategory_Layout({id})/DatasetCategory

Filtering Examples

GET/v1/odata/Datastore_DataCategory_Layout?$filter=Name eq '{Name}'&$top={top}
GET/v1/odata/Datastore_DataCategory_Layout?$filter=contains(Name, '{Name}')&$top={top}
GET/v1/odata/Datastore_DataCategory_Layout?$filter=Code eq '{Code}'&$top={top}
GET/v1/odata/Datastore_DataCategory_Layout?$filter=IsDefault eq {IsDefault}&$top={top}