├── .gitignore ├── .npmignore ├── 1.0.1 ├── README.md ├── about.json ├── account.json ├── activity.json ├── activity_definition.json ├── activity_list_or_obj.json ├── activityid.json ├── agent.json ├── anonymousgroup.json ├── attachment.json ├── context.json ├── contextactivities.json ├── extensions.json ├── formats │ ├── README.md │ └── formats.json ├── group.json ├── group_base.json ├── identifiedgroup.json ├── interactionactivity.json ├── interactionactivity_base.json ├── interactionactivity_choices.json ├── interactionactivity_none.json ├── interactionactivity_scale.json ├── interactionactivity_sourcetarget.json ├── interactionactivity_steps.json ├── interactioncomponent.json ├── interactioncomponent_list.json ├── inversefunctional.json ├── languagemap.json ├── mbox.json ├── mbox_sha1sum.json ├── openid.json ├── person.json ├── result.json ├── score.json ├── statement.json ├── statement_base.json ├── statement_list.json ├── statement_object.json ├── statementref.json ├── statementresult.json ├── substatement.json └── verb.json ├── LICENSE ├── NOTICE ├── README.md ├── npm └── prepublish.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | 1.0.1 2 | npm 3 | -------------------------------------------------------------------------------- /1.0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/README.md -------------------------------------------------------------------------------- /1.0.1/about.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/about.json -------------------------------------------------------------------------------- /1.0.1/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/account.json -------------------------------------------------------------------------------- /1.0.1/activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/activity.json -------------------------------------------------------------------------------- /1.0.1/activity_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/activity_definition.json -------------------------------------------------------------------------------- /1.0.1/activity_list_or_obj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/activity_list_or_obj.json -------------------------------------------------------------------------------- /1.0.1/activityid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/activityid.json -------------------------------------------------------------------------------- /1.0.1/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/agent.json -------------------------------------------------------------------------------- /1.0.1/anonymousgroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/anonymousgroup.json -------------------------------------------------------------------------------- /1.0.1/attachment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/attachment.json -------------------------------------------------------------------------------- /1.0.1/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/context.json -------------------------------------------------------------------------------- /1.0.1/contextactivities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/contextactivities.json -------------------------------------------------------------------------------- /1.0.1/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/extensions.json -------------------------------------------------------------------------------- /1.0.1/formats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/formats/README.md -------------------------------------------------------------------------------- /1.0.1/formats/formats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/formats/formats.json -------------------------------------------------------------------------------- /1.0.1/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/group.json -------------------------------------------------------------------------------- /1.0.1/group_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/group_base.json -------------------------------------------------------------------------------- /1.0.1/identifiedgroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/identifiedgroup.json -------------------------------------------------------------------------------- /1.0.1/interactionactivity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/interactionactivity.json -------------------------------------------------------------------------------- /1.0.1/interactionactivity_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/interactionactivity_base.json -------------------------------------------------------------------------------- /1.0.1/interactionactivity_choices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/interactionactivity_choices.json -------------------------------------------------------------------------------- /1.0.1/interactionactivity_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/interactionactivity_none.json -------------------------------------------------------------------------------- /1.0.1/interactionactivity_scale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/interactionactivity_scale.json -------------------------------------------------------------------------------- /1.0.1/interactionactivity_sourcetarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/interactionactivity_sourcetarget.json -------------------------------------------------------------------------------- /1.0.1/interactionactivity_steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/interactionactivity_steps.json -------------------------------------------------------------------------------- /1.0.1/interactioncomponent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/interactioncomponent.json -------------------------------------------------------------------------------- /1.0.1/interactioncomponent_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/interactioncomponent_list.json -------------------------------------------------------------------------------- /1.0.1/inversefunctional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/inversefunctional.json -------------------------------------------------------------------------------- /1.0.1/languagemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/languagemap.json -------------------------------------------------------------------------------- /1.0.1/mbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/mbox.json -------------------------------------------------------------------------------- /1.0.1/mbox_sha1sum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/mbox_sha1sum.json -------------------------------------------------------------------------------- /1.0.1/openid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/openid.json -------------------------------------------------------------------------------- /1.0.1/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/person.json -------------------------------------------------------------------------------- /1.0.1/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/result.json -------------------------------------------------------------------------------- /1.0.1/score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/score.json -------------------------------------------------------------------------------- /1.0.1/statement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/statement.json -------------------------------------------------------------------------------- /1.0.1/statement_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/statement_base.json -------------------------------------------------------------------------------- /1.0.1/statement_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/statement_list.json -------------------------------------------------------------------------------- /1.0.1/statement_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/statement_object.json -------------------------------------------------------------------------------- /1.0.1/statementref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/statementref.json -------------------------------------------------------------------------------- /1.0.1/statementresult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/statementresult.json -------------------------------------------------------------------------------- /1.0.1/substatement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/substatement.json -------------------------------------------------------------------------------- /1.0.1/verb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/1.0.1/verb.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/README.md -------------------------------------------------------------------------------- /npm/prepublish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/npm/prepublish.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusticiSoftware/TinCanSchema/HEAD/package.json --------------------------------------------------------------------------------