Cookies & analytics

    We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.

    SwiftSchema Logo

    SwiftSchema

    Intuitive Schema Generation at Your Fingertips

    AboutLearnContact
      Stack

      Annual Report Stack

      Annual/impact report pages linking Article content to Organization context with FAQs and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Corporate/NGO annual or impact report pages
      • Investor relations report pages that need org context and FAQs
      • Pages where FAQs clarify scope, period, and access to downloads

      What's included

      • Captures the report content with headline, dates, and author/publisher.

      • Organization
        Open generator

        Anchors the org whose report this is, with logo and URL.

      • Frequently Asked Questions
        Open generator

        Answers period coverage, download access, and contact questions.

      • Breadcrumb
        Open generator

        Provides navigation context to the report page.

      Required properties (stack union)

      Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).

      author.name
      datePublished
      description
      headline
      itemListElement[].name
      logo
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      url

      Recommended properties (stack union)

      about.@id
      address.addressCountry
      dateModified
      itemListElement[].item
      mainEntityOfPage
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      publisher.name
      sameAs

      Combined JSON-LD

      Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.

      Validate
      [
        {
          "@context": "https://schema.org",
          "@type": "Article",
          "@id": "https://www.example.com/reports/2024-annual#article",
          "headline": "Example Corp — 2024 Annual Report",
          "description": "Financial and operational highlights for fiscal year 2024.",
          "datePublished": "2025-03-15",
          "dateModified": "2025-03-15",
          "url": "https://www.example.com/reports/2024-annual",
          "author": { "@type": "Organization", "name": "Example Corp" },
          "publisher": { "@type": "Organization", "name": "Example Corp" },
          "about": { "@id": "https://www.example.com/#org" }
        },
        {
          "@context": "https://schema.org",
          "@type": "Organization",
          "@id": "https://www.example.com/#org",
          "name": "Example Corp",
          "url": "https://www.example.com",
          "logo": "https://www.example.com/assets/logo.svg",
          "sameAs": [
            "https://www.linkedin.com/company/example-corp"
          ],
          "address": { "@type": "PostalAddress", "addressCountry": "US" }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "What period does this report cover?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Fiscal year 2024 (Jan 1, 2024 to Dec 31, 2024)."
              }
            },
            {
              "@type": "Question",
              "name": "How can I download the full report?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Download the PDF from the top of this page or request a printed copy from investor relations."
              }
            },
            {
              "@type": "Question",
              "name": "Who do I contact for IR questions?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Email ir@example.com for investor relations inquiries."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Reports", "item": "https://www.example.com/reports" },
            { "@type": "ListItem", "position": 3, "name": "2024 Annual Report", "item": "https://www.example.com/reports/2024-annual" }
          ]
        }
      ]

      Implementation steps

      1. Start from your live product detail page content; ensure titles, prices, and availability match the page.
      2. Embed one JSON-LD script in the head or just before the closing body tag using the combined example as a template.
      3. Fill shipping details for each region you serve and keep them aligned with on-page shipping tables.
      4. Attach your canonical MerchantReturnPolicy URL and keep the policy text in sync with Merchant Center.
      5. Add 3–6 FAQs that address purchase blockers (shipping, returns, compatibility) and keep answers consistent with visible content.
      6. Validate in the Rich Results Test and revalidate after price/availability/policy changes.

      Common errors and fixes

      FAQs

      Do I need both Article and Organization?

      Yes. Article represents the report; Organization anchors the entity the report is about.

      Can I include downloads?

      Link downloads in the Article body and ensure URLs in JSON-LD match visible download links.

      References