get-a-subject-with-detail
Retrieve detailed course information from ZEN University's syllabus by specifying enrollment year and a keyword search. Ideal for students seeking specific course details.
Instructions
Retrieve detailed a course information from the ZEN University syllabus. The numeric intended year of enrollment (enrollment_grade (optional)) and the freeword parameter (freeword) must be specified. The freeword parameter is intended for searching course names and similar keywords.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enrollment_grade | No | year of enrollment (e.g. 1, 2, 3, 4) | |
freeword | Yes | the freeword search parameter (e.g. 'ITリテラシー') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"enrollment_grade": {
"description": " year of enrollment (e.g. 1, 2, 3, 4)",
"maximum": 4,
"minimum": 1,
"type": "number"
},
"freeword": {
"description": "the freeword search parameter (e.g. 'ITリテラシー')",
"type": "string"
}
},
"required": [
"freeword"
],
"type": "object"
}