Conditions
Permit conditions have special information and rules pertaining to the specific permit and area.
Fields
The following fields are available in the response:
id: number - The ID of the permit condition.
name: string - The user friendly name of the permit condition.
label: string - The computer friendly name of the permit condition.
description: string - The description of the permit condition (in HTML)
permits: string[] - Array of permit names;
Sample Response
{
"id": 3,
"name": "Cold Weather Closure",
"label": "cold_weather_closure",
"description": "<p>The Shrimp Fishery Management Plan allows North and South Carolina, Georgia and east Florida to request a closure in federal waters adjacent to closed state waters for brown, pink or white shrimp following severe cold weather that results in an 80% or greater reduction in the population of white shrimp (whiting, royal red and rock shrimp fisheries are exempt from a federal closure for white shrimp). During a federal closure, a buffer zone is established extending seaward from shore to 25 nautical miles, inside of which no trawling is allowed with a net having less than 4\" stretch mesh. Vessels trawling inside this buffer zone cannot have a shrimp net aboard (i.e., a net with less than 4\" stretch mesh) in the closed portion of the federal zone. Transit of the closed federal zone with less than 4\" stretch mesh aboard while in possession of a Penaeus (white, brown and pink) species will be allowed, provided that the nets are in an unfishable condition, which is defined as stowed below deck.</p>",
"permits": ["South Atlantic Penaeid Shrimp"]
}
Get all conditions (bulk)
GET api/commercial/conditions
Get Conditions by IDs
You can also get conditions by an ID or set of IDs. To get multiple ID's, separate with a '-'.
Will get the area ID 5
:
GET api/commercial/conditions/5
Will get the conditions of ID 5, 6, 12
:
GET api/commercial/conditions/5-6-12