This repository contains JSON schema definitions, that can be used in PHPStorm or VSCode
to get the following features for NodeTypes.*.yaml
, Caches.yaml
and node migration Version*.yaml
files:
- autocompletion
- typehints
- validation
- inline documentation
When the schema is stable enough it will hopefully be made available in the schema store.
The schema is based on the old YAML schemas we already have in Neos & Flow. But they all need some converting and can be updated with the latest functionality of what JSON schema can do. With a bit of community effort we can upgrade them, put them in the core, replace our own schema validator and make the schemas officially available on https://www.schemastore.org/json/. The schemastore allows your IDE to automatically download the one your need.
In addition to usual fields there are also conditional schema definitions for the following properties:
editor
(due to a bug in IntelliJ, autocompletion doesn't show the matchingeditorOptions
but validation works)validation
Typehints for all known Neos core nodetype properties.
You can run validations against your nodetypes with Ajv or similar. See test.js for an example.
This is still work-in-progress and only a few entries properties have full documentation.
Feel free to open a PR to add more.
We support the fields title
, description
and x-intellij-html-description
for html docs.
Autocompletion, typehints, validation and inline docs are available also for node migrations files. Custom transformations & filters and their options are of course not included.
Autocompletion and descriptions for default cache frontends, backends and their options based on the documentation. Custom cache implementations and their options are of course not included.
Autocompletion and descriptions for routing configuration based on the documentation.
Install the Neos plugin, it will automatically activate the latest nodetypes schema from this repository.
Follow the official instruction and add the url:
https://raw.githubusercontent.com/Sebobo/Shel.Neos.Schema/main/NodeTypes.Schema.json
Make sure there is no space at the end of the url when pasting it into your IDE or the Schema will not validate.
Set Schema Version
to JSON Schema version 7
.
Add path mappings to the packages you work on. For example:
DistributionPackages/*/Configuration/NodeTypes*.yaml
See above and add the url:
https://raw.githubusercontent.com/Sebobo/Shel.Neos.Schema/main/NodeMigration.Schema.json
Make sure there is no space at the end of the url when pasting it into your IDE or the Schema will not validate.
Set Schema Version
to JSON Schema version 7
.
Add path mappings to the packages you work on. For example:
DistributionPackages/*/Migrations/ContentRepository/Version*.yaml
See above and add the url:
https://raw.githubusercontent.com/Sebobo/Shel.Neos.Schema/main/Caches.Schema.json
Make sure there is no space at the end of the url when pasting it into your IDE or the Schema will not validate.
Set Schema Version
to JSON Schema version 7
.
Add path mappings to the packages you work on. For example:
DistributionPackages/*/Configuration/Caches*.yaml
See above and add the url:
https://raw.githubusercontent.com/Sebobo/Shel.Neos.Schema/main/Routes.Schema.json
Make sure there is no space at the end of the url when pasting it into your IDE or the Schema will not validate.
Set Schema Version
to JSON Schema version 7
.
Add path mappings to the packages you work on. For example:
DistributionPackages/*/Configuration/Routes*.yaml
See above and add the url:
https://raw.githubusercontent.com/Sebobo/Shel.Neos.Schema/main/NodeTypes.Presets.Schema.json
Make sure there is no space at the end of the url when pasting it into your IDE or the Schema will not validate.
Set Schema Version
to JSON Schema version 7
.
Add path mappings to the packages you work on. For example:
DistributionPackages/*/Configuration/Settings.Presets.*.yaml
Install this plugin to enable JSON schema for YAML: https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml
Open the Command Palette
with F1
or Ctrl + Shift + P
in VSCode,
then search for 'settings json' and add there the following snippet:
{
"yaml.schemas": {
"https://raw.githubusercontent.com/Sebobo/Shel.Neos.Schema/main/NodeTypes.Schema.json": ["DistributionPackages/*/Configuration/NodeTypes*.yaml", "DistributionPackages/*/NodeTypes/**/*.yaml"],
"https://raw.githubusercontent.com/Sebobo/Shel.Neos.Schema/main/NodeMigration.Schema.json": "DistributionPackages/*/Migrations/ContentRepository/Version*.yaml",
"https://raw.githubusercontent.com/Sebobo/Shel.Neos.Schema/main/Caches.Schema.json": "DistributionPackages/*/Configuration/Caches*.yaml",
"https://raw.githubusercontent.com/Sebobo/Shel.Neos.Schema/main/Routes.Schema.json": "DistributionPackages/*/Configuration/Routes*.yaml",
"https://raw.githubusercontent.com/Sebobo/Shel.Neos.Schema/main/NodeTypes.Presets.Schema.json": "DistributionPackages/*/Configuration/Settings.Presets.*.yaml"
}
}
Other editors also support JSON schema. Instructions are easy to find with your favourite search engine.
Certain declarations in a NodeTypes.*.yaml
file are valid but not considered as "best practise".
The default schema mentioned in the instructions above will not enforce those.
If you want additional strict validation, you can instead use the strict schema with the url:
https://raw.githubusercontent.com/Sebobo/Shel.Neos.Schema/main/NodeTypes.Schema.Strict.json
Implemented additional checks:
- Only 1 nodetype per file
This happens when you have an older version of the Neos plugin installed in an IntelliJ IDE and you manually set up the schemas in your IDE. The plugin also provided some basic autocompletion hints in older versions than 1.7. After that it referenced the schema in this repository.
If you know how to use the schema in other editors, please provide a PR with the instructions.
If you have ideas on how to improve the schema, please provide an issue with an example, and a PR that would resolve the issue if you can.