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