An sObject record with attributes and field values
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SObjectRecord", "title": "SObjectRecord", "type": "object", "description": "An sObject record with attributes and field values", "properties": { "attributes": { "type": "object", "properties": { "type": { "type": "string", "description": "The sObject type" }, "url": { "type": "string", "description": "The relative URL for the record" } } }, "Id": { "type": "string", "description": "The 18-character Salesforce record ID" } }, "additionalProperties": true }