What is SCORM?

  • HOME
  • What is SCORM?

What is SCORM?

SCORM is a standard for e-learning.LMSSCORM is a set of specifications for combining learning materials with a learning management system (LMS), and any SCORM-compliant materials can be used with a SCORM-compliant LMS.Advanced Distributed LearningIn Japan, it was established by theJapan E-Learning Consortiumcertifies LMSs and content, and SCORM-related certifications.  QuizGeneratoris a teaching material that supports both SCORM1.2 and SCORM2004. Not only the pass/fail and score, but also the correctness of each question and the content of the answers are sent to the LMS.  learningBOXis an LMS that supports SCORM1.2, and can receive all data models defined in SCORM1.2 including optional items. (In the futureSCORM2004(We are also considering support for  

The two roles of SCORM

There are two main roles for SCORM.
  1. Registering materials into the system
  2. Exchange grades and other information between the teaching materials and the system
With these standard specifications, it is possible to use a combination of teaching materials and LMS (Learning Management System) from different vendors.

1. register teaching materials to the system

The SCORM materials are organized in a ZIP format, which contains the files that make up the materials (mainly HTML, JavaScript, image files, video files, etc.) and a metadata file (imsmanifest.xml) that defines the structure of the materials. imsmanifest.xml is always stored in the top directory of the ZIP archive. imsmanifest.xml contains the title of the course material, the hierarchical structure, the passing score, the constraints on the order of learning, etc. The LMS (Learning Management System) interprets the contents of this file and stores the course material in the system. The LMS (Learning Management System) interprets the contents of this file and registers the material into the system.  learningBOXIn the following example, HTML, JavaScript, and image files are stored in Amazon S3, while the names of the materials and the structure of the materials are stored in a relational database called Amazon RDS. In the above diagram, only the part with the red arrow is regulated by SCORM. The other parts are implemented in each LMS (Learning Management System).

2. exchange grades and other information between the teaching materials and the system (LMS)

When you open a SCORM teaching material, the teaching material explores the API of the system. Specifically, the teaching material will explore the parent frame of its own frame (iframe or frame) and look for an object named API. Through the API, the learning material can obtain the user ID and the name of the examinee. By exchanging information via SCORM's API, different vendors' systems (LMS) and teaching materials can exchange grades and other information. The structure of a SCORM-compliant LMS is roughly as shown in the diagram above. In this diagram, the red arrows are the parts that SCORM specifies, and the rest of the blue arrows are the parts that each LMS implements independently. The users of LMSs do not need to know the specifications for the blue parts, and they are not generally available to the public. On the other hand, the red arrows are standardized as the API of SCORM, and it is no exaggeration to say that the specification of this part is SCORM itself.  

Examples of teaching materials using SCORM

QuizGenerator is SCORM compliant, but QuizGenerator is complex and hard to explain.cardgeneratorThe cardgenerator is a memorization card creation service released in February 2017. learningBOX version 1.2 or later can be used as a teaching tool in the course.

Contents of communication on memorized cards

The contents of the SCORM communication for memorization cards are shown below.
  • Initialize # is initialized at startup.
  • GetValue(cmi.suspend_data) #cmi.suspend_data. Restore which cards have been memorized.
  • SetValue(cmi.core.lesson_status, completed) Send completed to # grades
  • Commit #API and synchronize the server
  • SetValue(cmi.suspend_data, 1100000) # Check memorized to send memorization status.
  • SetValue(cmi.core.lesson_status, completed) Send completed to # grades
  • SetValue(cmi.core.score.raw, 29) Send # score
  • Commit #API and synchronize the server
  • Terminate Terminate the #API
By communicating as described above, we can store information about which cards are checked for "remembered" and how many cards are checked for "remembered" in the LMS (Learning Management System).

If you can't save with SCORM

CardgeneratorをLMSの外で使った場合は、ブラウザのCookieにcmi.suspend_dataの内容を保存するようにしています。そのため、LMSの外で利用してもcardgeneratorの「覚えた」チェックマークや、QuizGeneratorのMasterモードの攻略済問題などの情報は保存されます。 ヒント: CardgeneratorやQuizGeneratorをLMS外で使用した場合、DummyAPIがロードされ、SCORMの通信内容がブラウザのコンソールに表示されます。SCORMに興味がある方はCardGeneratorやQuizGeneratorで出力されるZIPファイルをPC上で展開し、index.htmlをWebブラウザで開くことでSCORMの理解につながります。 ヒント: このページに設置されている暗記カードもLMS外に設置されているので、ブラウザのコンソールには通信内容が表示されています。F12キー(Windowsの場合)などでコンソールを開くと通信内容を確認できます。※厳密にいうとDummyAPIには通信機能は存在しないので、通信はしていません。 If you open the console of this page, you will see the communication contents as shown above.  

Advantages of using SCORM

By complying with SCORM, it is possible to achieve interoperability between LMS (Learning Management System) and teaching materials (contents). Before SCORM was introduced, teaching materials created by Company A could only be used in Company A's LMS. Until SCORM came along, that was the norm.  

Disadvantages of using SCORM

The disadvantages of using SCORM are the development cost and the difficulty of incorporating specifications that are not assumed in SCORM.

development cost

If you want to create a simple e-learning system that only supports multiple-choice questions, and if you don't care about standard specifications such as SCORM and just use server-side programming, a competent programmer may be able to complete the system in less than a month. However, if you want to develop a SCORM-compliant LMS and teaching materials, it will probably take you a month just to understand the SCORM specifications, and several months to develop each of them. QuizGenerator has been in development for 5 years, and learningBOX has been in development for over 2 years.

Difficulty in incorporating specifications that are not specified in SCORM (1)

SCORMで想定されていない動作をさせようと思うなら、SCORMを使うべきではありません。 例えば、1個目の教材(SCO)で問題に解答させ、2個目の教材(SCO)で1問目の正誤によって異なる解説文を表示させるといったことはSCORMでは想定されておらず、まっとうな方法では実現できません。SCORMでは教材(SCO)と教材(SCO)は独立した存在で、独立しているが故、再利用性を担保できるのですが、そのことについては深く触れません。とにかくSCORMが想定している教材構成や動作環境とかけ離れたシステムを使う場合、SCORMを採用すると後悔する可能性があります。SCORMを採用するかどうかは、SCORMの仕様をしっかり理解し、開発しようとしているシステムがSCORMの求める要件に適合しているか判断する必要があります。

Difficulty in incorporating specifications that are not specified in SCORM (2)

It was a long time ago, but I once did a development project to make an e-learning system compatible with Galaga. Garakei doesn't support JavaScript, so we couldn't implement SCORM properly, and had to take special measures on the server side. Now, even within smartphone apps, it's possible to incorporate web-based components and support SCORM with straightforward implementation, but there may be times in the future when SCORM is unsuitable due to technical limitations.

Difficulty in incorporating specifications that are not specified in SCORM (3)

I want to implement a speaking test. I want to implement an assignment submission function. In fact, SCORM's data model (such as variables that can be sent) is, in principle, text only, so it is impossible to implement such a function using SCORM alone. If you have this kind of material as part of a large number of teaching materials, you can develop the whole thing based on SCORM, and only use your own API or display a different screen for the parts that SCORM can't handle, but if you want to create an e-learning system where there are many parts that are not regulated by SCORM However, if you want to create an e-learning system where there are many parts that are not regulated by SCORM, you should not adopt SCORM in the first place.  

Example of an LMS using SCORM

SCORMに準拠した(日本イーラーニングコンソシアム)が認定したLMSの一覧を以下のURLで確認いただけます。 ➡List of SCORM compliant LMS  learningBOXis not an LMS certified by the Japan e-Learning Consortium, but the API is implemented as RTE3 equivalent. It also has the ability to import SCORM-compliant materials, but as of version 2.5, it is not possible to import a course consisting of multiple SCOs. However, as of version 2.5, it is not possible to import a course that consists of multiple SCOs. (You can import SCOs by exporting each one as a SCORM package. If you are switching from another company's LMS and need to port your content, please contact us.  

related article

 Let's make SCORM teaching materials.