Exports
This holds queries which are then used to export data form learning locker.
It is accessible through the following HTTP interfaces:
Connection HTTP Interface via http://www.example.org/api/connection/export.
REST HTTP Interface via http://www.example.org/api/v2/export.
SCHEMA
Name | Description |
---|---|
_id | The unique id of document. |
organisation | The organisation id this export template belongs to. |
name | Title of this export template. |
owner | The id of the user who created this export template. |
projection | An array of stringified json mongo projection queries. See mongo docs |
rawMode | If true, in Learning Locker UI, the projection will be displayed as JSON text, as opposed to field value inputs. |
downloads | A list ids of downloads which have used this export template. |
isPublic | If false then this dashboard is only available to the owner and users with org/all/export/view scope, otherwise it’s available to everyone in the organisation with permission. |
EXAMPLE MODEL
{
"_id" : "59c2371c16bc715f83c34501",
"name" : "Example Export",
"organisation" : "59c2371c16bc715f83c34502",
"downloads" : [ ],
"rawMode" : false,
"projections" : [
"{\"_id\":1,\"version\":\"$statement.version\"}"
]
}
Learning Locker and the Squirrel logo are trademark of Learning Pool 2020 | Learning Locker is licensed under GPL 3.0.