defaultSchema: {
    "@context": "https://schema.org";
    "@graph": (
        | {
            "@context": "https://schema.org";
            "@id": string;
            "@type": "Person";
            name: string;
            url: string;
        }
        | {
            "@context": "https://schema.org";
            "@id": string;
            "@type": "WebSite";
            author: { "@id": string };
            name: string;
            url: string;
        }
    )[];
} = ...

Type declaration

  • @context: "https://schema.org"
  • @graph: (
        | {
            "@context": "https://schema.org";
            "@id": string;
            "@type": "Person";
            name: string;
            url: string;
        }
        | {
            "@context": "https://schema.org";
            "@id": string;
            "@type": "WebSite";
            author: { "@id": string };
            name: string;
            url: string;
        }
    )[]