Documentation
    Preparing search index...

    Interface MdmArchetypeSpec

    Specification Schema Definition for an Archetype Supports recognized international ontologies (Schema.org, GS1 GPC, W3C SOSA, W3C WoT, ISO) and standard JSON Schema definitions for specification groups.

    interface MdmArchetypeSpec {
        archetypeId: string;
        collection: string;
        defaultSpecifications?: Record<string, unknown>;
        jsonSchema?: Record<string, unknown>;
        name: string;
        nature: string;
        ontologyMapping?: OntologyMappingInterface;
        optionalProperties?: string[];
        requiredProperties?: string[];
        typeCollection?: string;
    }
    Index

    Properties

    archetypeId: string
    collection: string
    defaultSpecifications?: Record<string, unknown>

    Default specification key-value pairs

    jsonSchema?: Record<string, unknown>

    Standard JSON Schema definition for specification groups & properties

    name: string
    nature: string
    ontologyMapping?: OntologyMappingInterface

    Recognized International Ontology Mapping

    optionalProperties?: string[]

    Array of optional specification property names

    requiredProperties?: string[]

    Array of required specification property names

    typeCollection?: string