LinkedIn · Schema

NoteData

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
note string
author object
atsCreatedAt integer
View JSON Schema on GitHub

JSON Schema

linkedin-notedata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NoteData",
  "title": "NoteData",
  "type": "object",
  "properties": {
    "note": {
      "type": "string",
      "example": "Great candidate, recommend for next round."
    },
    "author": {
      "$ref": "#/components/schemas/PersonName"
    },
    "atsCreatedAt": {
      "type": "integer",
      "format": "int64",
      "example": 1702693664000
    }
  }
}