contentstack · Schema

OrganizationList

A list of organizations.

Properties

Name Type Description
organizations array Array of organization objects.
View JSON Schema on GitHub

JSON Schema

contentstack-organizationlist-schema.json Raw ↑
{
  "$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"
      }
    }
  }
}