@adcp/sdk API Reference - v10.0.1
    Preparing search index...

    Interface ResolvedBrand

    Brand identity returned by the registry resolver.

    parent_brand is a registry hierarchy reference. New registry responses use the parent brand's canonical domain when the parent has one; older rows may still carry a portfolio-internal brand id from brand.json#/brands[].id. Consumers that need ancestry should use RegistrySync.getAncestors() rather than walking parent_brand directly.

    interface ResolvedBrand {
        canonical_id: string;
        canonical_domain: string;
        brand_name: string;
        names?: { [key: string]: string }[];
        keller_type?: "master" | "sub_brand" | "endorsed" | "independent";
        house_domain?: string;
        house_name?: string;
        brand_agent_url?: string;
        brand_manifest?: { [key: string]: unknown };
        source: "enriched" | "community" | "brand_json";
        parent_brand?: string;
    }

    Hierarchy

    • Omit<GeneratedResolvedBrand, "parent_brand">
      • ResolvedBrand
    Index

    Properties

    canonical_id: string
    acmecorp.com
    
    canonical_domain: string
    acmecorp.com
    
    brand_name: string
    Acme Corp
    
    names?: { [key: string]: string }[]
    keller_type?: "master" | "sub_brand" | "endorsed" | "independent"
    house_domain?: string
    house_name?: string
    brand_agent_url?: string
    brand_manifest?: { [key: string]: unknown }
    source: "enriched" | "community" | "brand_json"
    parent_brand?: string