Advertisement
Guest User

Untitled

a guest
Oct 7th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SPARQL 1.38 KB | None | 0 0
  1. PREFIX emf: <http://ittruse.ittbg.com/ontology/enterpriseManagementFramework#>
  2. PREFIX sec: <http://www.sirma.com/ontologies/2014/11/security#>
  3. PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
  4. INSERT DATA {
  5.   GRAPH <http://ittruse.ittbg.com/ontology/enterpriseManagementFramework> {
  6.        
  7.         emf:Document sec:allowInheritParentPermissions "true"^^xsd:boolean ;
  8.                      sec:allowInheritLibraryPermissions "false"^^xsd:boolean .
  9.        
  10.         emf:Audio sec:allowInheritParentPermissions "true"^^xsd:boolean ;
  11.                   sec:allowInheritLibraryPermissions "false"^^xsd:boolean .
  12.        
  13.         emf:Image sec:allowInheritParentPermissions "true"^^xsd:boolean ;
  14.                   sec:allowInheritLibraryPermissions "false"^^xsd:boolean .
  15.        
  16.         emf:Video sec:allowInheritParentPermissions "true"^^xsd:boolean ;
  17.                   sec:allowInheritLibraryPermissions "false"^^xsd:boolean .
  18.        
  19.         emf:Project sec:allowInheritParentPermissions "true"^^xsd:boolean ;
  20.                     sec:allowInheritLibraryPermissions "false"^^xsd:boolean .
  21.        
  22.         emf:Case sec:allowInheritParentPermissions "true"^^xsd:boolean ;
  23.                  sec:allowInheritLibraryPermissions "true"^^xsd:boolean .
  24.        
  25.         emf:Task sec:allowInheritParentPermissions "true"^^xsd:boolean ;
  26.                  sec:allowInheritLibraryPermissions "false"^^xsd:boolean .
  27.        
  28.   }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement