Interface: VocabularyDomain
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
The SAP domain identifier.
terms
readonlyterms:Readonly<Record<string,VocabularyTerm>>
All terms in this domain, keyed by canonical name.