Skip to content

Commit

Permalink
replaced void:entities with void:distinctSubjects or void:distinctObj…
Browse files Browse the repository at this point in the history
…ects
  • Loading branch information
micheldumontier committed Oct 30, 2014
1 parent 890670c commit 826371a
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions Overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -1459,7 +1459,7 @@ <h4>6.6.2 Enhanced Statistics</h4>
void:property &lt;property-uri&gt; ;
void:classPartition [
void:class &lt;subject-class-uri&gt; ;
void:entities "###"^^xsd:integer ;
void:distinctSubjects "###"^^xsd:integer ;
]
].
</pre>
Expand All @@ -1476,7 +1476,7 @@ <h4>6.6.2 Enhanced Statistics</h4>
void:property &lt;property-uri&gt; ;
void-ext:objectClassPartition [
void:class &lt;object-class-uri&gt; ;
void:entities "###"^^xsd:integer]
void:distinctObjects "###"^^xsd:integer]
].
</pre>
<p>SPARQL query:</p>
Expand All @@ -1492,7 +1492,7 @@ <h4>6.6.2 Enhanced Statistics</h4>
void:property &lt;property-uri&gt; ;
void-ext:objectClassPartition [
void:class rdfs:Literal;
void:entities "###"^^xsd:integer
void:distinctObjects "###"^^xsd:integer
]
] .
</pre>
Expand All @@ -1510,18 +1510,16 @@ <h4>6.6.2 Enhanced Statistics</h4>
void:property &lt;property-uri&gt; ;
void:classPartition [
void:class &lt;subject-class-uri&gt; ;
void:entities "###"^^xsd:integer ;
void:distinctSubjects "###"^^xsd:integer ;
];
void-ext:objectClassPartition [
void:class &lt;object-class-uri&gt; ;
void:entities "###"^^xsd:integer]
void:distinctObjects "###"^^xsd:integer]
]
] .
</pre>




<p>To specify the <strong>number and list of properties that link items from one dataset to another</strong>:</p>

<pre>
Expand Down

1 comment on commit 826371a

@micheldumontier
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

addressing #81

Please sign in to comment.