request_cleaning
Book cleaning services in San Francisco by providing your name, phone number, and address to schedule professional cleaning appointments.
Instructions
Request cleaning service in San Francisco
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Service address in San Francisco | |
name | Yes | Customer name | |
phone | Yes | Phone number (10-digit US format) |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Service address in San Francisco",
"maxLength": 200,
"minLength": 10,
"type": "string"
},
"name": {
"description": "Customer name",
"maxLength": 100,
"minLength": 2,
"type": "string"
},
"phone": {
"description": "Phone number (10-digit US format)",
"pattern": "^[0-9\\s\\-\\(\\)\\+]+$",
"type": "string"
}
},
"required": [
"name",
"phone",
"address"
],
"type": "object"
}