Namespaces and Extensions

An introduction to "@context" URLs and field names, namespaces (their evolution and deprecation), and extensions.

Properties and Namespaces

In the world of linked data on the web, "namespaces" ("@context") are a collection of "properties" (fields) that have a well defined meaning.

Within the imin data, there are five primary namespaces used, all which are listed in the table below. You can click on each of the namespaces below to see a list of the properties contained within.

imin data is valid JSON-LD, which means that properties will always exist in one of the specified namespaces ("@context").

Namespace

Prefix

Context URL

Bundles

Prefix Required

Status

Deprecation Policy

-

https://schema.org/

No

Living Standard

-

http://www.w3.org/2004/02/skos/core#

No

Stable

-

https://openactive.io/

schema.org, SKOS

No

Stable

Yes

imin:

https://imin.co/

Yes

Stable

Yes

beta:

https://openactive.io/ns-beta

Yes

Experimental

*

*

Yes

Experimental

The OpenActive Modelling Specification includes a "profile" (subset) of schema.org and SKOS, which has been defined for OpenActive use, along with the specification for OpenActive namespace.

Descriptions and examples of the most commonly used properties from schema.org and SKOS, together with all properties from OpenActive, are included in the OpenActive Developer Documentation. imin and OpenActive Beta namespaces are documented separately at the links above.

Please note that properties defined outside of the OpenActive Modelling Specification and imin namespaces are not subject to the imin deprecation policy and are subject to change at any time. Therefore, we strongly encourage a defensive data consumption approach.

However, if you are considering one of these fields to drive critical production functionality, please get in touch with us at hello@imin.co and we will work with you to propose your use case to the OpenActive W3C Community Group and move the field into either the OpenActive or imin namespace.

Understanding the Namespaces in Use

When reading a response which contains JSON-LD, you'll should refer to the "@context" property, which is designed to let you know which namespaces are in use.

Three key things to remember:

  • The OpenActive namespace also bundles SKOS and schema.org namespaces inside it:

    • So writing

      "@context": [ "https://openactive.io/" ]

      is the same as writing

      "@context": [ "https://openactive.io/", "https://schema.org/", "http://www.w3.org/2004/02/skos/core#" ]

  • OpenActive, SKOS and schema.org namespaces do not require a prefix when using them:

    • So you must write "name": "Tai chi Class" instead of "schema:name": "Tai chi Class"

  • All other properties always require a prefix:

    • You must write "imin:fullAddress" and never "fullAddress"

Example

{
  "@context": [
    "https://openactive.io/",
    "https://imin.co/"
  ],
  "type": "SessionSeries",
  "name": "Tai chi Class",
  "url": "http://www.example.org/events/1",
  "location": {
    "type": "Place",
    "imin:fullAddress": "ExampleCo Gym Kingswood, 1 High Street, Kingswood, South Gloucestershire, BS1 4SD"
  }
}

This example references the namespaces of OpenActive (as noted above, this automatically includes schema.org and SKOS) and imin.

Namespace Evolution and Deprecation

schema.org

schema.org is a collaborative, community activity with a mission to create, maintain and promote schemas for structured data on the Internet; on web pages, in email messages and beyond. It was founded by Google, Microsoft, Yahoo and Yandex.

The terms of schema.org continue to evolve through lively discussions on their mailing list and GitHub issues. Often properties are added for some specific use case and their potential relationship to other areas of schema.org only becomes clear later. This gives rise to changes in textual definition and property-to-type associations that gradually make schema.org more coherent, without introducing radical changes in meaning. Consumers of schema.org data can generally rely on schema.org term meanings not changing dramatically. However, term definitions often evolve gradually over time to accommodate new usage scenarios or to improve usability. When schema.org properties are occasionally deprecated, they stay in the namespace so that they can still be used and are simply referenced to their replacement property.

The OpenActive W3C Community Group and imin both contribute to discussions within schema.org, however, consensus involves a number of stakeholders and can be time consuming to reach.

Where a schema.org property is explicitly included in the OpenActive Modelling Specification, it follows the OpenActive versioning policy. Where a schema.org property is not included in the OpenActive Modelling Specification, its usage may be subject to change. However, due to schema.org's internal processes and policies, it is highly unlikely to change in name, but somewhat more likely to subtly change in definition.

SKOS: Simple Knowledge Organization System

The SKOS specification, published in 2009, is centred around the Concept type and provides a mechanism for organising these concepts into a hierarchy. It is used for the OpenActive Activity List and other controlled vocabularies where an enumeration of specific terms are defined.

This specification is not expected to be updated, however, the use of the specification within OpenActive is subject to change in line with the OpenActive versioning policy.

OpenActive

The OpenActive W3C Community Group was established with the objective of facilitating the sharing and use of physical activity data. We very much encourage you to join the conversation and help shape the standards and our future API iterations through this process.

The OpenActive Modelling Specification defines a subset ("profile") of schema.org and SKOS that has been defined for OpenActive use, along with additional properties that feature in the OpenActive namespace.

Descriptions and examples of the OpenActive Modelling Specification, including the defined subset ("profile") of schema.org and SKOS, together with all properties from the OpenActive namespace, are included in the OpenActive Developer Documentation.

The OpenActive versioning policy within that specification specifies the use of version numbering to indicate potential for breaking changes: minor versions, e.g. 1.1, 1.2, etc. should be backwards compatible; major versions, e.g. 2.0, 3.0 are likely to include breaking changes. It is estimated that such breaking major version releases will only occur at most annually. imin will strive to align major version releases with OpenActive major version releases, with any deprecated imin API major version maintained for a period in accordance with the imin deprecation policy.

The properties defined in the OpenActive Modelling Specification are subject to the imin deprecation policy.

imin

The imin namespace is maintained to facilitate the early stabilisation of properties ahead of their broader adoption and standardisation. imin works as part of the OpenActive W3C Community Group to promote the use cases represented by the properties within this namespace, with the intention of standardising them into the OpenActive Modelling Specification over time (where applicable).

When a property "graduates" from the imin namespace into the OpenActive modelling specification, it will be maintained as a duplicate property for 12 months and deprecated in accordance with the imin deprecation policy.

OpenActive Beta

The OpenActive Beta namespace provides a custom namespace that can be used by publishers experimenting with new properties that are likely to be added to the core specification. It is defined as a convenience to help document properties that are in active testing and review by the community.

Data consumers should not assume that properties in the OpenActive Beta namespace will either be added to the core specification or be included in the namespace over the long term.

Please note that OpenActive Beta namespace properties are not subject to the imin deprecation policy and are subject to change at any time. Therefore, we strongly encourage a defensive data consumption approach. However, if you are considering one of these fields to drive critical production functionality, please get in touch with us at hello@imin.co and we will work with you to propose your use case to the OpenActive W3C Community Group and move the field into either the OpenActive or imin namespace.

Extensions

imin data sometimes contains additional namespaces, known as extensions. Data publishers may use these extensions to include additional fields that are not currently being considered as part of the evolving OpenActive standards.

Please note that extension properties are not subject to the imin deprecation policy and are subject to change at any time. Therefore, we strongly encourage a defensive data consumption approach. However, if you are considering one of these fields to drive critical production functionality, please get in touch with us at hello@imin.co and we will work with you to propose your use case to the OpenActive W3C Community Group and move the field into either the OpenActive or imin namespace.

Example

{
  "@context": [
    "https://openactive.io/",
    "http://data.goskyride.com/opendata/britishcycling.jsonld"
  ],
  "type": "Event",
  "name": "Wheel Do It! - Blindside loop (with Betty-Ann)",
  ...
  "britishcycling:gpxFile": "https://lr-media.staging.phoenixdigital.agency/download/2c89c364a0738a26fde9b68eb35bfeb0",
  "meetingPoint": "Start of Loxley Road just past the bus stop, which is immediately after the pedestrian crossing/traffic lights."
}

In this example, the "britishcycling:gpxFile" field is defined by an extension provided by British Cycling, using their custom namespace "http://data.goskyride.com/opendata/britishcycling.jsonld".

Last updated