AgStack Foundation · Schema
PatchedAlert
AgricultureLinux FoundationOpen SourceGeospatialPrecision AgricultureLinked Data
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| activityType | string | |
| title | string | |
| details | string | |
| severity | object | |
| hasAgriParcel | string | |
| validFrom | string | |
| validTo | string | |
| dateIssued | string | |
| quantityValue | object | |
| relatedObservation | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://agstack.org/schemas/PatchedAlert.json",
"title": "PatchedAlert",
"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
},
"severity": {
"$ref": "#/components/schemas/SeverityEnum"
},
"hasAgriParcel": {
"type": "string",
"format": "uuid"
},
"validFrom": {
"type": "string",
"format": "date-time"
},
"validTo": {
"type": "string",
"format": "date-time"
},
"dateIssued": {
"type": "string",
"format": "date-time",
"readOnly": true,
"nullable": true
},
"quantityValue": {
"$ref": "#/components/schemas/ObservationQuantityValueField"
},
"relatedObservation": {
"type": "string",
"format": "uuid",
"nullable": true
}
}
}