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