GET api/Service/GetSkyConditionList

Get Sky Condition List

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Return a Sky Condition List

Collection of SkyCondition
NameDescriptionTypeAdditional information
SkyCondition_ID

Required for Add or Update.

integer

None.

SkyCondition_Code

string

None.

SkyCondition_Description

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SkyCondition_ID": 1,
    "SkyCondition_Code": "sample string 2",
    "SkyCondition_Description": "sample string 3"
  },
  {
    "SkyCondition_ID": 1,
    "SkyCondition_Code": "sample string 2",
    "SkyCondition_Description": "sample string 3"
  }
]

text/html

Sample:
[{"SkyCondition_ID":1,"SkyCondition_Code":"sample string 2","SkyCondition_Description":"sample string 3"},{"SkyCondition_ID":1,"SkyCondition_Code":"sample string 2","SkyCondition_Description":"sample string 3"}]

application/xml, text/xml

Sample:
<ArrayOfSkyCondition xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Faa.wildlife.ResfulAPIService.Models">
  <SkyCondition>
    <SkyCondition_Code>sample string 2</SkyCondition_Code>
    <SkyCondition_Description>sample string 3</SkyCondition_Description>
    <SkyCondition_ID>1</SkyCondition_ID>
  </SkyCondition>
  <SkyCondition>
    <SkyCondition_Code>sample string 2</SkyCondition_Code>
    <SkyCondition_Description>sample string 3</SkyCondition_Description>
    <SkyCondition_ID>1</SkyCondition_ID>
  </SkyCondition>
</ArrayOfSkyCondition>