{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountFamilyRequest", "title": "AccountFamilyRequest", "type": "object", "properties": { "family": { "type": "object", "properties": { "name": { "type": "string", "description": "The name of the account family." }, "description": { "type": "string", "description": "A description of the account family." }, "accountIds": { "type": "array", "items": { "type": "string" }, "description": "List of account IDs to include in the family." } }, "example": "example_value" } } }