LinkedIn · Schema

LeadGenRecord

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
id string
formId string
submittedAt integer
answers array
View JSON Schema on GitHub

JSON Schema

linkedin-leadgenrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LeadGenRecord",
  "title": "LeadGenRecord",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "urn:li:leadGenResponse:123456"
    },
    "formId": {
      "type": "string",
      "example": "urn:li:leadGenForm:789012"
    },
    "submittedAt": {
      "type": "integer",
      "format": "int64",
      "example": 1702693664000
    },
    "answers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LeadGenAnswer"
      }
    }
  }
}