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 Specificationarrow-up-right includes a "profile" (subset) of schema.org and SKOS, which has been defined for OpenActive use, along with the specification for OpenActive namespace.

circle-info

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 Documentationarrow-up-right. imin and OpenActive Beta namespaces are documented separately at the links above.

triangle-exclamation

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

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.orgarrow-up-right 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 listarrow-up-right and GitHub issuesarrow-up-right. 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 Specificationarrow-up-right, 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 specificationarrow-up-right, 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 Listarrow-up-right 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 Grouparrow-up-right 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 Specificationarrow-up-right 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.

circle-info

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

The OpenActive versioning policyarrow-up-right 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.

circle-info

The properties defined in the OpenActive Modelling Specificationarrow-up-right are subject to the imin deprecation policy.

imin

The imin namespacearrow-up-right 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 Grouparrow-up-right to promote the use cases represented by the properties within this namespace, with the intention of standardising them into the OpenActive Modelling Specificationarrow-up-right over time (where applicable).

circle-info

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

OpenActive Beta

The OpenActive Betaarrow-up-right 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.

circle-exclamation
circle-exclamation

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.

circle-exclamation

Example

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