platform-documentation

Licenses

Access types

Access types determine the conditions under which users can access and use the content. Subscribed means users need to be logged-in. OA and Free means users need not be logged-in.

AUP business models

AUP business models have three types of access

  1. Subscribed (customer pays)
  2. Open Access (author/institution pays)
  3. Free (AUP pays)

AUP Online

The platform supports four types of access

  1. S = Titles Subscribed To
  2. OA = Open Access Content = content will be shown to users as Open Access on the platform.
  3. T = Free Trial Content = content will be shown to users as indefinitely Free on the platform.
  4. F = Free Content

I have no idea how 3 is done.

XML

The access type is included in the XML - both JATS and BITS - through <license> and its @license-type attribute in the <permissions> element.

Subscribed to

Omit <license> from <permissions>.

Example from 10.5117.ANTW2023.1.007.LEEZ:

<permissions>
<copyright-statement>&#x00a9; Michiel Leezenberg</copyright-statement>
<copyright-year>2023</copyright-year>
<copyright-holder>Michiel Leezenberg</copyright-holder>
</permissions>

Free content

Use “free” or “FREE” as the value of the @license-type attribute.

Example from 10.5117.ANTW2023.1.001.DORR:

<permissions>
<copyright-statement>&#x00a9; Steven Dorrestijn &#x0026; Herman Westerink</copyright-statement>
<copyright-year>2023</copyright-year>
<copyright-holder>Steven Dorrestijn &#x0026; Herman Westerink</copyright-holder>
<license license-type="free"><license-p></license-p></license>
</permissions>

Open Access

Use “open-access” or “OPEN-ACCESS” as the value of the @license-type attribute. Also, add a link to the appropriate Creative Commons license using the @xlink:href attribute.

Example from 10.5117.QUE2022.1.001.KLEI:

<permissions>
<copyright-statement>&#x00a9; Ru Klein</copyright-statement>
<copyright-year>2022</copyright-year>
<copyright-holder>Ru Klein</copyright-holder>
<license license-type="open-access">
<license-p>This is an open access article distributed under the terms of the CC BY-NC 4.0 license. <ext-link ext-link-type="uri" xlink:href="http://creativecommons.org/licenses/by/4.0/">http://creativecommons.org/licenses/by/4.0</ext-link></license-p>
</license>
</permissions>

This is displayed as follows on the platform:

© Ru Klein. This is an open access article distributed under the terms of the CC BY-NC 4.0 license. http://creativecommons.org/licenses/by/4.0

free trial access

How to setp up a free trial on Edify?

Introduction

This document outlines the process of setting up free trials in Ingenta Edify through the site administration tools. Free Trials can be set up at multiple levels e.g., for individual issues or articles, or at journal level for all issues under the journal etc. The steps below refer to setting up a free trial for an article, but they can be used at other levels too.

Setting up a free trial

The option to sign up for a free trial will be visible on the homepage of the relevant content item(s). As an example, a link to sign up trial set up for an issue will be displayed on the homepage of the issue. Please see the screenshot below for an example of the trial sign-up link on an article page.

the other elements in <permissions>

These elements are NOT nested and NOT (?) mandatory.

  1. <copyright-statement>
  2. <copyright-year>
  3. <copyright-holder>

The copyright statement is displayed below the abstract (or one-page PDF if there is no abstract) on the article or chapter page. Copyright year and copyright holder are NOT displayed. Make sure to include that information in the copyright statement.

delayed open access

Is this a fourth kind of license? It certainly introduces a new tag:


<permissions>
<copyright-statement>&#x00a9; Maria Vlaar</copyright-statement>
<copyright-year>2023</copyright-year>
<copyright-holder>Maria Vlaar</copyright-holder>
    <license><ali:license_ref content-type="open-access" start_date="2023-07-05" xmlns:ali="http://www.niso.org/schemas/ali/1.0/">https://creativecommons.org/licenses/by-nc-nd/4.0/</ali:license_ref></license>
</permissions>

The idea is to make the content publicly accessible after a certain period. The start date is in the XML. The XML does not say what license type is applicable before that time.

JATS/BITS

JATS has several elements that deal with the usage, permissions, and licensing. Some of these elements are taken from the NISO Access and License Indicators (ALI) 2015 Recommended Practice specification. The other element is JATS-specific and predates the NISO recommendation:

This text seems to suggest <ali:license_ref> is the preferred tag for all our license, in which case we would need to retag and reupload all content…

In fact, I believe we have to. Look at this example from NLM:

<license>
  <ali:license_ref  
    start_date="2014-02-03"
    xmlns:ali="http://www.niso.org/schemas/ali/1.0/"> 
   http://www.psychoceramics.org/license_v1.html</ali:license_ref>
  <ali:license_ref 
    start_date="2015-02-03"
    xmlns:ali="http://www.niso.org/schemas/ali/1.0/">
   http://creativecommons.org/licenses/by/3.0/</ali:license_ref>
 </license>

At first, content is under a proprietary license (initial publication) and then, a year later, under a CC BY license. Note how both licenses are explicitly stated. This is different from how AUP does it, where the Subscribed-to license is implicit. So we have to make the Subscribed-to license explicit!