OrganizationPlanWithDetails
Response type that includes both the plan and organization_plan details
Properties
| Property | Type | Required | Description |
|---|---|---|---|
organization_plan |
OrganizationPlan | Yes | |
plan |
Plan | Yes |
View JSON Schema
{
"type": "object",
"description": "Response type that includes both the plan and organization_plan details",
"required": [
"organization_plan",
"plan"
],
"properties": {
"organization_plan": {
"$ref": "#/components/schemas/OrganizationPlan"
},
"plan": {
"$ref": "#/components/schemas/Plan"
}
}
}