availity · Schema

PlanInformation

Properties

Name Type Description
planName string
groupName string
groupNumber string
planBeginDate string
planEndDate string
View JSON Schema on GitHub

JSON Schema

availity-planinformation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlanInformation",
  "title": "PlanInformation",
  "type": "object",
  "properties": {
    "planName": {
      "type": "string"
    },
    "groupName": {
      "type": "string"
    },
    "groupNumber": {
      "type": "string"
    },
    "planBeginDate": {
      "type": "string",
      "format": "date"
    },
    "planEndDate": {
      "type": "string",
      "format": "date"
    }
  }
}