/** The details of the field configuration scheme. */
export interface UpdateFieldConfigurationSchemeDetails {
  /** The name of the field configuration scheme. The name must be unique. */
  name: string;
  /** The description of the field configuration scheme. */
  description?: string;
}
