/** * A reference to a classifier. */ export interface ClassifierRef { /** The classifier ID. */ id: string; /** The classifier version to use: `"draft"` or a specific semver string (e.g. `"0.1"`). `"latest"` is not allowed because classification IDs used for routing are tied to a specific version's config. */ version: string; }