Skip to content

Commit a7c8419

Browse files
committed
StatisticalEntity -> Entity
1 parent bd3d888 commit a7c8419

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

coos.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ <h2>COOS Namespace and Vocabulary</h2>
314314
<td><a href="#products">Section 5. Products</a></td>
315315
</tr>
316316
<tr>
317-
<td>coos:StatisticalEntity</td>
317+
<td>coos:Entity</td>
318318
<td><a href="#products">Section 5. Products</a></td>
319319
</tr>
320320
<tr>
@@ -687,7 +687,7 @@ <h2>Organizations</h2>
687687

688688
<h2>Products</h2>
689689

690-
<p>Finally, the information that activities, capabilities and processes use and produce needs to be described. This is captured by an <code>InformationObject</code> class that aligns with the notion of “information object” in GSIM, i.e. all GSIM classes are going to be sub-classes of <code>InformationObject</code>. A <code>StatisticalInformationObject</code> is essentially an <code>InformationObject</code> representing statistical information, i.e. they are the inputs and outputs in the design and production of statistics. Some of those statistical information objects are also entities in the <code>Prov</code> sense, which are captured by the <code>Product</code> and <code>Dataset</code> classes, corresponding to the GSIM Product and GSIM Data Set, respectively. </p>
690+
<p>Finally, the information that activities, capabilities and processes use and produce needs to be described. This is captured by an <code>InformationObject</code> class that aligns with the notion of “information object” in GSIM, i.e. all GSIM classes are going to be sub-classes of <code>InformationObject</code>. A <code>StatisticalInformationObject</code> is essentially an <code>InformationObject</code> representing statistical information, i.e. they are the inputs and outputs in the design and production of statistics. Some of those statistical information objects are also entities in the <code>PROV</code> sense, which are captured by the <code>Product</code> and <code>Dataset</code> classes, corresponding to the GSIM Product and GSIM Data Set, respectively. </p>
691691

692692
<p>Here again, the PROV vocabulary is useful, in particular to provide provenance information on products and to link them to activities and organizations (for example <code>prov:wasGeneratedBy</code> from a product to an activity).</p>
693693

coos.ttl

+9-9
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ coos:StatisticalInformationObject a rdfs:Class , owl:Class ;
166166
rdfs:subClassOf coos:InformationObject ;
167167
rdfs:isDefinedBy <http://id.unece.org/def/coos> .
168168

169-
coos:StatisticalEntity a rdfs:Class , owl:Class ;
169+
coos:Entity a rdfs:Class , owl:Class ;
170170
rdfs:label "Statistical entity"@en , "Entité statistique"@fr , "Entidad estadística"@es ;
171171
rdfs:comment "Statistical information object which is also an entity in the sense of PROV."@en , "Objeto de información estadística, el cual es tambien una entidad en el sentido de PROV."@es , "Objet informationnel qui est aussi une entité au sens de PROV."@fr ;
172172
skos:definition "Statistical information object which is also an entity in the sense of PROV."@en , "Objeto de información estadística, el cual es tambien una entidad en el sentido de PROV."@es , "Objet informationnel qui est aussi une entité au sens de PROV."@fr ;
@@ -186,10 +186,10 @@ coos:Product a rdfs:Class , owl:Class ;
186186
rdfs:label "Statistical product"@en , "Produit statistique"@fr , "Producto estadístico"@es ;
187187
rdfs:comment "Corresponds to the GSIM Product."@en , "Correspond au Product GSIM."@fr , "Corresponde a producto en GSIM."@es ;
188188
skos:definition "Corresponds to the GSIM Product."@en , "Correspond au Product GSIM."@fr , "Corresponde a producto en GSIM."@es ;
189-
rdfs:subClassOf coos:StatisticalEntity ;
189+
rdfs:subClassOf coos:Entity ;
190190
rdfs:isDefinedBy <http://id.unece.org/def/coos> .
191191

192-
coos:StatisticalDataset a rdfs:Class , owl:Class ;
192+
coos:Dataset a rdfs:Class , owl:Class ;
193193
rdfs:label "Statistical dataset"@en , "Jeu de données statistiques"@fr , "Conjunto de datos estadísticos"@es ;
194194
rdfs:comment "Corresponds to the GSIM Data Set."@en , "Correspond au Data Set GSIM."@fr , "Corresponde a Conjunto de Datos en GSIM"@es ;
195195
skos:definition "Corresponds to the GSIM Data Set."@en , "Correspond au Data Set GSIM."@fr , "Corresponde a Conjunto de Datos en GSIM"@es ;
@@ -200,36 +200,36 @@ coos:DimensionalDataset a rdfs:Class , owl:Class ;
200200
rdfs:label "Dimensional dataset"@en , "Conjunto de datos dimensional"@es ;
201201
rdfs:comment "Collection of data where each datapoint is uniquely defined by combining one category from each prespecified dimension"@en , "Colección de datos en los que cada punto de datos es definido unívocamente por la combinación de una categoría de de cada dimensión pre-especificada"@es ;
202202
skos:definition "Collection of data where each datapoint is uniquely defined by combining one category from each prespecified dimension"@en , "Colección de datos en los que cada punto de datos es definido unívocamente por la combinación de una categoría de de cada dimensión pre-especificada"@es ;
203-
rdfs:subClassOf coos:StatisticalDataset ;
203+
rdfs:subClassOf coos:Dataset ;
204204
rdfs:isDefinedBy <http://id.unece.org/def/coos> .
205205

206206
coos:GraphDataset a rdfs:Class , owl:Class ;
207207
rdfs:label "Graph dataset"@en , "Conjunto de datos del grapho"@es ;
208208
rdfs:comment "Collection of data organized in a graph-like (including tree-like) structure"@en , "Colección de datos organizados en una estructura parecida a la de un grafo (incluyendo la de árbol)"@es ;
209209
skos:definition "Collection of data organized in a graph-like (including tree-like) structure"@en , "Colección de datos organizados en una estructura parecida a la de un grafo (incluyendo la de árbol)"@es ;
210210
skos:scopeNote "This includes RDF, property graphs and XML"@en ;
211-
rdfs:subClassOf coos:StatisticalDataset ;
211+
rdfs:subClassOf coos:Dataset ;
212212
rdfs:isDefinedBy <http://id.unece.org/def/coos> .
213213

214214
coos:KeyValueDataset a rdfs:Class , owl:Class ;
215215
rdfs:label "Key-value dataset"@en , "Conjunto de datos clave-valor"@es ;
216216
rdfs:comment "Collection of data where each datapoint is paired with a key"@en , "Colección de datos donde cada punto de datos es emparejado con una clave"@es ;
217217
skos:definition "Collection of data where each datapoint is paired with a key"@en , "Colección de datos donde cada punto de datos es emparejado con una clave"@es ;
218-
rdfs:subClassOf coos:StatisticalDataset ;
218+
rdfs:subClassOf coos:Dataset ;
219219
rdfs:isDefinedBy <http://id.unece.org/def/coos> .
220220

221221
coos:RectangularDataset a rdfs:Class , owl:Class ;
222222
rdfs:label "Rectangular dataset"@en , "Conjunto de datos rectángular"@es ;
223223
rdfs:comment "Collection of data where variables are represented with columns"@en , "Colección de datos en el que las variables son representadas con columnas"@es ;
224224
skos:definition "Collection of data where variables are represented with columns"@en , "Colección de datos en el que las variables son representadas con columnas"@es ;
225-
rdfs:subClassOf coos:StatisticalDataset ;
225+
rdfs:subClassOf coos:Dataset ;
226226
rdfs:isDefinedBy <http://id.unece.org/def/coos> .
227227

228228
coos:TransposedDataset a rdfs:Class , owl:Class ;
229229
rdfs:label "Transposed dataset"@en , "Conjunto de datos transpuesto"@es ;
230230
rdfs:comment "Collection of data where variables are represented with rows"@en , "Colección de datos en el que las variables son representadas con filas"@es ;
231231
skos:definition "Collection of data where variables are represented with rows"@en , "Colección de datos en el que las variables son representadas con filas"@es ;
232-
rdfs:subClassOf coos:StatisticalDataset ;
232+
rdfs:subClassOf coos:Dataset ;
233233
rdfs:isDefinedBy <http://id.unece.org/def/coos> .
234234

235235
coos:ProductPresentation a owl:Class , rdfs:Class ;
@@ -347,7 +347,7 @@ coos:metadataFor a rdfs:Property , owl:ObjectProperty ;
347347
rdfs:label "metadata for"@en , "métadonnées pour"@fr , "metadatos por"@es ;
348348
rdfs:comment "Indicates that a dataset contains metadata attached to a given resource"@en , "Indica que un conjunto de datos contiene metadatos adjuntos a un recurso dado"@es ;
349349
skos:definition "Indicates that a dataset contains metadata attached to a given resource"@en , "Indica que un conjunto de datos contiene metadatos adjuntos a un recurso dado"@es ;
350-
rdfs:domain coos:StatisticalDataset ;
350+
rdfs:domain coos:Dataset ;
351351
rdfs:isDefinedBy <http://id.unece.org/def/coos> .
352352

353353
# Property for product presentation

0 commit comments

Comments
 (0)