search_teachers_advanced
Filter and sort teachers on Manalink by subject, grade level, teaching features, desired period, and criteria like certification or ratings for precise tutor matching.
Instructions
科目、学年、特徴、ソート順、指導期間を指定して先生を検索します
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_feature_id | No | 特徴ID | |
desired_teaching_period | No | 指導期間 (monthly: 長期, once: 短期) | |
grade_ids | No | 学年IDの配列 | |
sort | No | ソート順 | |
subject_ids | No | 科目IDの配列 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"course_feature_id": {
"description": "特徴ID",
"type": "number"
},
"desired_teaching_period": {
"description": "指導期間 (monthly: 長期, once: 短期)",
"enum": [
"monthly",
"once"
],
"type": "string"
},
"grade_ids": {
"description": "学年IDの配列",
"items": {
"type": "number"
},
"type": "array"
},
"sort": {
"description": "ソート順",
"enum": [
"pr",
"certification",
"rating",
"lesson_count",
"latest"
],
"type": "string"
},
"subject_ids": {
"description": "科目IDの配列",
"items": {
"type": "number"
},
"type": "array"
}
},
"type": "object"
}