Toddler Cycle
Fetch scores for a specific Toddler cycle.
Deprecated Endpoint
The /envscales endpoint is deprecated. Please use /observation-data for all new integrations.
The old endpoint will continue to work but may be removed in future versions.
Current API
Base URL: https://api.teachstone.com/observation-data
Headers:
Authorization: Bearer <token>
/v1/class_1st/assessments/:assessment_id/cycles/:cycle_id- Success
Status: 200 OK
Content-Type: application/json
{
"id": 389,
"cycle_number": 1,
"start_time": "2022-10-14T09:00:00.000Z",
"end_time": "2022-10-14T09:20:00.000Z",
"number_of_adults": 2,
"number_of_children": 10,
"activity": [
{
"primary": true,
"value": "routine"
},
{
"primary": false,
"value": "group_time"
}
],
"grouping": "whole_group",
"content": [
{
"primary": true,
"value": "social_studies"
},
{
"primary": false,
"value": "music_movement"
}
],
"scores": {
"dimensions": [
{
"name": "Positive Climate",
"dimension_score": 4,
"indicators": [
{
"name": "Relationships",
"indicator_score": "mid"
},
{
"name": "Positive affect",
"indicator_score": "mid"
},
{
"name": "Respect",
"indicator_score": "mid"
}
]
},
{
"name": "Negative Climate",
"dimension_score": 3,
"indicators": [
{
"name": "Negative affect",
"indicator_score": "mid"
},
{
"name": "Punitive control",
"indicator_score": "mid"
},
{
"name": "Teacher negativity",
"indicator_score": "mid"
},
{
"name": "Child negativity",
"indicator_score": "mid"
}
]
},
{
"name": "Teacher Sensitivity",
"dimension_score": 4,
"indicators": [
{
"name": "Awareness",
"indicator_score": "mid"
},
{
"name": "Responsiveness",
"indicator_score": "mid"
},
{
"name": "Child comfort",
"indicator_score": "mid"
}
]
},
{
"name": "Regard for Child Perspectives",
"dimension_score": 4,
"indicators": [
{
"name": "Child focus",
"indicator_score": "mid"
},
{
"name": "Flexibility",
"indicator_score": "mid"
},
{
"name": "Support of independence",
"indicator_score": "mid"
}
]
},
{
"name": "Behavior Guidance",
"dimension_score": 4,
"indicators": [
{
"name": "Proactive",
"indicator_score": "mid"
},
{
"name": "Supporting positive behavior",
"indicator_score": "mid"
},
{
"name": "Problem behavior",
"indicator_score": "mid"
}
]
},
{
"name": "Facilitation of Learning and Development",
"dimension_score": 4,
"indicators": [
{
"name": "Active facilitation",
"indicator_score": "mid"
},
{
"name": "Expansion of cognition",
"indicator_score": "mid"
},
{
"name": "Children's active engagement",
"indicator_score": "mid"
}
]
},
{
"name": "Quality of Feedback",
"dimension_score": 4,
"indicators": [
{
"name": "Scaffolding",
"indicator_score": "mid"
},
{
"name": "Providing information",
"indicator_score": "mid"
},
{
"name": "Encouragement and affirmation",
"indicator_score": "mid"
}
]
},
{
"name": "Language Modeling",
"dimension_score": 4,
"indicators": [
{
"name": "Supporting language use",
"indicator_score": "mid"
},
{
"name": "Repetition and extension",
"indicator_score": "mid"
},
{
"name": "Self- and parallel talk",
"indicator_score": "mid"
},
{
"name": "Advanced language",
"indicator_score": "mid"
}
]
}
]
}
}
Field Types
| field | type | note |
|---|---|---|
| id | integer | |
| cycle_number | integer | |
| start_time | string | format: yyyy-MM-dd'T'HH:mm:ss.SSS'Z' |
| end_time | string | format: yyyy-MM-dd'T'HH:mm:ss.SSS'Z' |
| number_of_adults | null | integer | |
| number_of_children | null | integer | |
| activity | Array of MetaDataValue for Toddler Activity | see available Activities |
| grouping | null | string | see available Grouping options |
| content | Array of MetaDataValue for Toddler Content | see available Contents |
| dimensions | Array of Dimension Scores |
MetaDataValue
Generic object to represent a Category value. In UI it is a checkbox with an optional Star to represent the primary option from that category.
{
"primary": boolean,
"value": string
}
Dimension Scores
| field | type | note |
|---|---|---|
| name | string | |
| dimension_score | null | integer | number from 1 to 7 |
| indicators | Array of Indicator Score |
Indicator Score
| field | type | note |
|---|---|---|
| name | string | |
| indicator_score | string | low | mid | high | N/A (Not Applicable) |
activity
| value | UI name |
|---|---|
| free_choice_interest_areas | Free choice/interest areas |
| transition | Transition |
| routine | Routine |
| group_time | Group Time |
| other | Other |
grouping
| value | UI name |
|---|---|
| whole_group | Whole group |
| small_group | Small group |
| individual | Individual |
| other | Other |
content
| value | UI name |
|---|---|
| lit_lang_arts | Lit/Lang arts |
| art | Art |
| social_studies | Social Studies |
| music_movement | Music/movement |
| math_numbers | Math/numbers |
| science | Science |
| other | Other |