quickbase_validate_relationship
Verify integrity of QuickBase table relationships by validating foreign key links between parent and child tables to ensure data consistency and accuracy.
Instructions
Validate the integrity of a table relationship
Input Schema
Name | Required | Description | Default |
---|---|---|---|
childTableId | Yes | Child table ID | |
foreignKeyFieldId | Yes | Foreign key field ID to validate | |
parentTableId | Yes | Parent table ID |
Input Schema (JSON Schema)
{
"properties": {
"childTableId": {
"description": "Child table ID",
"type": "string"
},
"foreignKeyFieldId": {
"description": "Foreign key field ID to validate",
"type": "number"
},
"parentTableId": {
"description": "Parent table ID",
"type": "string"
}
},
"required": [
"parentTableId",
"childTableId",
"foreignKeyFieldId"
],
"type": "object"
}