import type { MetadataTypeV3 } from '../schemas/MetadataTypeV3'; /** * Metadata entry */ export interface MetadataV3 { /** * Unique identifier for this metadata entry * @format uuid */ id: string; /** * The metadata key name * @example "environment" */ key: string; type: MetadataTypeV3; /** * The metadata value * @example "production" */ value: string; }