OnlinePresence

Online presence point for an organization or person - website, social media profiles, online platforms

6 properties
Schema

Properties

PropertyTypeModeDescriptionRequired
platformstring
stored

Platform or service name (website, linkedin, twitter, facebook, instagram, youtube, github, etc.)

Example: "website"

Required
urlstring
stored

URL to the profile or page

Example: "https://acme.com"

Required
handlestring
stored

Username or handle on the platform (without @ symbol)

Example: "acmecorp"

Optional
verifiedboolean
stored

Whether this is a verified/official account

Example: true

Optional
primaryboolean
stored

Whether this is the primary online presence

Example: true

Optional
labelstring
stored

Human-readable label

Example: "Official Website"

Optional

Examples

Example 1

{
  "@type": "OnlinePresence",
  "platform": "website",
  "url": "https://acme.com",
  "primary": true,
  "label": "Official Website"
}

Example 2

{
  "@type": "OnlinePresence",
  "platform": "linkedin",
  "url": "https://linkedin.com/company/acme-corp",
  "handle": "acme-corp",
  "verified": true,
  "label": "LinkedIn Company Page"
}

Example 3

{
  "@type": "OnlinePresence",
  "platform": "twitter",
  "url": "https://twitter.com/acmecorp",
  "handle": "acmecorp",
  "verified": true
}

Example 4

{
  "@type": "OnlinePresence",
  "platform": "github",
  "url": "https://github.com/acme-corp",
  "handle": "acme-corp"
}