DeleteProperty
Remove a property from the database by specifying its ID to maintain data integrity and manage storage efficiently.
Instructions
Delete a property from the database
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| propertyId | Yes | ID of the property to delete |
Input Schema (JSON Schema)
{
"properties": {
"propertyId": {
"description": "ID of the property to delete",
"type": "string"
}
},
"required": [
"propertyId"
],
"type": "object"
}