diff --git a/model/index.html b/model/index.html index 391d05c..a27d0f9 100644 --- a/model/index.html +++ b/model/index.html @@ -899,25 +899,25 @@

Refinement property with an Asset Collection

- {
-    "@context": "http://www.w3.org/ns/odrl.jsonld",
-    "@type": "Offer",
-    "uid": "http://example.com/policy:4444",
-    "profile": "http://example.com/odrl:profile:11",
-    "permission": [{
-        "assigner": "http://example.com/org88",
-        "target": {
-            "@type": "AssetCollection",
-            "source":  "http://example.com/media-catalogue",
-            "refinement": [{
-                "leftOperand": "runningTime",
-                "operator": "lt",
-                "rightOperand": "60",
-                "unit": "http://qudt.org/vocab/unit/MinuteTime"
-            }],
-        },
-        "action": "play"
-    }]
+{
+  "@context": "http://www.w3.org/ns/odrl.jsonld",
+  "@type": "Offer",
+  "uid": "http://example.com/policy:4444",
+  "profile": "http://example.com/odrl:profile:11",
+  "permission": [{
+    "assigner": "http://example.com/org88",
+    "target": {
+      "@type": "AssetCollection",
+      "source":  "http://example.com/media-catalogue",
+      "refinement": [{
+        "leftOperand": "runningTime",
+        "operator": "lt",
+        "rightOperand": "60",
+        "unit": "http://qudt.org/vocab/unit/MinuteTime"
+      }]
+    },
+    "action": "play"
+  }]
 }
 
@@ -946,24 +946,24 @@

Refinement property with a Party Collection

 {
-    "@context": "http://www.w3.org/ns/odrl.jsonld",
-    "@type": "Agreement",
-    "uid": "http://example.com/policy:4444",
-    "profile": "http://example.com/odrl:profile:12",
-    "permission": [{
-        "target": "http://example.com/myPhotos:BdayParty",
-        "assigner": "http://example.com/user44",
-        "assignee": {
-            "@type": "PartyCollection",
-            "source":  "http://example.com/user44/friends",
-            "refinement": [{
-                "leftOperand": "foaf:age",
-                "operator": "gt",
-                "rightOperand": "17"
-            }],
-        },
-        "action": "display"
-    }]
+  "@context": "http://www.w3.org/ns/odrl.jsonld",
+  "@type": "Agreement",
+  "uid": "http://example.com/policy:4444",
+  "profile": "http://example.com/odrl:profile:12",
+  "permission": [{
+    "target": "http://example.com/myPhotos:BdayParty",
+    "assigner": "http://example.com/user44",
+    "assignee": {
+      "@type": "PartyCollection",
+      "source":  "http://example.com/user44/friends",
+      "refinement": [{
+        "leftOperand": "foaf:age",
+        "operator": "gt",
+        "rightOperand": "17"
+      }]
+    },
+    "action": "display"
+  }]
 }
 
@@ -1134,21 +1134,25 @@

Obligation property with a Policy

 {
-    "@context": "http://www.w3.org/ns/odrl.jsonld",
-    "@type": "Agreement",
-    "uid": "http://example.com/policy:42",
-    "profile": "http://example.com/odrl:profile:09",
-    "obligation": [{
-	"assigner": "http://example.com/org:43",
-	"assignee": "http://example.com/person:44",
-	"action": [{
-            "rdf:value": { "@id": "odrl:compensate" },
-            "refinement": [{
-                 "leftOperand": "payAmount",
-                 "operator": "eq",
-                 "rightOperand": "500.00",
-                 "unit": "http://dbpedia.org/resource/Euro"
+  "@context": "http://www.w3.org/ns/odrl.jsonld",
+  "@type": "Agreement",
+  "uid": "http://example.com/policy:42",
+  "profile": "http://example.com/odrl:profile:09",
+  "obligation": [{
+      "assigner": "http://example.com/org:43",
+      "assignee": "http://example.com/person:44",
+      "action": [{
+          "rdf:value": {
+            "@id": "odrl:compensate"
+          },
+          "refinement": [
+            {
+              "leftOperand": "payAmount",
+              "operator": "eq",
+              "rightOperand": "500.00",
+              "unit": "http://dbpedia.org/resource/Euro"
             }]
+        }]
     }]
 }
 
@@ -1328,16 +1332,17 @@

Policy Rule Composition

The example below shows the atomic level of a Policy where it is an irreducible Rule (that is, not able to be reduced or further simplified).

+
 {
-    "@context": "http://www.w3.org/ns/odrl.jsonld",
-    "@type": "Policy",
-    "uid": "http://example.com/policy:7777",
-    "profile": "http://example.com/odrl:profile:20",
-    "permission": [{
-        "target": "http://example.com/music/1999.mp3",
-        "assigner": "http://example.com/org/sony-music",
-        "action": "play",
-    }]
+  "@context": "http://www.w3.org/ns/odrl.jsonld",
+  "@type": "Policy",
+  "uid": "http://example.com/policy:7777",
+  "profile": "http://example.com/odrl:profile:20",
+  "permission": [{
+    "target": "http://example.com/music/1999.mp3",
+    "assigner": "http://example.com/org/sony-music",
+    "action": "play"
+  }]
 } 
 
diff --git a/snapshots/CR-odrl-model-20170926/index.html b/snapshots/CR-odrl-model-20170926/index.html index 8f96a9e..ef50e93 100644 --- a/snapshots/CR-odrl-model-20170926/index.html +++ b/snapshots/CR-odrl-model-20170926/index.html @@ -166,6 +166,7 @@ ODRL Information Model +