...
property | type | required | format checking | state of implementation | Remarks | |
---|---|---|---|---|---|---|
type | string | yes | implemented | |||
title | { type: string, title: string,url: string, comment: string, authors: string, year: string} | string | yes | implemented | ||
url | string | no | implemented | |||
comment | string | no | implemented | |||
authors | string | no | implemented | |||
year | string | no | implemented |
Deck =
property | type | required | format checking | state of implementation | Remarks | |
---|---|---|---|---|---|---|
_id | integer, autoincrement | yes | isInteger | implemented | for now is 'string' in the code | |
timestamp | date | yes | auto generated | implemented | add 'format: datetime' | |
user | integer | yes | isInteger | implemented (passed to service) | ||
description | string | no | implemented | |||
translations | array of {language: 'string', deck_id: object_id} | no | not implemented | |||
translated_from | has field 'status' with possible values 'original', 'google', 'revised'auto generated | implemented | ||||
lastUpdate | string, datetime | no | auto-generated on creating new slide revision inside the deck | |||
revisions | [ array of DeckRevision ] | yes | auto generated | implemented | ||
active | integer | yes | if the revision exists, when a new deck is added is set to 1 | implemented | ||
datasource | string | no | if the whole deck is the adaptation of a resource | |||
license | string enumeration | yes | is one of enumerables ['CC0', 'CC BY', 'CC BY-SA'] | implemented | should move it from revision, it is the same for the whole deck | |
contributors | array of contributors | no | in process |
...
property | type | required | format checking | state of implementation | remarks |
---|---|---|---|---|---|
id | integer, autoincrement | yes | isInteger | implemented | |
title | string | yes | implemented | ||
timestamp | date | yes | auto generated | implemented | |
content | string | yes | ?? only allowed tags | implemented | |
user | integer, autoincrement | yes | isInteger | implemented | |
parent | object { id: objectId, revision: objectId } | no | not implemented | keeps link to a previsous revision | |
speakerNotes | string | no | implemented | ||
popularity | integer | no | isInteger | not implemented | |
comment | string | no | implemented | comment of revision | |
tags | array | no | implemented | ||
media | array | no | not implemented | ||
dataSources | array of stringsDataSources | no | not implemented | ||
language | string | yes | implemented | ||
usage | array of objects { id: object_id, revision: object_id} | no | not implemented |
...