A list of organizations.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OrganizationList", "title": "OrganizationList", "type": "object", "description": "A list of organizations.", "properties": { "organizations": { "type": "array", "description": "Array of organization objects.", "items": { "$ref": "#/components/schemas/Organization" } } } }