List Map Layer Summaries
GET
OAuth Scope Required: ag2
Request URI
GET https://sandboxapi.deere.com/platform/organizations/{orgId}/fields/{id}/mapLayerSummaries
Accept: application/vnd.deere.axiom.v3+json
Parameters
Parameter | Type | Description & Example | Default | In |
---|---|---|---|---|
orgId Required | string | Organization ID Example: 1234 | N/A | path |
fieldId Required | GUID | Field ID Example: d01111d6-1fa4-4659-943a-3df4a6b7933c | N/A | path |
includePartialSummaries | boolean | Set includePartialSummaries to true to include Map Layer Summaries without File Resources. Example: true | false | query |
embed | string | Takes these values mapLayers. Example: mapLayers | N/A | query |
Response Details
Field | Type | Description & Example |
---|---|---|
links | array | Links to other objects in the Deere ecosystem. Example: See "Available Links" below |
total | number | Count of Map Layer Summaries in response. Example: 3 |
values | Map Layer Summary array | The primary resource listing. |
Map Layer Summary Details | --- | --- |
links | array | Links to other objects in the Deere ecosystem. Example: See "Available Links" below |
id | GUID | Map Layer Summary ID Example: 83ks9gh3-29fj-9302-837j-92jlsk92jd095kd |
title | string | Top level name of the Map Layer Summary Example: Summary of Map Layers |
text | string | Describes Map Layer Summary giving a better idea of what the data is about, supports limited Markdown Example: My summary of agronomic image data |
mapType | string | The type of data represented by the summary1. Example: PRESCRIPTION |
metadata | Metadata array | An array of key value pair items about the Map Layer Summary. Example: See sample response below |
dateCreated | datetime | ISO 8601 Date and time in UTC this resource was created. Example: 2016-01-02T16:14:23.421Z |
lastModifiedDate | datetime | ISO 8601 Date and time in UTC this resource was last modified. Example: 2016-01-02T16:14:23.421Z |
Sample Response [JSON]
Content-Type: application/vnd.deere.axiom.v3+json
{ "links": [ { "rel": "self", "uri": "https://sandboxapi.deere.com/platform/organizations/ORG_ID/fields/FIELD_ID/mapLayerSummaries" } ], "total": 1, "values": [ { "links": [ { "rel": "self", "uri": "https://sandboxapi.deere.com/platform/mapLayerSummaries/MAP_LAYER_SUMMARY_ID" }, { "rel": "owningOrganization", "uri": "https://sandboxapi.deere.com/platform/organizations/ORG_ID" }, { "rel": "targetResource", "uri": "https://sandboxapi.deere.com/platform/organizations/ORG_ID/fields/FEILD_ID" }, { "rel": "mapLayers", "uri": "https://sandboxapi.deere.com/platform/mapLayerSummaries/MAP_LAYER_SUMMARY_ID/mapLayers" }, { "rel": "createMapLayer", "uri": "https://sandboxapi.deere.com/platform/mapLayerSummaries/MAP_LAYER_SUMMARY_ID/mapLayers" } ], "id": "MAP_LAYER_SUMMARY_ID", "title": "some title", "text": "description of the map layers", "mapType": "OTHER", "metadata": [ { "name": "The Name", "value": "The Value" } ], "dateCreated": "2016-01-02T16:14:23.421Z", "lastModifiedDate": "2016-01-02T16:14:23.421Z" } ] }