Interface

SchemaCompiledItemDefinition (engine/model)

@ckeditor/ckeditor5-engine/src/model/schema

interface

A simplified version of SchemaItemDefinition after compilation by the schema. Rules fed to the schema by register and extend methods are defined in the SchemaItemDefinition format. Later on, they are compiled to SchemaCompiledItemDefinition so when you use e.g. the getDefinition method you get the compiled version.

The compiled version contains only the following properties:

  • The name property,
  • The is* properties,
  • The allowIn array,
  • The allowChildren array,
  • The allowAttributes array.

Filtering

Properties