GET api/v2/structures/parcelusets

Returns list of Parcel Use Time Series

NameDescriptionType
acresProrated

Structure's prorated number of acres based on total number of WDIDs that can deliver water to parcel.

decimal number
acresTotal

Area of the parcel in acres.

decimal number
assocGwWdid

Number of groundwater structures associated with parcel

string
assocSwWdid

Number of surface water structures associated with parcel

string
calYear

Calendar Year

integer
irrigType

The irrigation method used to irrigate parcel

string
landUse

The crop type of the parcel

string
modified

Last date time that this record was modified in the DWR database

date
parcelId

A sequential number within a water division that combined with [div], [wd], and [cal_year] identifies a parcel in GIS

integer
structureName

Name of Structure

string
wdid

DWR unique structure identifier

string

Response Formats

application/json, text/json
Sample:
[
  {
    "wdid": "sample string 1",
    "structureName": "sample string 2",
    "calYear": 3,
    "parcelId": 4,
    "landUse": "sample string 5",
    "irrigType": "sample string 6",
    "acresProrated": 1.0,
    "acresTotal": 1.0,
    "assocSwWdid": "sample string 7",
    "assocGwWdid": "sample string 8",
    "modified": "2024-05-22T10:28:24.4129242-06:00"
  },
  {
    "wdid": "sample string 1",
    "structureName": "sample string 2",
    "calYear": 3,
    "parcelId": 4,
    "landUse": "sample string 5",
    "irrigType": "sample string 6",
    "acresProrated": 1.0,
    "acresTotal": 1.0,
    "assocSwWdid": "sample string 7",
    "assocGwWdid": "sample string 8",
    "modified": "2024-05-22T10:28:24.4129242-06:00"
  }
]
application/xml, text/xml
Sample:
<ArrayOfParcelUse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <ParcelUse>
    <acresProrated>1</acresProrated>
    <acresTotal>1</acresTotal>
    <assocGwWdid>sample string 8</assocGwWdid>
    <assocSwWdid>sample string 7</assocSwWdid>
    <calYear>3</calYear>
    <irrigType>sample string 6</irrigType>
    <landUse>sample string 5</landUse>
    <modified>2024-05-22T10:28:24.4129242-06:00</modified>
    <parcelId>4</parcelId>
    <structureName>sample string 2</structureName>
    <wdid>sample string 1</wdid>
  </ParcelUse>
  <ParcelUse>
    <acresProrated>1</acresProrated>
    <acresTotal>1</acresTotal>
    <assocGwWdid>sample string 8</assocGwWdid>
    <assocSwWdid>sample string 7</assocSwWdid>
    <calYear>3</calYear>
    <irrigType>sample string 6</irrigType>
    <landUse>sample string 5</landUse>
    <modified>2024-05-22T10:28:24.4129242-06:00</modified>
    <parcelId>4</parcelId>
    <structureName>sample string 2</structureName>
    <wdid>sample string 1</wdid>
  </ParcelUse>
</ArrayOfParcelUse>