Home Setting Up Vocabs
Setting Up Vocabs
Cancel

Setting Up Vocabs

In order to use the vocabulary extension libraries, there is some initial setup that will need to be performed.

Each of the vocabulary libraries expose a Vocabularies static class which defines a .Register() method. This will need to be called at application startup.

1
2
3
using Json.Schema.Data;

Vocabularies.Register();

This will globally register the vocabularies, the keywords, and the meta-schemas, making them available for use.

The .Register() method also takes optional parameters for specific vocabulary and schema registries in case you don’t want to make them available globally.