The "Response-Column" also uses custom JSON Schema:
{ "type": "object", "properties": { "profiles": { "type": "array", "description": "A list of validated LinkedIn profiles for product management professionals at the company. If no profiles are found, this array should be empty and the not_found field should be set to true.", "items": { "type": "object", "properties": { "profileUrl": { "type": "string", "description": "The LinkedIn profile URL of the candidate" }, "jobTitle": { "type": "string", "description": "The exact job title of the candidate as it appears on their LinkedIn profile" }, "confidenceScore": { "type": "integer", "description": "The composite confidence score for the profile, from 70 to 100" } }, "required": [ "profileUrl", "jobTitle", "confidenceScore" ], "additionalProperties": false } }, "notFound": { "type": "boolean", "description": "Set to true if no valid profiles are found and output is exactly '❌ Profiles Not Found'" } }, "required": [ "profiles", "notFound" ], "additionalProperties": false }