Organisation + SoftwareApplication Schema (JSON-LD)

In this resource, you’ll get:

You’ll receive a ready-to-use JSON-LD script combining Organization and SoftwareApplication schema, specifically tailored for SaaS businesses.

This resource provides a complete example of structured data for a SaaS company and its product, combining the Organization and SoftwareApplication schema types in a single JSON-LD script. It describes your business, product category, supported platforms, and pricing, while linking the product to its provider for better context in search results. You can add this script directly to your site’s embed code area, update the placeholders with your own details, and then test it using Google’s Rich Results Test to make sure it’s recognised and error-free. By implementing this schema, you give search engines a clearer, richer understanding of your business and software offering, which can enhance your appearance in search listings.

How to use (Webflow)

  1. Open the "Settings" and copy the copy the Code Snippet below.
  2. Paste the Code Snippet inside the body section.
  3. Replace the TODO fields (logo URL, phone, languages) if needed.
  4. Publish, then test with Google’s Rich Results Test or Schema.org validator.

Unlock this resource for free

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "Organization",
      "@id": "https://example-saas.com/#organization",
      "name": "Example SaaS Inc.",
      "url": "https://example-saas.com/",
      "logo": "https://example-saas.com/path-to-logo.png",
      "description": "Example SaaS Inc. is a B2B software company providing cloud-based project management solutions to enterprises worldwide.",
      "foundingDate": "2021",
      "founder": {
        "@type": "Person",
        "name": "Jane Doe"
      },
      "contactPoint": {
        "@type": "ContactPoint",
        "contactType": "sales",
        "email": "sales@example-saas.com",
        "telephone": "+1-555-555-5555",
        "areaServed": ["US", "CA", "GB", "AU"],
        "availableLanguage": ["en"]
      },
      "sameAs": [
        "https://www.linkedin.com/company/example-saas",
        "https://twitter.com/example-saas",
        "https://www.youtube.com/@example-saas"
      ]
    },
    {
      "@type": "SoftwareApplication",
      "@id": "https://example-saas.com/#product",
      "name": "Example Project Manager",
      "applicationCategory": "BusinessApplication",
      "applicationSubCategory": "Project Management Software",
      "operatingSystem": "Web, iOS, Android",
      "description": "Example Project Manager is a cloud-based platform that enables teams to plan, track, and deliver projects efficiently with real-time collaboration.",
      "provider": {
        "@id": "https://example-saas.com/#organization"
      },
      "offers": {
        "@type": "Offer",
        "url": "https://example-saas.com/pricing",
        "priceCurrency": "USD",
        "price": "49",
        "priceSpecification": {
          "@type": "PriceSpecification",
          "price": "49",
          "priceCurrency": "USD",
          "billingDuration": "P1M",
          "unitCode": "MON"
        },
        "availability": "https://schema.org/InStock"
      }
    }
  ]
}
</script>
Copy Code
Oops! Something went wrong while submitting the form.
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "Organization",
      "@id": "https://example-saas.com/#organization",
      "name": "Example SaaS Inc.",
      "url": "https://example-saas.com/",
      "logo": "https://example-saas.com/path-to-logo.png",
      "description": "Example SaaS Inc. is a B2B software company providing cloud-based project management solutions to enterprises worldwide.",
      "foundingDate": "2021",
      "founder": {
        "@type": "Person",
        "name": "Jane Doe"
      },
      "contactPoint": {
        "@type": "ContactPoint",
        "contactType": "sales",
        "email": "sales@example-saas.com",
        "telephone": "+1-555-555-5555",
        "areaServed": ["US", "CA", "GB", "AU"],
        "availableLanguage": ["en"]
      },
      "sameAs": [
        "https://www.linkedin.com/company/example-saas",
        "https://twitter.com/example-saas",
        "https://www.youtube.com/@example-saas"
      ]
    },
    {
      "@type": "SoftwareApplication",
      "@id": "https://example-saas.com/#product",
      "name": "Example Project Manager",
      "applicationCategory": "BusinessApplication",
      "applicationSubCategory": "Project Management Software",
      "operatingSystem": "Web, iOS, Android",
      "description": "Example Project Manager is a cloud-based platform that enables teams to plan, track, and deliver projects efficiently with real-time collaboration.",
      "provider": {
        "@id": "https://example-saas.com/#organization"
      },
      "offers": {
        "@type": "Offer",
        "url": "https://example-saas.com/pricing",
        "priceCurrency": "USD",
        "price": "49",
        "priceSpecification": {
          "@type": "PriceSpecification",
          "price": "49",
          "priceCurrency": "USD",
          "billingDuration": "P1M",
          "unitCode": "MON"
        },
        "availability": "https://schema.org/InStock"
      }
    }
  ]
}
</script>
Copy Code