Plan
Overview
This is a fact entity which contains information about plans in the platform.
Usage in itslearning
In abstract a (course) plan is the chronological sequence through which the teacher will go through the content of a course. The plan commonly has a buildup in difficulty; students first need to master the basics before they can understand the advanced parts. In addition the plan often describes the dates (and times) when specific content will be discussed. Each step in the sequence is provided with additional information. For example the outline, goals, resources, activities, etc. Working with the planner can have several benefits, depending on country, segment, the vision of the school, etc:
See also: https://support.itslearning.com/en/support/solutions/articles/7000064829-new-planner |
Relationships
This entity has relation with the following entities:
Diagram
Entity Details
Name | Data type | Nullable | Description |
---|---|---|---|
PlanId | Edm.Int32 | false | Identifier of the plan |
PlanTitle | Edm.String | true | Title of the plan |
PlanDescription | Edm.String | true | Description of the plan |
PlanStatus | Edm.String | true | Status of the plan, possible values: Active, Inactive (not visible for students), Trashcan |
StartDate | Edm.DateTime | true | Start date set on the plan |
EndDate | Edm.DateTime | true | End date set on the plan |
CourseId | Edm.Int32 | false | Related course identifier |
TopicTitle | Edm.String | true | Topic title if set |
T_ModifiedDate | Edm.DateTime | false | Date and time the entity was last modified in data warehouse |
Request body
https:
//reporting.itslearning.com/odata/engine7/Plans?$top=10
Response body - JSON (default output format)
{
"odata.metadata"
:
"https://reporting.itslearning.com/odata/site/$metadata#Plans"
,
"value"
:[
{
"PlanId"
:
1
,
"PlanTitle"
:
"Plan1"
,
"PlanDescription"
:
"Plan1 description"
,
"PlanStatus"
:
"Active"
,
"StartDate"
:
"1900-01-01T00:00:00"
,
"EndDate"
:
"1900-01-01T00:00:00"
,
"TopicTitle"
:
"Topic1"
,
"CourseId"
:
1424
,
"T_ModifiedDate"
:
"2024-06-05T08:01:00"
},{
"PlanId"
:
2
,
"PlanTitle"
:
"Plan2"
,
"PlanDescription"
:
"Plan2 description"
,
"PlanStatus"
:
"Trashcan"
,
"StartDate"
:
"1900-01-01T00:00:00"
,
"EndDate"
:
"1900-01-01T00:00:00"
,
"TopicTitle"
:
""
,
"CourseId"
:
1424
,
"T_ModifiedDate"
:
"2024-06-05T08:01:00"
}
]
}