Interface: VocabularyTerm
A single vocabulary term with its synonyms and selector information.
Remarks
Represents one named concept in a SAP business domain. The name is the
canonical identifier; synonyms are alternative human-readable names that
also resolve to this term. The selector (if present) enables direct
UI5 control discovery.
Example
const term: VocabularyTerm = {
name: 'supplier',
synonyms: ['vendor', 'vendorId', 'supplierId'],
domain: 'procurement',
sapField: 'LIFNR',
selector: { controlType: 'sap.m.Input', properties: { labelFor: 'Supplier' } },
};
Properties
domain
readonlydomain:SAPDomain
The SAP domain this term belongs to.
name
readonlyname:string
Canonical term name.
sapField?
readonlyoptionalsapField?:string
The underlying SAP ABAP field name (e.g. 'LIFNR').
selector?
readonlyoptionalselector?:UI5Selector
UI5 selector for direct control discovery.
synonyms
readonlysynonyms: readonlystring[]
Alternative names that also resolve to this term.