---
title: "SectorDataArchive"
url: "https://developer.argaam.com/apis/market-data-layer-api-production-v1/versions/ca86b5b0-4709-486f-b41b-f80ad96b0d25/schemas/SectorDataArchive"
---

> Full API specification: https://developer.argaam.com/apis/market-data-layer-api-production-v1/versions/ca86b5b0-4709-486f-b41b-f80ad96b0d25.md

# SectorDataArchive

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Market Data Layer API
  version: v1.1
servers:
  - url: https://api.argaam.com
    description: Argaam API Gateway (Production)
components:
  schemas:
    SectorDataArchive:
      type: object
      properties:
        marketID:
          type: integer
          format: int32
        sectorID:
          type: integer
          format: int32
        bid:
          type: string
          nullable: true
        tradingDate:
          type: string
          nullable: true
        openValue:
          type: number
          format: double
          nullable: true
        closeValue:
          type: number
          format: double
          nullable: true
        high:
          type: number
          format: double
          nullable: true
        low:
          type: number
          format: double
          nullable: true
        volume:
          type: number
          format: double
          nullable: true
      additionalProperties: false
```
