Some checks failed
BotServer CI / build (push) Has been cancelled
- inscricao, consultar_inscricao, agendamento_visita, informacoes_curso - documentos_necessarios, contato_secretaria, calendario_letivo - start.bas with USE_KB carta, proc
48 lines
No EOL
1.3 KiB
JSON
48 lines
No EOL
1.3 KiB
JSON
{
|
|
"name": "agendamento_visita",
|
|
"description": "Agendar uma visita à Escola Salesiana para conhecer as instalações (Confirmar todos os dados com o usuário antes de executar a ferramenta)",
|
|
"input_schema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"telefone": {
|
|
"type": "string",
|
|
"description": "Telefone com DDD",
|
|
"example": "(21) 99999-9999"
|
|
},
|
|
"email": {
|
|
"type": "string",
|
|
"description": "Email para contato",
|
|
"example": "joao@example.com"
|
|
},
|
|
"dataVisita": {
|
|
"type": "string",
|
|
"description": "Data desejada para visita (formato ISO: YYYY-MM-DD)",
|
|
"example": "2026-03-15",
|
|
"format": "date"
|
|
},
|
|
"horario": {
|
|
"type": "string",
|
|
"description": "Horário preferencial (formato HH:MM, entre 8h e 17h)",
|
|
"example": "10:00"
|
|
},
|
|
"numeroVisitantes": {
|
|
"type": "integer",
|
|
"description": "Número de visitantes",
|
|
"example": "3"
|
|
},
|
|
"nomeResponsavel": {
|
|
"type": "string",
|
|
"description": "Nome do responsável",
|
|
"example": "João Silva"
|
|
}
|
|
},
|
|
"required": [
|
|
"nomeResponsavel",
|
|
"telefone",
|
|
"email",
|
|
"dataVisita",
|
|
"horario",
|
|
"numeroVisitantes"
|
|
]
|
|
}
|
|
} |