Official serenity.json configuration file schematics for the Serenity.
Allows automatic validation and autocompletion in editors that support JSON Schema.
You can use it directly with the raw Github URL:
https://raw.githubusercontent.com/serenitysz/schema/main/versions/<version>.jsonReplace <version> with the Serenity config version you want to target.
Add the schema to your VS Code settings:
{
"json.schemas": [
{
"fileMatch": ["serenity.json"],
"url": "https://raw.githubusercontent.com/serenitysz/schema/main/versions/<version>.json"
}
]
}You will now always have autocomplete when using serenity.json files.
Each schema version matches a specific Serenity configuration version. Older schemas remain available for backward compatibility.