From abada9311a0f82b9c805906864da12f73f4a3d42 Mon Sep 17 00:00:00 2001 From: Rebecca Wheeler <rebecca.wheeler@wisc.edu> Date: Tue, 27 Feb 2024 10:40:49 -0600 Subject: [PATCH] Update process-objects.json --- .../Canvas-Tutorial/process-objects.json | 22 ++++++++++++++----- 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/EI-IICS-Team/Canvas-Tutorial/process-objects.json b/EI-IICS-Team/Canvas-Tutorial/process-objects.json index 2ce5e86..4444b5d 100644 --- a/EI-IICS-Team/Canvas-Tutorial/process-objects.json +++ b/EI-IICS-Team/Canvas-Tutorial/process-objects.json @@ -18026,14 +18026,24 @@ } }, "personId": { - "type": "string", - "description": "An ephemeral identifier used only in the Person API to adhere to the [JSON:API specification](https://jsonapi.org/format/#document-resource-object-identification). This ID may change if a person is split into two people or two people are merged into one person. This ID is used for paginating results or following other links returned in the API response. This ID should not be stored in a consuming system. Concatenating parts of the URL to form a link is discouraged. Instead, use the fully-formed links returned in an API response.", - "example": "12345" + "type": "object", + "properties": { + "personId": { + "type": "string", + "description": "An ephemeral identifier used only in the Person API to adhere to the [JSON:API specification](https://jsonapi.org/format/#document-resource-object-identification). This ID may change if a person is split into two people or two people are merged into one person. This ID is used for paginating results or following other links returned in the API response. This ID should not be stored in a consuming system. Concatenating parts of the URL to form a link is discouraged. Instead, use the fully-formed links returned in an API response.", + "example": "12345" + } + } }, "genericId": { - "type": "string", - "example": "12345", - "description": "Ephemeral ID used to adhere to the JSON:API specification. This ID should not be stored." + "type": "object", + "properties": { + "genericId": { + "type": "string", + "example": "12345", + "description": "Ephemeral ID used to adhere to the JSON:API specification. This ID should not be stored." + } + } }, "webhookAttributes": { "type": "object", -- GitLab