An implementation of 1EdTech Eduapi for Universis Project
An implementation of 1EdTech EduAPI for Universis Project.
Read more about the 1EdTech EduAPI specification https://www.imsglobal.org/spec/eduapi/v1p0.
This package provides the necessary components to integrate with the 1EdTech EduAPI, allowing for seamless communication and data exchange between the Universis platform and external educational tools and services.
``bash`
npm install @universis/eduapi
Register the EduapiService under services section of application configuration.
`json`
{
"services": [
{
"serviceType": "@universis/eduapi#EduapiService"
}
]
}
and include EduapiSchemaLoader into settings/schema/loaders:
`json``
{
"settings": {
"schema": {
"loaders": [
{
"loaderType": "@universis/eduapi#EduapiSchemaLoader"
}
]
}
}
}