import type { UnifiedSchemaResponseDto } from '../schemas/UnifiedSchemaResponseDto'; export interface EnvironmentsSchemaResponseDto extends UnifiedSchemaResponseDto { /** * Environment group id */ 'env-group-id'?: string; /** * This specifies the type of schema response */ type: 'environments'; /** * Yaml with inputs populated */ yaml?: string; }