GET api/WeaponSystem/{id}/DemandByYear

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of WeaponSystemDemand
NameDescriptionTypeAdditional information
Year

integer

None.

QTY

integer

None.

Value

decimal number

None.

Type

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "year": 1,
    "qty": 1,
    "value": 1.0,
    "type": "sample string 1"
  },
  {
    "year": 1,
    "qty": 1,
    "value": 1.0,
    "type": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfWeaponSystemDemand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ISOWebAPI.Models">
  <WeaponSystemDemand>
    <QTY>1</QTY>
    <Type>sample string 1</Type>
    <Value>1</Value>
    <Year>1</Year>
  </WeaponSystemDemand>
  <WeaponSystemDemand>
    <QTY>1</QTY>
    <Type>sample string 1</Type>
    <Value>1</Value>
    <Year>1</Year>
  </WeaponSystemDemand>
</ArrayOfWeaponSystemDemand>