{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PostProfileMergeResponse", "title": "PostProfileMergeResponse", "type": "object", "properties": { "data": { "type": "object", "properties": { "type": { "$ref": "#/components/schemas/ProfileEnum" }, "id": { "description": "The ID of the destination profile that was merged into", "type": "string", "example": "01GDDKASAP8TKDDA2GRZDSVP4H" }, "links": { "$ref": "#/components/schemas/ObjectLinks" } }, "required": [ "type", "id", "links" ] }, "links": { "$ref": "#/components/schemas/ObjectLinks" } }, "required": [ "data" ] }