Skip to main content

Schema Versions

This page provides access to all versions of the PaletteJSON schema specification. Each version includes the complete JSON Schema definition that can be used for validation and tooling.

Current Version

VersionRelease DateSchema FileDescription
v0.1September 2025palettejson.schema.jsonInitial release with core palette and color object definitions

Using Schema Files

Direct Download

Click any schema file link above to download or view the JSON Schema definition.

Programmatic Access

Reference schemas directly in your applications:

{
"$schema": "https://palettejson.org/schema/v0.1/palettejson.schema.json",
"specVersion": "0.1",
"palettes": [
// your palette data
]
}

Latest Version

For always-current schema access, use the /latest/ path:

https://palettejson.org/schema/latest/palettejson.schema.json
Choosing a Version

We recommend using specific version URLs (like v0.1) in production applications to ensure schema stability. Use the /latest/ URL only during development or when you want to automatically adopt new schema features.

Version History

v0.1 (September 2025)

Schema Repository

The canonical source for all schema files is maintained in the palettejson-schema repository on GitHub.