query_company_change_records
Track and retrieve detailed change records for a specific company by entering its full name to monitor historical updates and modifications.
Instructions
Query the change records of an company by its full name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entName | Yes | company full name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"entName": {
"description": "company full name",
"type": "string"
}
},
"required": [
"entName"
],
"type": "object"
}