Interface: VocabularyDomain
Defined in: src/vocabulary/types.ts:91
A domain of vocabulary terms grouped by name.
Remarks
Maps canonical term names to their full VocabularyTerm definitions.
Example
const domain: VocabularyDomain = {
name: 'procurement',
terms: {
supplier: { name: 'supplier', synonyms: ['vendor'], domain: 'procurement' },
},
};
Properties
name
readonlyname:SAPDomain
Defined in: src/vocabulary/types.ts:93
The SAP domain identifier.
terms
readonlyterms:Readonly<Record<string,VocabularyTerm>>
Defined in: src/vocabulary/types.ts:95
All terms in this domain, keyed by canonical name.