/** Details of a field configuration scheme. */
export interface FieldConfigurationScheme {
  /** The description of the field configuration scheme. */
  description?: string;
  /** The ID of the field configuration scheme. */
  id: string;
  /** The name of the field configuration scheme. */
  name: string;
}
