OnlinePresence
Online presence point for an organization or person - website, social media profiles, online platforms
6 properties
Schema
Properties
| Property | Type | Mode | Description | Required |
|---|---|---|---|---|
| platform | string | stored | Platform or service name (website, linkedin, twitter, facebook, instagram, youtube, github, etc.) Example: | Required |
| url | string | stored | URL to the profile or page Example: | Required |
| handle | string | stored | Username or handle on the platform (without @ symbol) Example: | Optional |
| verified | boolean | stored | Whether this is a verified/official account Example: | Optional |
| primary | boolean | stored | Whether this is the primary online presence Example: | Optional |
| label | string | stored | Human-readable label Example: | 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"
}