// Copyright © 2022-2026 Partium, Inc. DBA Partium /** * A selectable attribute definition returned by the Data API. */ export interface SelectableAttribute { /** * Unique identifier for the attribute definition. */ attributeId: string; /** * Display name of the attribute in the requested language. */ name?: string | null; /** * True when the attribute is marked as a technical attribute. */ technicalAttribute: boolean; }