import type { UnifiedSchemaRequestDto } from '../schemas/UnifiedSchemaRequestDto'; export interface ArtifactSchemaRequestDto extends UnifiedSchemaRequestDto { /** * Artifact id */ 'artifact-id'?: string; /** * Service branch */ 'service-branch'?: string; /** * Service id */ 'service-id'?: string; /** * This specifies the type of schema request */ type: 'artifact'; }