import { NameUrl } from '.'; export interface VCSBatchMetadataLD { '@context'?: Context; '@type'?: string; 'regen:vcsProjectId'?: string; 'regen:vcsRetirementSerialNumber'?: string; 'regen:additionalCertifications'?: NameUrl[]; } interface Context { schema: string; regen: string; 'regen:additionalCertifications': { '@container': '@list'; }; } export {};