UNPKG

@ts4ocds/core

Version:

TS4OCDS is a library of TypeScript entities that takes an approach to befriend large OCDS JSONs with your per-project routine of writing whole lotta interfaces for them.

17 lines (13 loc) 564 B
/** * @packageDocumentation * @module Standard.RelatedProcess */ import { CodeList, OpenCodeList } from '@ts4ocds/utils'; /** * The {@link RelatedProcess | related process} {@link RelatedProcess.scheme | scheme} describes the kind of identifier used to cross-reference another process. */ export const Schemes = new OpenCodeList(['ocid']); /** * The {@link RelatedProcess | related process} {@link RelatedProcess.scheme | scheme} describes the kind of identifier used to cross-reference another process. */ export type Scheme = CodeList<typeof Schemes>;