{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountInput", "title": "AccountInput", "type": "object", "required": [ "id", "name" ], "properties": { "id": { "type": "string", "description": "Unique account identifier" }, "name": { "type": "string", "description": "Account name" }, "trackedSubscriptionId": { "type": "string", "description": "Tracked subscription ID" }, "sfdcId": { "type": "string", "description": "Salesforce account ID" }, "plan": { "type": "string", "description": "Account plan or tier" }, "customAttributes": { "type": "object", "description": "Custom account attributes" } } }