Coder Social home page Coder Social logo

shel.neos.schema's Introduction

JSON schema for Neos CMS nodetypes & node migrations

Tests

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

Example usage in PHPStorm

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.

Features for Neos nodetypes:

Autocompletion

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 matching editorOptions but validation works)
  • validation

Typehints

Typehints for all known Neos core nodetype properties.

Validation

You can run validations against your nodetypes with Ajv or similar. See test.js for an example.

Inline docs

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.

Features for Neos node migrations:

Autocompletion, typehints, validation and inline docs are available also for node migrations files. Custom transformations & filters and their options are of course not included.

Features for Neos cache configuration:

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.

Features for Neos routing configuration:

Autocompletion and descriptions for routing configuration based on the documentation.

How to use

PHPStorm / IntelliJ IDEA

Simple option

Install the Neos plugin, it will automatically activate the latest nodetypes schema from this repository.

Manual configuration (nodetypes)

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

Manual configuration (migrations)

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

Manual configuration (caches)

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

Manual configuration (routing)

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

Visual Studio Code

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"
    }
}

Other editors

Other editors also support JSON schema. Instructions are easy to find with your favourite search engine.

Schema variants

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.

Strict schema

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

FAQ

I get duplicate results for autocompletion

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.

Contribution

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.

shel.neos.schema's People

Contributors

sebobo avatar prgfx avatar cvette avatar jonnitto avatar l-mbert avatar mhsdesign avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.