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