import type { UnifiedSchemaResponseDto } from '../schemas/UnifiedSchemaResponseDto'; export interface ConfigFileSchemaResponseDto extends UnifiedSchemaResponseDto { /** * Config file id */ 'config-file-id'?: string; /** * Service branch */ 'service-branch'?: string; /** * Service id */ 'service-id'?: string; /** * This specifies the type of schema response */ type: 'config-file'; /** * Config file yaml with inputs populated */ yaml?: string; }