
view:schema-add-permissions( $schema-name as xs:string, $permissions as item()* ) as empty-sequence()
This function adds permissions to the specified schema specification.
xquery version "1.0-ml";
import module namespace view = "http://marklogic.com/xdmp/view"
at "/MarkLogic/views.xqy";
view:schema-add-permissions("main", (xdmp:permission("test-user", "read"),
xdmp:permission("test-user", "update")))
(: Enables users with the test-user role to read and update the 'main' schema. :)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.