Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    Preparing search index...

    Interface VocabularyDomain

    A domain of vocabulary terms grouped by name.

    Maps canonical term names to their full VocabularyTerm definitions.

    const domain: VocabularyDomain = {
    name: 'procurement',
    terms: {
    supplier: { name: 'supplier', synonyms: ['vendor'], domain: 'procurement' },
    },
    };
    interface VocabularyDomain {
        name: SAPDomain;
        terms: Readonly<Record<string, VocabularyTerm>>;
    }
    Index

    Properties

    Properties

    name: SAPDomain

    The SAP domain identifier.

    terms: Readonly<Record<string, VocabularyTerm>>

    All terms in this domain, keyed by canonical name.