{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ClientDefaultOrganization", "title": "ClientDefaultOrganization", "type": [ "object", "null" ], "description": "Defines the default Organization ID and flows", "additionalProperties": false, "required": [ "organization_id", "flows" ], "properties": { "organization_id": { "type": "string", "description": "The default Organization ID to be used", "format": "organization-id" }, "flows": { "type": "array", "description": "The default Organization usage", "items": { "$ref": "#/components/schemas/ClientDefaultOrganizationFlowsEnum" } } } }