import type { EnvironmentMetadata } from '../schemas/EnvironmentMetadata'; import type { UnifiedSchemaResponseDto } from '../schemas/UnifiedSchemaResponseDto'; export interface EnvironmentSchemaResponseDto extends UnifiedSchemaResponseDto { /** * environment id */ 'env-id'?: string; /** * environment related metadata like git details */ 'env-metadata'?: EnvironmentMetadata; /** * This specifies the type of schema response */ type: 'environment'; /** * Environment yaml with inputs populated */ yaml?: string; }