mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 13:07:00 +01:00
1 line
1.4 KiB
JavaScript
1 line
1.4 KiB
JavaScript
window.SIDEBAR_ITEMS = {"struct":[["Schema","Schema stores the set of `Classes` and `Attributes` that the server will use to validate `Entries`, `Filters` and `Modifications`. Additionally the schema stores an extracted copy of the current attribute indexing metadata that is used by the backend during queries."],["SchemaAttribute","An item representing an attribute and the rules that enforce it. These rules enforce if an attribute on an `Entry` may be single or multi value, must be unique amongst all other types of this attribute, if the attribute should be `indexed`, and what type of data `syntax` it may hold."],["SchemaClass","An item representing a class and the rules for that class. These rules enforce that an `Entry`’s avas conform to a set of requirements, giving structure to an entry about what avas must or may exist. The kanidm project provides attributes in `systemmust` and `systemmay`, which can not be altered. An administrator may extend these in the `must` and `may` attributes."],["SchemaReadTransaction","A readonly transaction of the working schema set."],["SchemaWriteTransaction","A writable transaction of the working schema set. You should not change this directly, the writability is for the server internally to allow reloading of the schema. Changes you make will be lost when the server re-reads the schema from disk."]],"trait":[["SchemaTransaction",""]]}; |