coreObservationType
Description
Abstract class supporting an observation. Has the properties of ObservationType but excludes holding and features.
The coreObservationType schema inherits from resourceType.
Properties
Name | Description | Required | Type |
---|---|---|---|
ObservationDate | UTC Date (required) and time (optional) the observation was taken | Yes | date-time |
PhenomenonStartTime | ISO UTC DateTime. The start time of the phenomenon being observed. | No | date-time |
PhenomenonEndTime | ISO UTC DateTime. The end time of the phenomenon being observed. | No | date-time |
Responsible | Identifier of the person responsible for the observation | No | string |
Remark | Notes or remarks field | No | string |
Id | Unique identifier (UUID) used within the current server to identify the resource. | Yes | string |
Identifiers | Identifiers for the resource (see well-known/schemes... for example identity schemes). | No | Array of identifierType |
Links | Linked resources that are related to the current resource. | No | Array of relationType |
Meta | Meta-data for the resource. Mandatory if you wish to support synchronisation. | Yes | metaDataType |
Name | A user-readable name for the resource. | No | string |
Self | Uniform resource identifier (URI) of the resource (rel=self). | No | string |
Examples
Example 1
{
"observationDate": "2024-10-30T01:50:44.6657475+00:00",
"phenomenonStartTime": "2024-10-30T01:50:44.6657488+00:00",
"phenomenonEndTime": "2024-10-30T01:50:44.6657498+00:00",
"responsible": "responsible",
"remark": "remark",
"id": "id",
"identifiers": [
{
"scheme": "scheme",
"id": "id"
}
],
"links": [
{
"relationship": "relationship",
"contentType": "contentType",
"related": "related"
}
],
"meta": {
"sourceId": {
"scheme": "scheme",
"id": "id"
},
"modified": "2024-10-30T01:50:44.6657703+00:00",
"created": "2024-10-30T01:50:44.6657730+00:00",
"creator": "creator",
"validFrom": "2024-10-30T01:50:44.6657753+00:00",
"validTo": "2024-10-30T01:50:44.6657764+00:00",
"isDeleted": false
},
"name": "name",
"resourceType": "resourceType",
"@self": "@self"
}