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