addedOutput schema / properties / account / properties
Added value: +{
+ "account_kind": {
+ "enum": [
+ "standard",
+ "agency",
+ "client"
+ ],
+ "type": "string"
+ },
+ "agency_account": {
+ "description": "Parent agency only when this credential can access it. Null does not make a client independent.",
+ "properties": {
+ "id": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "client_name": {
+ "description": "Client person or business; null when not set. Never infer it from the account name or owner.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "type": "string"
+ },
+ "kind": {
+ "description": "Compatibility alias for account_kind.",
+ "enum": [
+ "standard",
+ "agency",
+ "client"
+ ],
+ "type": "string"
+ },
+ "name": {
+ "description": "Account name, separate from the client person or business.",
+ "type": "string"
+ }
+}