verify_company_name_and_president
Verify consistency between a company's full name and its legal representative's name. Returns 0 for match, 1 for mismatch. Use fuzzy query to obtain company name first.
Instructions
Verification of the two elements of the legal representative's name and company full name. Return 0 to indicate consistency, and return 1 to indicate inconsistency. Please use the fuzzy query tool to obtain the company full name before calling this tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entName | Yes | company full name | |
operName | Yes | representative's name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"entName": {
"description": "company full name",
"type": "string"
},
"operName": {
"description": "representative's name",
"type": "string"
}
},
"required": [
"operName",
"entName"
],
"type": "object"
}