?um/p1-90`The document at https://tc54.org/ecmaXXX/ is the most accurate and up-to-date Common Lifecycle Enumeration specification.
This document is available as a single page and as multiple pages.
This Standard is developed on GitHub with the help of the OWASP community. There are a number of ways to contribute to the development of this Standard:
Refer to the
The Common Lifecycle Enumeration (CLE) specification provides a standardized, machine-readable format for communicating lifecycle events of software and hardware components throughout the supply chain. As modern software systems increasingly rely on complex networks of dependencies and third-party components, understanding the lifecycle status of these components becomes critical for maintaining secure, compliant, and reliable systems.
This Standard addresses the challenge of tracking component lifecycles across diverse ecosystems by defining a unified format for expressing events such as releases, end-of-support announcements, end-of-life declarations, and component transitions. By providing a consistent structure for this information, CLE enables automated tooling to assess risks, plan migrations, and maintain supply chain transparency.
The CLE specification is designed to complement existing standards in the software supply chain ecosystem, including the Package-URL (PURL) specification for component identification and the Version Range (VERS) specification (inlined
This document specifies version 1.0.0 of the Common Lifecycle Enumeration standard, developed under the auspices of Ecma International Technical Committee 54, Task Group 3 (TC54-TG3).
This Standard defines the Common Lifecycle Enumeration (CLE) specification version 1.0.0. The CLE provides a standardized format for communicating software component lifecycle events in a machine-readable format. This Standard defines the JSON schema and requirements for CLE documents.
A conforming implementation of CLE must provide and consume objects that conform to the JSON Schema defined in this Standard. The key words "must", "must not", "required", "shall", "shall not", "should", "should not", "recommended", "may", and "optional" in this document are to be interpreted as described in RFC 2119.
The following documents are referred to in the text in such a way that some or all of their content constitutes requirements of this document. For dated references, only the edition cited applies. For undated references, the latest edition of the referenced document (including any amendments) applies.
ECMA-XXX, Package-URL (PURL) Specification
https://ecma-tc54.github.io/ECMA-xxx-PURL/
ISO 8601, Date and time — Representations for information interchange
https://www.iso.org/standard/70907.html
JSON Schema Draft 2020-12
https://json-schema.org/draft/2020-12/json-schema-core
discrete unit of software or hardware that can be independently identified, versioned, and tracked through its lifecycle
A significant occurrence in the existence of a component, such as release, end of support, or renaming.
Package-URL - a standardized format for identifying software packages across diverse ecosystems.
The following types of work are commonly associated with software projects regardless of whether they are open source or not:
CLE is formally specified by a Draft 2020-12 JSON Schema.
Each published version of the specification is accompanied by a versioned meta-schema at a stable URI:
https://cle.example.com/schema/cle-<major>.<minor>.<patch>.schema.json
Every CLE document must include a top-level $schema field whose value is the URI of the meta-schema for the version it follows.
The $schema field serves two purposes:
| Field | Type | Description |
|---|---|---|
$schema |
string | URI identifying the JSON Schema document that describes the version of the CLE schema to use. |
identifier |
string or array[string] | Component identifier(s) in the PURL format. When an array is provided, each identifier alias must identify the exact same bits from the same software but distributed differently. |
updatedAt |
string | ISO 8601 timestamp indicating when this CLE document was last updated. |
events |
array | Ordered array of Event objects representing the component's lifecycle events. Must be ordered by ID in descending order (newest events with highest IDs first). |
| Field | Type | Description |
|---|---|---|
definitions |
object | Container for reusable policy definitions that can be referenced throughout the document. |
index |
string | URL pointing to the index file that lists all CLE pages for this component. Only allowed to be present when pagination is used. |
next |
string | URL pointing to the next CLE page containing newer events (higher event IDs). |
The definitions object allows specification of reusable policies and calculations that can be referenced by events.
The support object defines the support policies provided for a specific version or version range of a component. This may include first-party manufacturer support or third-party support options endorsed by the manufacturer.
Support policies are immutable once defined - the semantics and meaning of a support policy must not change over time for a given support policy ID. This ensures consistent interpretation of support commitments across the component's lifecycle.
| Field | Type | Required | Description |
|---|---|---|---|
id |
string | Yes | Unique identifier for the support policy. |
description |
string | Yes | Human readable description of the policy. |
url |
string | No | URL to detailed documentation about this support policy. |
The base object that represents a discrete lifecycle event. All events share these common fields.
Events are immutable once created - the content and meaning of a specific event must not change after it has been published. Additionally, the ordering of events across shards must not change.
| Field | Type | Description |
|---|---|---|
id |
integer | A unique, auto-incrementing integer identifier for the event. |
type |
string | The type of lifecycle event. Must be one of the defined Event Types. |
effective |
string | The time when the event takes effect, as an ISO 8601 formatted timestamp in UTC. |
published |
string | The time when the event was first published, as an ISO 8601 formatted timestamp in UTC. |
Category: Version Event
Indicates when a component version is released and available for use.
Additional Required Fields:
version - The version string of the released componentAdditional Optional Fields:
license - License identifier that summarizes the license as declared in the component's metadataCategory: Version Event
The manufacturer or maintainer ceases work on Substantial Modifications for a specific version or version range of a component or service. Security Fixes and Bug Fixes will continue to be provided for this specific version or version range until endOfSupport is declared, but no new features or enhancements will be added.
Additional Required Fields:
versions - Array of version specifications, per supportId - Reference to a support policy defined in the definitions sectionCategory: Version Event
The manufacturer or maintainer ceases providing Security Fixes and Bug Fixes for a specific version or version range of a component or service.
The supportId field must be included and used to specify which support policy is ending, referencing a support policy defined in the definitions section.
Additional Required Fields:
versions - Array of version specificationssupportId - Reference to a support policy defined in the definitions sectionCategory: Version Event
The manufacturer or maintainer formally ceases all work (including Distribution, Substantial Modifications, Bug Fixes, Security Fixes, Documentation, and Maintenance) for a specific version or version range of a component. No further updates, support, or distribution will be provided for this specific version or version range. The component is considered retired.
Additional Required Fields:
versions - Array of version specifications, per Category: Version Event
The manufacturer or maintainer ceases distribution of a specific version or version range of a component or service. This should only be used when the manufacturer has control over the distribution of the component or service.
Additional Required Fields:
versions - Array of version specifications, per Category: Version Event
The manufacturer or maintainer ceases marketing and promotion of a specific version or version range of a component or service. The component or service may still be available, and existing support policies may remain in effect, but the manufacturer will no longer seek new customers or promote its use.
Additional Required Fields:
versions - Array of version specifications, per Category: Version Event
Indicates when a version of a component is superseded by another version of a component. This should only exist for components in which version progression is not implicit.
Additional Required Fields:
supersededByVersion - Plain version string that supersedes itAdditional Optional Fields:
versions - Array of version specifications, per Category: Component Event
Indicates when a component is renamed.
Additional Required Fields:
identifiers - Array of identifier objects specifying the new identifiers for the componentAdditional Optional Fields:
description - Human-readable description of the eventreferences - List of URLs to supporting documentationCategory: Meta Event
Indicates that a previously published event is being withdrawn or revoked. This is used in a prepend-only event model where events cannot be modified, only new events can be added. When an event is withdrawn, it should be ignored during processing as if it never existed.
Additional Required Fields:
eventId - The ID of the event being withdrawnAdditional Optional Fields:
references - List of URLs to supporting documentationreason - Human-readable explanation for why the event is being withdrawnThe CLE specification supports three distinct categories of events:
Events that affect specific version or range field to specify which versions are affected. Version Events include:
releasedendOfDevelopmentendOfSupportendOfLifeendOfDistributionendOfMarketingsupersededByEvents that affect the component itself and may impact how the component is identified or referenced. These events often affect all versions of a component from the effective date forward. Component Events include:
componentRenamed - Changes how the component is identifiedEvents that affect other events in the history. These are used in the prepend-only event model to manage the event stream. Meta Events include:
withdrawn - Revokes a previously published eventCLE uses a prepend-only event model with the following rules:
withdrawn event is encountered:eventId should be ignored as if it never existed.CLE supports pagination to handle components with extensive event histories. When a CLE file reaches the maximum limit of 100,000 events, it must be split into multiple pages.
next field.index field.The CLE index file provides a directory of all pages for a component.
| Field | Type | Required | Description |
|---|---|---|---|
$schema |
string | Yes | URI identifying the CLE index schema version. |
pages |
array[object] | Yes | Array of page descriptor objects, ordered by event ID ranges. |
| Field | Type | Required | Description |
|---|---|---|---|
url |
string | Yes | URL of the CLE page file. |
firstEventId |
integer | Yes | The lowest event ID in this page. |
lastEventId |
integer | Yes | The highest event ID in this page. |
When processing paginated CLE files:
next links to traverse pages.withdrawn events can reference events on any page.The CLE specification aims to address several common use cases in software component lifecycle management.
These use cases will be addressed in future versions of the specification based on community feedback and requirements:
This specification is a new syntax for dependency and vulnerable version ranges.
A version range specifier (aka. "vers") is a URI string using the vers URI-scheme with this syntax:
vers:<versioning-scheme>/<version-constraint>|<version-constraint>|...
For example, to define a set of versions that contains either version 1.2.3, or any versions greater than or equal to 2.0.0 but less than 5.0.0 using the node-semver versioning scheme used with the npm Package-URL type, the version range specifier will be:
vers:npm@1.2.3|≥=2.0.0|<5.0.0
vers is the URI-scheme and is an acronym for "VErsion Range Specifier". It has been selected because it is short, obviously about version and available for a future formal URI-scheme registration at IANA. The pipe "|" is used as a simple separator between `<version-constraint>`. Each `<version-constraint>` in this pipe-separated list contains a comparator and a version:
<comparator:version>
This list of <version-constraint> are signposts in the version timeline of a package that specify version intervals.
A <version> satisfies a version range specifier if it is contained within any of the intervals defined by these <version-constraint>.
vers primary usage is to test if a version is within a range.
A version is within a version range if falls in any of the intervals defined by a range. Otherwise, the version is outside of the version range.
Some important usages derived from this include:
vers describing the vulnerable versions of a package, this process is used to determine if an existing package version is vulnerable.vers could be used in tandem with purl to provide an input to this dependencies resolution process.A single version in an npm package dependency:
vers:npm/1.2.3A list of versions, enumerated:
vers:pypi/0.0.0|0.0.1|0.0.2|0.0.3|1.0|2.0pre1A complex statement about a vulnerability in a "maven" package that affects multiple branches each with their own fixed versions at https://repo1.maven.org/maven2/org/apache/tomee/apache-tomee/ Note how the constraints are sorted:
vers:maven/>=1.0.0-beta1|<=1.7.5|>=7.0.0-M1|<=7.0.7|>=7.1.0|<=7.1.2|>=8.0.0-M1|<=8.0.1vers express the same range, using one vers for each vulnerable "branches":
vers:tomee/>=1.0.0-beta1|<=1.7.5vers:tomee/>=7.0.0-M1|<=7.0.7vers:tomee/>=7.1.0|<=7.1.2vers:tomee/>=8.0.0-M1|<=8.0.1Converting RubyGems custom syntax for dependency on gem. Note how the pessimistic version constraint is expanded:
'library', '~> 2.2.0', '!= 2.2.1'vers:gem/>=2.2.0|!= 2.2.1|<2.3.0The vers URI scheme is an acronym for "VErsion Range Specifier". It has been selected because it is short, obviously about version and available for a future formal registration for this URI-scheme at the IANA registry.
The URI scheme is followed by a colon ":".
<versioning-scheme>The <versioning-scheme> (such as npm, deb, etc.) determines:
vers simplified notation defined here.By convention the versioning scheme should be the same as the Package-URL package type for a given package ecosystem. It is OK to have other schemes beyond the purl type. A scheme could be specific to a single package name.
The <versioning-scheme> is followed by a slash "/".
<version-constraint>After the <versioning-scheme> and "/" there are one or more <version-constraint> separated by a pipe "|". The pipe "|" has no special meaning beside being a separator.
Each <version-constraint> of this list is either a single <version> as in 1.2.3 for example or the combination of a <comparator> and a <version> as in >=2.0.0 using this syntax:
<comparator><version>
A single version means that a version equal to this version satisfies the range spec. Equality is based on the equality of two normalized version strings according to their versioning scheme. For most schemes, this is a simple string equality. But schemes can specify normalization and rules for equality such as pypi with PEP440.
The special star "*" comparator matches any version. It must be used alone exclusive of any other constraint and must not be followed by a version. For example "vers:deb/*" represents all the versions of a Debian package. This includes past, current and possible future versions.
Otherwise, the <comparator> is one of these comparison operators:
The <versioning-scheme> defines:
semver specification for version numbers defines a version as composed primarily of three dot-separated numeric segments named major, minor and patch.The construction and validation rules are designed such that a vers is easier to read and understand by humans and straightforward to process by tools, attempting to avoid the creation of empty or impossible version ranges.
vers:npm.version in a <version-constraint> contains separator or comparator characters (i.e. ><=!*|), it must be quoted using the URL quoting rules. This should be rare in practice.The list of <version-constraint>s of a range are signposts in the version timeline of a package. With these few and simple validation rules, we can avoid the creation of most empty or impossible version ranges:
<version-constraint> is not significant otherwise but this sort order is needed when checking if a version is contained in a range.version must be unique in a range and can occur only once in any <version-constraint> of a range specifier, irrespective of its comparators. Tools must report an error for duplicated versions.Starting from a de-duplicated and sorted list of constraints, these extra rules apply to the comparators of any two contiguous constraints to be valid:
Ignoring all constraints with "!=" comparators:
And ignoring all constraints with "=" or "!=" comparators, the sequence of constraint comparators must be an alternation of greater and lesser comparators:
Tools must report an error for such invalid ranges.
To parse a version range specifier string:
vers.<versioning-scheme> that must be lowercase. Tools should validate that the <versioning-scheme> is a known scheme.<version-constraint> is "*". Parsing is done and no further processing is needed for this vers. A tool should report an error if there are extra characters beyond "*".<version-constraint>. Consecutive pipes must be treated as one and leading and trailing pipes ignored.<version-constraint>:
<version-constraint> starts with one of the two comparators:
<version-constraint> string start. The remaining string is the version.<version-constraint> string (which implies an equality comparator of "=")Finally:
<versioning-scheme> and the list of <comparator, version> constraints.Tools should optionally validate and simplify the list of <comparator, version> constraints once parsing is complete:
Tools can simplify a list of <version-constraint> using this approach:
These pairs of contiguous constraints with these comparators are valid:
These pairs of contiguous constraints with these comparators are redundant and invalid (ignoring any != since they can show up anywhere):
A procedure to remove redundant constraints can be:
To check if a "tested version" is contained within a version range:
semver version of an npm and the deb version of its Debian packaging, the way versions are compared specific to each versioning scheme and may be different. Tools should report an error in this case.These are a few known versioning schemes for some common Package-URL types (aka. ecosystem).
node-semver for its syntax, but does not use semver versions.node-semver-like ranges. But most of these related schemes are not strictly the same as what is implemented in node-semver. For instance PHP composer may need its own scheme as this is not strictly node-semver.semver versions with a specific minimum version resolution algorithm.These are generic schemes, to use sparingly for special cases:
vers:none/* is the only valid vers form for this scheme.vers:all/* is the only valid vers form for this scheme.10.234.5.12. Versions specified in this scheme consist of ASCII digits only, formatted with only non-negative integers, and ignoring leading zeros. Interpretation of the version should stop at the first character that is not a digit or a dot.semver. It follows the MAJOR.MINOR.PATCH format and is defined in the Semantic Versioning Specification 2.0.0, see https://semver.org/spec/v2.0.0.html.A separate document will provide details for each versioning scheme and:
vers notation and back.This versioning schemes document will also explain how to convert CVE and OSV ranges to vers.
Most existing version range notations are tied to a specific version string syntax and are therefore not readily applicable to other contexts. For example, the use of elements such as tilde and caret ranges in RubyGems, npm or Dart notations implies that a certain structure exists in the version string (semver or semver- like). The inclusion of these additional comparators is a result of the history and evolution in a given package ecosystem to address specific needs.
In practice, the unified and reduced set of comparators and syntax defined for vers has been designed such that all these notations can be converted to a vers and back from a vers to the original notation.
In contrast, this would not be possible with existing notations. For instance, the Python notation may not work with npm semver versions and reciprocally.
There are likely to be a few rare cases where round tripping from and to vers may not be possible, and in any case round tripping to and from vers should produce equivalent results and even if not strictly the same original strings.
Another issue with existing version range notations is that they are primarily designed for dependencies and not for vulnerable ranges. In particular, a vulnerability may exist for multiple "version branches" of a given package such as with Django 2.x and 3.x. Several version range notations have difficulties to communicate these as typically all the version constraints must be satisfied. In contrast, a vulnerability can affect multiple disjoint version ranges of a package and any version satisfying these constraints would be vulnerable: it may not be possible to express this with a notation designed exclusively for dependent versions resolution.
Finally, one of the goals of this spec is to be a compact yet obvious Package-URL companion for version ranges. Several existing and closely related notations designed for vulnerable ranges are verbose specifications designed for use in API with larger JSON documents.
See:
vers and the OSSF OSV schema vulnerable ranges are equivalent and vers provides a compact range notation while OSV provides a more verbose JSON notation.
vers borrows the design from and was informed by the OSV schema spec and its authors.
OSV uses a minimalist set of only three comparators:
OSV Ranges support neither ">" nor "!=" comparators making it difficult to express some ranges that must exclude a version. This may not be an issue for most vulnerable ranges yet:
Another high level difference between the two specifications is the codes used to qualify a range package "ecosystem" value that resembles closely the Package-URL package "type" used in vers. This spec will provide a strict mapping between the OSV ecosystem and the vers versioning schemes values.
See:
The version 5 of the CVE JSON data format defines version ranges with a starting version, a versionType, and an upper limit for the version range as lessThan or lessThanOrEqual or as an enumeration of versions. The versionType and the package collectionURL possible values are only indicative and left out of this specification and both seem strictly equivalent to the Package-URL "type" on the one hand and thevers versioning scheme on the other hand.
The semantics and expressiveness of each range are similar and vers provides a compact notation rather than a more verbose JSON notation. vers supports strictly the conversion of any CVE v5 range to its notation and further provides a concrete list of well known versioning schemes. vers design was informed by the CVE v5 API schema spec and its authors.
When CVE v5 becomes active, this spec will provide a strict mapping between the CVE versionType and the vers versioning schemes values. Furthermore, this spec and the Package-URL "types" should be updated accordingly to provide a mapping with the upcoming CVE collectionURL that will be effectively used.
There is one issue with CVE v5: it introduces a new trailing "*" notation that does not exist in most version ranges notations and may not be computable easily in many cases. The description of the "lessThan" property is:
The non-inclusive upper limit of the range. This is the least version NOT in the range. The usual version syntax is expanded to allow a pattern to end in an asterisk (
), indicating an arbitrarily large number in the version ordering. For example, {version: 1.0 lessThan: 1. } would describe the entire 1.X branch for most range kinds, and {version: 2.0, lessThan: *} describes all versions starting at 2.0, including 3.0, 5.1, and so on.
The conversion to vers range should be:
vers equivalent is: >=1.0.vers equivalent can be computed for semver versions as >=1.0|<2 but this is not accurate because the versioning schemes have different rules. For instance, pre-release may be treated in some case as part of the v1. branch and in some other cases as part of the v2. branch. It is not clear if with "2.*" the CVE v5 spec means:
<22.And in this case, with the expression "lessThan": "2.*" using a semver version, it is not clear if 2.0.0-alpha is "lessThan"; semver sorts it before 2.0 and after 1.0, e.g., in semver 2.0.0-alpha is "less than" 2.
See:
The version ranges notation defined in the JSON schema of the CVE API payload uses these four fields: versionStartIncluding, versionStartExcluding, versionEndIncluding and versionEndExcluding. For example:
"versionStartIncluding": "7.3.0",
"versionEndExcluding": "7.3.31",
"versionStartExcluding" : "9.0.0",
"versionEndIncluding" : "9.0.46",
In addition to these ranges, the NVD publishes a list of concrete CPEs with versions resolved for a range with daily updates at https://nvd.nist.gov/vuln/data-feeds#cpeMatch
Note that the NVD CVE configuration is a complex specification that goes well beyond version ranges and is used to match comprehensive configurations across multiple products and version ranges. vers focus is exclusively versions.
In contrast with vers compact notation, the NVD JSON notation is more verbose, yet vers supports strictly the conversion of any CPE range.
See:
The node-semver spec is similar to but much more complex than this spec. This is an AND of ORs constraints with a few practical issues:
vers avoids the ambiguity of spaces by ignoring them.Notations that are directly derived from node-semver as used in Rust and PHP Composer have the same issues.
See:
The Python pep-0440 "Version Identification and Dependency Specification" provides a comprehensive specification for Python package versioning and a notation for "version specifiers" to express the version constraints of dependencies.
This specification is similar to this vers spec, with more operators and aspects specific to the versions used only in the Python ecosystem.
See:
The RubyGems specification suggests but does not enforce using semver. It uses operators similar to the node-semver spec with the difference of the "
For instance, the OSV schema adopts a reduced set of only three comparators:
This approach is simpler and works well for most vulnerable ranges but it faces limitations when converting from other notations:
Some existing notations such as used with npm, gem, python, or composer provide syntactic shorthand such as:
Most of these notations can be converted without loss to the vers notation. Furthermore these notations typically assume a well defined version string structure specific to their package ecosystem and are not reusable in another ecosystem that would not use the exact same version conventions.
For instance, the tilde and caret notations demand that you can reliably infer the next version (aka. "bump") from a given version; this is possible only if the versioning scheme supports this operation reliably for all its accepted versions.
Apache Maven and NuGet use a mathematical interval notation with comma-separated "[", "]", "(" and ")" to declare version ranges.
All other known range notations use the more common ">", "<", and "=" as comparators. vers adopts this familiar approach.
Here are some of the discussions that led to the creation of this specification:
This document is licensed under the MIT license
{
"$schema": "https://TODO/cle.v1.0.0.json",
"identifier": "pkg:npm/example-component",
"updatedAt": "2021-01-15T00:00:00Z",
"definitions": {
"support": [
{
"id": "standard",
"description": "Standard product support policy",
"url": "https://example.com/support/standard"
}
]
},
"events": [
{
"id": 5,
"type": "withdrawn",
"effective": "2021-01-15T00:00:00Z",
"published": "2021-01-15T00:00:00Z",
"eventId": 2,
"reason": "The endOfSupport date was incorrect.",
"references": [
"https://example.com/support-correction"
]
},
{
"id": 4,
"type": "endOfSupport",
"effective": "2021-01-01T00:00:00Z",
"published": "2021-01-01T00:00:00Z",
"versions": [
{
"range": "vers:npm/>=1.0.0|<2.0.0"
}
],
"supportId": "standard"
},
{
"id": 3,
"type": "componentRenamed",
"effective": "2020-01-01T00:00:00Z",
"published": "2020-01-01T00:00:00Z",
"description": "Component renamed due to acquisition",
"identifiers": [
{
"type": "PURL",
"value": "pkg:npm/new-component"
}
]
},
{
"id": 2,
"type": "endOfSupport",
"effective": "2020-01-01T00:00:00Z",
"published": "2020-01-01T00:00:00Z",
"versions": [
{
"range": "vers:npm/>=1.0.0|<2.0.0"
}
],
"supportId": "standard"
},
{
"id": 1,
"type": "released",
"effective": "2019-01-01T00:00:00Z",
"published": "2019-01-01T00:00:00Z",
"version": "1.0.0",
"license": "MIT"
}
]
}
This Standard is authored on GitHub in a plaintext source format called Ecmarkup. Ecmarkup is an HTML and Markdown dialect that provides a framework and toolset for authoring Ecma specifications in plaintext and processing the specification into a full-featured HTML rendering that follows the editorial conventions for this document. Ecmarkup builds on and integrates a number of other formats and technologies including Grammarkdown for defining syntax and Ecmarkdown for authoring algorithm steps. PDF renderings of this Standard are produced using a print stylesheet which takes advantage of the CSS Paged Media specification and is converted using PrinceXML.
Prior editions of this Standard were authored using Word—the Ecmarkup source text that formed the basis of this edition was produced by converting the ECMAScript 2015 Word document to Ecmarkup using an automated conversion tool.
Ecma International
Rue du Rhone 114
CH-1204 Geneva
Tel: +41 22 849 6000
Fax: +41 22 849 6001
Web: https://ecma-international.org/
COPYRIGHT NOTICE
© 2025 Ecma International
By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.
This document may be copied, published and distributed to others, and certain derivative works of it may be prepared, copied, published, and distributed, in whole or in part, provided that the above copyright notice and this Copyright License and Disclaimer are included on all such copies and derivative works. The only derivative works that are permissible under this Copyright License and Disclaimer are:
(i) works which incorporate all or portion of this document for the purpose of providing commentary or explanation (such as an annotated version of the document),
(ii) works which incorporate all or portion of this document for the purpose of incorporating features that provide accessibility,
(iii) translations of this document into languages other than English and into different formats and
(iv) works by making use of this specification in standard conformant products by implementing (e.g. by copy and paste wholly or partly) the functionality therein.
However, the content of this document itself may not be modified in any way, including by removing the copyright notice or references to Ecma International, except as required to translate it into languages other than English or into a different format.
The official version of an Ecma International document is the English language version on the Ecma International website. In the event of discrepancies between a translated version and the official version, the official version shall govern.
The limited permissions granted above are perpetual and will not be revoked by Ecma International or its successors or assigns.
This document and the information contained herein is provided on an “AS IS” basis and ECMA INTERNATIONAL DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY OWNERSHIP RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
All Software contained in this document ("Software") is protected by copyright and is being made available under the "BSD License", included below. This Software may be subject to third party rights (rights from parties other than Ecma International), including patent rights, and no licenses under such third party rights are granted under this license even if the third party concerned is a member of Ecma International. SEE THE ECMA CODE OF CONDUCT IN PATENT MATTERS AVAILABLE AT https://ecma-international.org/memento/codeofconduct.htm FOR INFORMATION REGARDING THE LICENSING OF PATENT CLAIMS THAT ARE REQUIRED TO IMPLEMENT ECMA INTERNATIONAL STANDARDS.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE ECMA INTERNATIONAL "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ECMA INTERNATIONAL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.