big tings

This commit is contained in:
Max Richter
2025-08-17 15:16:17 +02:00
parent 40b9be887d
commit c687eff53d
958 changed files with 32279 additions and 704 deletions

View File

@@ -0,0 +1,114 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:Observation",
"title": "Observation",
"description": "Instances of the class [[Observation]] are used to specify observations about an entity at a particular time. The principal properties of an [[Observation]] are [[observationAbout]], [[measuredProperty]], [[statType]], [[value] and [[observationDate]] and [[measuredProperty]]. Some but not all Observations represent a [[QuantitativeValue]]. Quantitative observations can be about a [[StatisticalVariable]], which is an abstract specification about which we can make observations that are grounded at a particular location and time.\n\nObservations can also encode a subset of simple RDF-like statements (its observationAbout, a StatisticalVariable, defining the measuredPoperty; its observationAbout property indicating the entity the statement is about, and [[value]] )\n\nIn the context of a quantitative knowledge graph, typical properties could include [[measuredProperty]], [[observationAbout]], [[observationDate]], [[value]], [[unitCode]], [[unitText]], [[measurementMethod]].\n ",
"type": "object",
"allOf": [
{
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.",
"$ref": "schema:Intangible"
},
{
"description": "A point value or interval for product characteristics and other purposes.",
"$ref": "schema:QuantitativeValue"
}
],
"properties": {
"marginOfError": {
"description": "A [[marginOfError]] for an [[Observation]].",
"oneOf": [
{ "$ref": "schema:QuantitativeValue" },
{ "type": "array", "items": { "$ref": "schema:QuantitativeValue" } }
]
},
"measuredProperty": {
"description": "The measuredProperty of an [[Observation]], typically via its [[StatisticalVariable]]. There are various kinds of applicable [[Property]]: a schema.org property, a property from other RDF-compatible systems, e.g. W3C RDF Data Cube, Data Commons, Wikidata, or schema.org extensions such as [GS1's](https://www.gs1.org/voc/?show=properties).",
"$ref": "schema:Property"
},
"measurementDenominator": {
"description": "Identifies the denominator variable when an observation represents a ratio or percentage.",
"oneOf": [
{ "$ref": "schema:StatisticalVariable" },
{ "type": "array", "items": { "$ref": "schema:StatisticalVariable" } }
]
},
"measurementMethod": {
"description": "A subproperty of [[measurementTechnique]] that can be used for specifying specific methods, in particular via [[MeasurementMethodEnum]].",
"oneOf": [
{
"anyOf": [
{ "type": "string", "format": "uri" },
{ "type": "string" },
{ "$ref": "schema:DefinedTerm" },
{ "$ref": "schema:MeasurementMethodEnum" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "type": "string", "format": "uri" },
{ "type": "string" },
{ "$ref": "schema:DefinedTerm" },
{ "$ref": "schema:MeasurementMethodEnum" }
]
}
}
]
},
"measurementQualifier": {
"description": "Provides additional qualification to an observation. For example, a GDP observation measures the Nominal value.",
"oneOf": [
{ "$ref": "schema:Enumeration" },
{ "type": "array", "items": { "$ref": "schema:Enumeration" } }
]
},
"measurementTechnique": {
"description": "A technique, method or technology used in an [[Observation]], [[StatisticalVariable]] or [[Dataset]] (or [[DataDownload]], [[DataCatalog]]), corresponding to the method used for measuring the corresponding variable(s) (for datasets, described using [[variableMeasured]]; for [[Observation]], a [[StatisticalVariable]]). Often but not necessarily each [[variableMeasured]] will have an explicit representation as (or mapping to) an property such as those defined in Schema.org, or other RDF vocabularies and \"knowledge graphs\". In that case the subproperty of [[variableMeasured]] called [[measuredProperty]] is applicable.\n \nThe [[measurementTechnique]] property helps when extra clarification is needed about how a [[measuredProperty]] was measured. This is oriented towards scientific and scholarly dataset publication but may have broader applicability; it is not intended as a full representation of measurement, but can often serve as a high level summary for dataset discovery. \n\nFor example, if [[variableMeasured]] is: molecule concentration, [[measurementTechnique]] could be: \"mass spectrometry\" or \"nmr spectroscopy\" or \"colorimetry\" or \"immunofluorescence\". If the [[variableMeasured]] is \"depression rating\", the [[measurementTechnique]] could be \"Zung Scale\" or \"HAM-D\" or \"Beck Depression Inventory\". \n\nIf there are several [[variableMeasured]] properties recorded for some given data object, use a [[PropertyValue]] for each [[variableMeasured]] and attach the corresponding [[measurementTechnique]]. The value can also be from an enumeration, organized as a [[MeasurementMetholdEnumeration]].",
"oneOf": [
{
"anyOf": [
{ "type": "string", "format": "uri" },
{ "type": "string" },
{ "$ref": "schema:DefinedTerm" },
{ "$ref": "schema:MeasurementMethodEnum" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "type": "string", "format": "uri" },
{ "type": "string" },
{ "$ref": "schema:DefinedTerm" },
{ "$ref": "schema:MeasurementMethodEnum" }
]
}
}
]
},
"observationAbout": {
"description": "The [[observationAbout]] property identifies an entity, often a [[Place]], associated with an [[Observation]].",
"anyOf": [{ "$ref": "schema:Place" }, { "$ref": "schema:Thing" }]
},
"observationDate": {
"description": "The observationDate of an [[Observation]].",
"type": "string",
"format": "date-time"
},
"observationPeriod": {
"description": "The length of time an Observation took place over. The format follows `P[0-9]*[Y|M|D|h|m|s]`. For example, P1Y is Period 1 Year, P3M is Period 3 Months, P3h is Period 3 hours.",
"type": "string"
},
"variableMeasured": {
"description": "The variableMeasured property can indicate (repeated as necessary) the variables that are measured in some dataset, either described as text or as pairs of identifier and description using PropertyValue, or more explicitly as a [[StatisticalVariable]].",
"anyOf": [
{ "type": "string" },
{ "$ref": "schema:Property" },
{ "$ref": "schema:PropertyValue" },
{ "$ref": "schema:StatisticalVariable" }
]
}
}
}