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

      SaaS / Software Schema Stack

      Software application pages with organization identity, reviews, FAQs, and breadcrumb context. Works for web and mobile apps.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Product/feature pages for SaaS or web apps
      • App listings that need org identity, reviews, and FAQs
      • Pages where clear pricing/eligibility and navigation help conversions

      What's included

      • Software App
        Open generator

        Core application entity with name, description, category, OS/platform, and offers.

      • Organization
        Open generator

        Company identity backing the app; helps trust and eligibility.

      • Social proof for the app.

      • Frequently Asked Questions
        Open generator

        Address pricing, trials, integrations, and support.

      • Breadcrumb
        Open generator

        Clarify where the app page sits in the site.

      Required properties (stack union)

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

      applicationCategory
      author.name
      description
      itemListElement[].name
      itemReviewed.@id
      logo
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      offers.price
      offers.priceCurrency
      operatingSystem
      reviewBody
      reviewRating.ratingValue
      url

      Recommended properties (stack union)

      aggregateRating.ratingValue
      aggregateRating.reviewCount
      contactPoint.contactType
      contactPoint.telephone
      datePublished
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      name
      offers.availability
      offers.url
      reviewRating.bestRating
      sameAs[]
      screenshot
      softwareVersion

      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": "SoftwareApplication",
          "@id": "https://www.example.com/app/crm-suite#app",
          "name": "CRM Suite",
          "description": "All-in-one CRM with pipeline, email, and analytics for B2B teams.",
          "applicationCategory": "BusinessApplication",
          "operatingSystem": "Web",
          "softwareVersion": "5.2.1",
          "screenshot": "https://www.example.com/images/crm-suite-dashboard.webp",
          "offers": {
            "@type": "Offer",
            "price": "49.00",
            "priceCurrency": "USD",
            "availability": "https://schema.org/InStock",
            "url": "https://www.example.com/app/crm-suite#pricing"
          },
          "aggregateRating": {
            "@type": "AggregateRating",
            "ratingValue": 4.6,
            "reviewCount": 312
          },
          "publisher": {
            "@type": "Organization",
            "name": "Example Software",
            "url": "https://www.example.com"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "Organization",
          "@id": "https://www.example.com/#org",
          "name": "Example Software",
          "url": "https://www.example.com",
          "logo": "https://www.example.com/images/logo-120x60.png",
          "sameAs": [
            "https://www.linkedin.com/company/example",
            "https://twitter.com/example"
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "Review",
          "@id": "https://www.example.com/reviews/crm-suite-1#review",
          "name": "Great for scaling SDR teams",
          "reviewBody": "Easy to set up, strong email automation, and good reporting.",
          "datePublished": "2026-02-08",
          "reviewRating": {
            "@type": "Rating",
            "ratingValue": 5,
            "bestRating": 5
          },
          "author": { "@type": "Person", "name": "Priya S." },
          "itemReviewed": { "@id": "https://www.example.com/app/crm-suite#app" }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Is there a free trial?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes, 14 days with all features. No credit card required."
              }
            },
            {
              "@type": "Question",
              "name": "Do you integrate with Slack?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Connect Slack to push deal updates and alerts from pipelines."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Apps", "item": "https://www.example.com/app" },
            { "@type": "ListItem", "position": 3, "name": "CRM Suite", "item": "https://www.example.com/app/crm-suite" }
          ]
        }
      ]

      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

      Can I use WebApplication instead of SoftwareApplication?

      Yes. For browser-only products, set @type to WebApplication; keep required fields aligned to the page content.

      How should I handle pricing?

      Provide the entry-level or representative price with currency. Keep the offer URL pointing to your pricing or signup section.

      References