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

      Compliance / Certification Stack

      Compliance/certification pages linking Organization identity with Certificate details, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Security/compliance certification pages (SOC 2, ISO, PCI) tied to the organization
      • Trust/verification pages that need certificate metadata and FAQs
      • Pages where FAQs clarify scope, validity, and renewal cadence

      What's included

      • Organization
        Open generator

        Anchors the certified organization with logo and URL.

      • Certificate
        Open generator

        Represents the compliance certificate with issuer and validity.

      • Frequently Asked Questions
        Open generator

        Answers scope, renewal, and audit questions.

      • Breadcrumb
        Open generator

        Provides navigation context to the certification 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`).

      description
      issuedBy.name
      itemListElement[].name
      logo
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      url

      Recommended properties (stack union)

      contactPoint.contactType
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      sameAs
      url
      validUntil

      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": "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"
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "Certificate",
          "@id": "https://www.example.com/trust/soc2#certificate",
          "name": "SOC 2 Type II — Example Corp",
          "description": "SOC 2 Type II report covering Security and Availability trust principles.",
          "issuedBy": { "@type": "Organization", "name": "Trusted Auditors LLC" },
          "validUntil": "2026-03-31",
          "url": "https://www.example.com/trust/soc2"
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Which trust principles are covered?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Security and Availability. Privacy and Confidentiality are planned for the next audit cycle."
              }
            },
            {
              "@type": "Question",
              "name": "How often is this renewed?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "We undergo annual audits and publish the updated report within 30 days of completion."
              }
            },
            {
              "@type": "Question",
              "name": "Can I request the full report?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Request the latest SOC 2 report via our trust portal. An NDA may be required."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Trust", "item": "https://www.example.com/trust" },
            { "@type": "ListItem", "position": 3, "name": "SOC 2 Certification", "item": "https://www.example.com/trust/soc2" }
          ]
        }
      ]

      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

      Should I include multiple certificates?

      Add one Certificate object per certification shown on the page (e.g., SOC 2, ISO 27001) with unique @id values.

      How do I handle report requests?

      Link to your trust portal or contact flow in the Certificate.url and the on-page content; keep JSON-LD aligned.

      References