observationType
Description
Abstract class that supports any observation or activity on a geospatial feature or crop. Note feature and features are alternatives.
The observationType schema inherits from resourceType.
Properties
Name | Description | Required | Type |
---|---|---|---|
ObservationDate | UTC Date (required) and time (optional) the sample was taken | Yes | date-time |
PhenomenonStartTime | ISO UTC DateTime | No | date-time |
PhenomenonEndTime | ISO UTC DateTime | No | date-time |
Holding | Reference to the holding on which this observation was performed. | No | featureReferenceType |
Feature | Reference to the feature to which this observation applies. Alternative to features[]. | No | featureReferenceType |
Features | Array of features to which this observation applies. Alternative to feature. | No | Array of featureReferenceType |
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": "2022-10-03T00:00:00Z",
"feature": {
"contentType": "plot",
"identifier": {
"scheme": "com.purefarming.plotId",
"id": "677dab5e-f7fc-42c7-b25c-393aafd53c96"
},
"name": "Far flats",
"uri": "https://fertco.co.nz/plot/K384-24"
},
"holding": {
"contentType": "holding",
"identifier": {
"scheme": "com.purefarming.holdingId",
"id": "b06d7284-aeb3-4d07-918f-4ff3afc7ca67"
},
"name": "Fair View Downs",
"uri": "https://fertco.co.nz/farm/K384"
},
"phenomenonStartTime": "2022-09-03T11:00:00Z",
"phenomenonEndTime": "2022-10-03T13:00:00Z",
"responsible": "Pete Bell",
"remark": "Pasture cover October 22: Far Flats"
}
Example 2
{
"observationDate": "2022-10-21T11:15:00Z",
"features": [
{
"contentType": "site",
"identifier": {
"scheme": "nz.co.shape.siteid",
"id": "123456"
},
"name": "Outside Shed Washdown"
},
{
"contentType": "site",
"identifier": {
"scheme": "nz.co.shape.siteid",
"id": "123478"
},
"name": "Stock Water"
}
],
"holding": {
"contentType": "holding",
"identifier": {
"scheme": "com.purefarming.holdingId",
"id": "7b5be125-c96f-4095-89b3-1c267aa2206e"
},
"name": "Bliss Farm",
"uri": "https://landco.co.nz/property/K384"
},
"phenomenonStartTime": "2022-10-21T11:15:00Z",
"phenomenonEndTime": "2022-10-14T01:00:00Z",
"responsible": "Aimee Clarke",
"remark": "Water use, soil moisture and temperature, 21 October 2022"
}