book_appointment
Schedule appointments for custom framing services, art consultations, or workshop registrations at the art supply store.
Instructions
Schedule a new appointment for custom framing, consultations, or workshops.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customerName | Yes | Customer name | |
date | Yes | Date in YYYY-MM-DD format | |
service | Yes | Service type: framing, consultation, workshop | |
time | Yes | Time in HH:MM format |
Input Schema (JSON Schema)
{
"properties": {
"customerName": {
"description": "Customer name",
"type": "string"
},
"date": {
"description": "Date in YYYY-MM-DD format",
"type": "string"
},
"service": {
"description": "Service type: framing, consultation, workshop",
"type": "string"
},
"time": {
"description": "Time in HH:MM format",
"type": "string"
}
},
"required": [
"customerName",
"service",
"date",
"time"
],
"type": "object"
}