AgStack Foundation · Schema
GenericFarmAsset
AgricultureLinux FoundationOpen SourceGeospatialPrecision AgricultureLinked Data
Properties
| Name | Type | Description |
|---|---|---|
| status | object | |
| invalidatedAtTime | string | |
| dateCreated | string | |
| dateModified | string | |
| id | string | |
| name | string | |
| description | string | |
| hasAgriParcel | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://agstack.org/schemas/GenericFarmAsset.json",
"title": "GenericFarmAsset",
"type": "object",
"properties": {
"status": {
"allOf": [
{
"$ref": "#/components/schemas/StatusEnum"
}
],
"minimum": -2147483648,
"maximum": 2147483647
},
"invalidatedAtTime": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"dateCreated": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"dateModified": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"name": {
"type": "string",
"maxLength": 100
},
"description": {
"type": "string",
"nullable": true
},
"hasAgriParcel": {
"type": "string",
"format": "uuid"
}
},
"required": [
"dateCreated",
"dateModified",
"hasAgriParcel",
"id",
"invalidatedAtTime",
"name"
]
}