Table of Contents

About

An organization page is a type of page that defines information about your organization.

Google uses it to create the knowledge panel

How to create an organization page

To create a page on your website that contains your organization information such as our About us page, you need to define the type to Organization

Combostrap will then add the following properties:

How to add extra properties

You can also add extra properties such as the organization details in the json-ld property.

For example, in our About us page, we have set the following properties:

{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "ComboStrap",
  "email": "[email protected]",
  "slogan": "Growing the world GDP of publishers and creators",
  "address": {
    "@type": "PostalAddress",
    "addressLocality": "Oegstgeest, Netherlands",
    "postalCode": "2343KE"
  },
  "parentOrganization": {
    "@type": "organization",
    "name": "Bytle",
    "url": "https://bytle.net"
  }
}