Rule
Types
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
data class TreeNodeRule(val nodeType: String, val content: String? = null, val marks: String? = null, val group: String? = null)
Represents a single tree node rule used to validate the structure of a dev.yorkie.document.crdt.CrdtTree against the schema. Mirrors the TreeNodeRule type from the yorkie-js-sdk schema package.
Link copied to clipboard
data class YorkieTypeRule(val path: String, val type: String, val treeNodes: List<Rule.TreeNodeRule>? = null) : Rule