relate_cases
Link multiple case instances to a primary case to establish relationships, streamlining case management and organization. Requires primary case ID and an array of related case IDs.
Instructions
Create relationships between cases by relating a set of case instances to a primary case
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseID | Yes | Primary case ID to relate other cases to. Example: "ON6E5R-DIYRecipe-Work-RecipeCollection R-1008". Must be a complete case identifier including spaces and special characters. | |
cases | Yes | Array of case objects to relate to the primary case. Each case must have an ID property. |
Input Schema (JSON Schema)
{
"properties": {
"caseID": {
"description": "Primary case ID to relate other cases to. Example: \"ON6E5R-DIYRecipe-Work-RecipeCollection R-1008\". Must be a complete case identifier including spaces and special characters.",
"type": "string"
},
"cases": {
"description": "Array of case objects to relate to the primary case. Each case must have an ID property.",
"items": {
"additionalProperties": false,
"properties": {
"ID": {
"description": "Full case handle of the case to relate. Example: \"ON6E5R-DIYRecipe-Work-RecipeCollection R-1009\"",
"type": "string"
}
},
"required": [
"ID"
],
"type": "object"
},
"maxItems": 50,
"minItems": 1,
"type": "array"
}
},
"required": [
"caseID",
"cases"
],
"type": "object"
}