{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SObjectTreeRequest", "title": "SObjectTreeRequest", "type": "object", "required": [ "records" ], "properties": { "records": { "type": "array", "items": { "type": "object", "required": [ "attributes" ], "properties": { "attributes": { "type": "object", "required": [ "type", "referenceId" ], "properties": { "type": { "type": "string" }, "referenceId": { "type": "string" } } } }, "additionalProperties": true } } } }