addedOutput schema / properties / businesses / items / properties
Added value: +{
+ "allowance_model": {
+ "enum": [
+ "minutes",
+ "answered_calls"
+ ],
+ "type": "string"
+ },
+ "answered_calls_allowance": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "answered_calls_raw": {
+ "description": "Unweighted billable call count for reporting.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "answered_calls_used": {
+ "description": "Raw billable call count used for allowance reporting, matching dashboard and right-sizing; null for minute plans.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "answered_calls_weighted": {
+ "description": "Informational only, not allowance consumption or right-sizing: ordinary calls 1, human-answered silent-listen calls 0.5; null for minute plans.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "business_id": {
+ "type": "string"
+ },
+ "minutes_allowance": {
+ "type": "number"
+ },
+ "minutes_used": {
+ "type": "number"
+ },
+ "overage_allowed": {
+ "type": "boolean"
+ },
+ "period_end": {
+ "description": "Null for lifetime trial usage; does not imply the trial cannot expire.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "period_kind": {
+ "enum": [
+ "lifetime_trial",
+ "billing_cycle"
+ ],
+ "type": "string"
+ },
+ "period_start": {
+ "type": "string"
+ },
+ "phone_numbers": {
+ "description": "Active registered numbers, including unassigned numbers.",
+ "type": "integer"
+ },
+ "phone_numbers_allowance": {
+ "type": "integer"
+ },
+ "plan_key": {
+ "type": "string"
+ },
+ "plan_name": {
+ "type": "string"
+ },
+ "price_monthly": {
+ "description": "Mapped subscription base price in USD; zero for no-card trial. Excludes add-ons and tax.",
+ "type": "number"
+ },
+ "subscription_status": {
+ "type": "string"
+ }
+}
addedOutput schema / properties / businesses / items / required
Added value: +[
+ "business_id",
+ "plan_key",
+ "plan_name",
+ "price_monthly",
+ "allowance_model",
+ "minutes_used",
+ "minutes_allowance",
+ "answered_calls_used",
+ "answered_calls_raw",
+ "answered_calls_weighted",
+ "answered_calls_allowance",
+ "phone_numbers",
+ "phone_numbers_allowance",
+ "subscription_status",
+ "overage_allowed",
+ "period_start",
+ "period_end",
+ "period_kind"
+]