/** Details of a field configuration. */
export interface FieldConfigurationDetails {
  /** The description of the field configuration. */
  description?: string;
  /** The name of the field configuration. Must be unique. */
  name: string;
}
