{ "$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" } } } }