---
title: "NDWC.Cap.JsonArea"
url: "https://capalert-developer-portal.apiddpm.com/apis/national-cap-alerting-service-api-1/versions/9738bb43-d24d-4239-8917-928fe84376ca/schemas/NDWC.Cap.JsonArea"
---

> Full API specification: https://capalert-developer-portal.apiddpm.com/apis/national-cap-alerting-service-api-1/versions/9738bb43-d24d-4239-8917-928fe84376ca.md

# NDWC.Cap.JsonArea

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: National CAP Alerting Service API
  version: 1.0.0
servers:
  - url: https://capalert-api-developer.apiddpm.com
components:
  schemas:
    NDWC.Cap.JsonGeoCode:
      type: object
      properties:
        valueName:
          type: string
          nullable: true
        value:
          type: string
          nullable: true
      additionalProperties: false
    NDWC.Cap.JsonArea:
      type: object
      properties:
        areaDesc:
          type: string
          nullable: true
        polygon:
          type: array
          items:
            type: string
          nullable: true
        circle:
          type: string
          nullable: true
        geocode:
          type: array
          items:
            $ref: "#/components/schemas/NDWC.Cap.JsonGeoCode"
          nullable: true
        altitude:
          type: number
          format: double
          nullable: true
        ceiling:
          type: number
          format: double
          nullable: true
      additionalProperties: false
```
