import type { UnifiedSchemaRequestDto } from '../schemas/UnifiedSchemaRequestDto'; export interface EnvironmentSchemaRequestDto extends UnifiedSchemaRequestDto { /** * env branch */ 'env-branch'?: string; /** * environment id */ 'env-id'?: string; /** * This specifies the type of schema request */ type: 'environment'; }