Skip to content

Latest commit

 

History

History
67 lines (59 loc) · 3.66 KB

AgriSoil.md

File metadata and controls

67 lines (59 loc) · 3.66 KB

AgriSoil

This entity contains a harmonised description of soil. This entity is primarily associated with the agricultural vertical and related IoT applications.

<AgriSoil><Generic Attributes>

Attribute Name Attribute Type Description Mandatory /Optional May be Null
id Text Unique id of this instance of this entity. M N
type Text Must be equal to "AgriSoil". M N
dateCreated DateTime Entity creation timestamp. M N
dateModified DateTime Timestamp of the last modification of the entity. M Y
source Text A sequence of characters giving the source of the entity data as a URL. M Y
dataProvider Text A sequence of characters identifying the originator of the harmonised entity. M Y

<AgriSoil><Entity Specific Attributes>

Attribute Name Attribute Type Description Mandatory /Optional May be Null
name Text The name of this soil type. M N
alternateName Text Alternative name of this soil type. O Y
description Text A description of this soil. O Y
refAgriProduct Array of Reference An array containing a JSON encoded sequence of characters referencing the unique ids of the recommended AgriProduct fertiliser (or other) product(s). O Y

AgriSoil JSON

The JSON code can be downloaded from:

https://gist.github.com/GSMADeveloper/3df400c35ce449a78ae5124ce07d99ce

{
  "id": "789363b4-c771-43d6-8505-ca582efe8fcd",
  "type": "AgriSoil",
  "dateCreated": {
    "value": "2016-08-08T10:18:16Z",
    "type": "DateTime"
  },
  "dateModified": {
    "value": "2016-08-08T10:18:16Z",
    "type": "DateTime"
  },
  "source": {
    "value": "http://www.samplefarmproduct.com",
    "type": "URL"
  },
  "dataProvider": {
    "value": "OperatorA",
    "type": "Text"
  },
  "name": {
    "value": "Clay",
    "type": "Text"
  },
  "alternateName": {
    "value": "Heavy soil",
    "type": "Text"
  },
  "description": {
    "value": "Fine grained, poor draining soil. Particle size less than 0.002mm",
    "type": "Text"
  },
  "refAgriProduct": [
    "ea54eedf-d5a7-4e44-bddd-50e9935237c0",
    "275b4c08-5e52-4bb7-8523-74ce5d0007de"
  ]
}