LinkedIn · Schema

Seatholder

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
seatUrn string
firstName string
lastName string
emailAddress string
active boolean
View JSON Schema on GitHub

JSON Schema

linkedin-seatholder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Seatholder",
  "title": "Seatholder",
  "type": "object",
  "properties": {
    "seatUrn": {
      "type": "string",
      "example": "urn:li:seat:12345"
    },
    "firstName": {
      "type": "string",
      "example": "Jane"
    },
    "lastName": {
      "type": "string",
      "example": "Recruiter"
    },
    "emailAddress": {
      "type": "string",
      "format": "email",
      "example": "[email protected]"
    },
    "active": {
      "type": "boolean",
      "example": true
    }
  }
}