---
title: "ChartUniverseResponse"
url: "https://developer.argaam.com/apis/search-discovery-layer-api-production-v1/versions/3ee95f1c-cb8f-47a6-bf01-11e0c199d2ad/schemas/ChartUniverseResponse"
---

> Full API specification: https://developer.argaam.com/apis/search-discovery-layer-api-production-v1/versions/3ee95f1c-cb8f-47a6-bf01-11e0c199d2ad.md

# ChartUniverseResponse

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Search & Discovery Layer API
  version: v1.1
servers:
  - url: https://api.argaam.com
    description: Argaam API Gateway (Production)
components:
  schemas:
    ChartUniverseNode:
      type: object
      properties:
        id:
          type: integer
          format: int32
        nameEn:
          type: string
          nullable: true
        nameAr:
          type: string
          nullable: true
        children:
          type: array
          items:
            $ref: "#/components/schemas/ChartUniverseNode"
          nullable: true
      additionalProperties: false
    ChartUniverseResponse:
      type: object
      properties:
        countryId:
          type: integer
          format: int32
        tree:
          type: array
          items:
            $ref: "#/components/schemas/ChartUniverseNode"
          nullable: true
      additionalProperties: false
```
