{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateContactResponse", "title": "CreateContactResponse", "type": "object", "properties": { "outcome": { "type": "string", "enum": [ "Queued", "Failed" ], "description": "Outcome of the operation", "example": "Queued" }, "statusCode": { "type": "integer", "description": "0 for Queued, non-zero for Failed", "example": 0 }, "summary": { "type": "string", "description": "Summary of the operation", "example": "Queued for adding to the contact list" } }, "example": { "outcome": "Queued", "statusCode": 0, "summary": "Queued for adding to the contact list" } }