availity · Schema
PlanInformation
Properties
| Name | Type | Description |
|---|---|---|
| planName | string | |
| groupName | string | |
| groupNumber | string | |
| planBeginDate | string | |
| planEndDate | string |
JSON Schema
{
"$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"
}
}
}