Input schema
{
"type": "object",
"properties": {
"full_name": {
"type": "string",
"description": "Visitor's full name"
},
"work_email": {
"type": "string",
"description": "Visitor's work email address"
},
"site_url": {
"type": "string",
"description": "Optional: URL of the site to evaluate with Agent Score"
},
"source": {
"type": "string",
"description": "Optional short context label, e.g. \"agent-score (United States)\""
}
},
"required": [
"full_name",
"work_email"
],
"additionalProperties": false
}