changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "advisors_available": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "limits": {
+ "additionalProperties": false,
+ "properties": {
+ "calls_per_min": {
+ "minimum": 1,
+ "type": "integer"
+ },
+ "consultations_per_day": {
+ "minimum": 1,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "calls_per_min",
+ "consultations_per_day"
+ ],
+ "type": "object"
+ },
+ "subscription": {
+ "additionalProperties": false,
+ "properties": {
+ "active": {
+ "type": "boolean"
+ },
+ "expires_at": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "plan": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "active",
+ "plan",
+ "expires_at"
+ ],
+ "type": "object"
+ },
+ "this_month": {
+ "additionalProperties": false,
+ "properties": {
+ "calls": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "tokens": {
+ "minimum": 0,
+ "type": [
+ "integer",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "calls",
+ "tokens"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "subscription",
+ "advisors_available",
+ "this_month",
+ "limits"
+ ],
+ "type": "object"
+}