changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "answered_questions": {
+ "type": "number"
+ },
+ "bio": {
+ "type": "string"
+ },
+ "credentials": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "insurance_accepted": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "languages": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "license_state": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "license_type": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "location": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "modalities": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "name": {
+ "type": "string"
+ },
+ "online_counseling": {
+ "type": "boolean"
+ },
+ "phone_counseling": {
+ "type": "boolean"
+ },
+ "role": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "specialties": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "therapy_orientation": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "topics_covered": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "url": {
+ "type": "string"
+ },
+ "username": {
+ "type": "string"
+ },
+ "website": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "years_in_practice": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "username",
+ "name",
+ "credentials",
+ "role",
+ "location",
+ "specialties",
+ "languages",
+ "online_counseling",
+ "topics_covered",
+ "url",
+ "therapy_orientation",
+ "modalities",
+ "insurance_accepted",
+ "years_in_practice",
+ "license_type",
+ "license_state",
+ "phone_counseling",
+ "website",
+ "bio",
+ "answered_questions"
+ ],
+ "type": "object"
+}