removedInput schema / properties / email
Removed value: -{
- "description": "Email addresses",
- "items": {
- "properties": {
- "label": {
- "description": "Label (work, home, other)",
- "type": "string"
- },
- "primary": {
- "description": "Is primary email",
- "type": "boolean"
- },
- "value": {
- "description": "Email address",
- "type": "string"
- }
- },
- "required": [
- "value"
- ],
- "type": "object"
- },
- "type": "array"
-}
addedInput schema / properties / emails
Added value: +{
+ "description": "Email addresses (array of objects, e.g. [{ value, primary, label }])",
+ "items": {
+ "properties": {
+ "label": {
+ "description": "Label (work, home, other)",
+ "type": "string"
+ },
+ "primary": {
+ "description": "Is primary email",
+ "type": "boolean"
+ },
+ "value": {
+ "description": "Email address",
+ "type": "string"
+ }
+ },
+ "required": [
+ "value"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
removedInput schema / properties / phone
Removed value: -{
- "description": "Phone numbers",
- "items": {
- "properties": {
- "label": {
- "description": "Label (work, home, mobile)",
- "type": "string"
- },
- "primary": {
- "description": "Is primary phone",
- "type": "boolean"
- },
- "value": {
- "description": "Phone number",
- "type": "string"
- }
- },
- "required": [
- "value"
- ],
- "type": "object"
- },
- "type": "array"
-}
addedInput schema / properties / phones
Added value: +{
+ "description": "Phone numbers (array of objects, e.g. [{ value, primary, label }])",
+ "items": {
+ "properties": {
+ "label": {
+ "description": "Label (work, home, mobile)",
+ "type": "string"
+ },
+ "primary": {
+ "description": "Is primary phone",
+ "type": "boolean"
+ },
+ "value": {
+ "description": "Phone number",
+ "type": "string"
+ }
+ },
+ "required": [
+ "value"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}