AgStack Foundation · Schema
VigorEstimationObservation
AgricultureLinux FoundationOpen SourceGeospatialPrecision AgricultureLinked Data
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| activityType | string | |
| title | string | |
| details | string | |
| phenomenonTime | string | |
| hasEndDatetime | string | |
| madeBySensor | object | |
| hasAgriParcel | string | |
| hasArea | string | |
| hasResult | object | |
| observedProperty | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://agstack.org/schemas/VigorEstimationObservation.json",
"title": "VigorEstimationObservation",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"activityType": {
"type": "string",
"format": "uuid"
},
"title": {
"type": "string",
"maxLength": 200
},
"details": {
"type": "string",
"nullable": true
},
"phenomenonTime": {
"type": "string",
"format": "date-time"
},
"hasEndDatetime": {
"type": "string",
"format": "date-time",
"nullable": true
},
"madeBySensor": {
"allOf": [
{
"$ref": "#/components/schemas/MadeBySensorField"
}
],
"nullable": true
},
"hasAgriParcel": {
"type": "string",
"format": "uuid"
},
"hasArea": {
"type": "string",
"format": "decimal",
"pattern": "^-?\\d{0,13}(?:\\.\\d{0,2})?$"
},
"hasResult": {
"$ref": "#/components/schemas/GenericQuantityValueField"
},
"observedProperty": {
"type": "string"
}
},
"required": [
"activityType",
"hasAgriParcel",
"hasArea",
"hasResult",
"id",
"observedProperty",
"phenomenonTime"
]
}