---
title: "Article"
url: "https://developer.argaam.com/apis/search-discovery-layer-api-sandbox-v1/versions/7b9c43fb-96d0-4164-9da6-4249bbd8ed0b/schemas/Article"
---

> Full API specification: https://developer.argaam.com/apis/search-discovery-layer-api-sandbox-v1/versions/7b9c43fb-96d0-4164-9da6-4249bbd8ed0b.md

# Article

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Search & Discovery Layer API
  version: v1.1
servers:
  - url: https://api-sandbox.argaam.com
    description: Argaam API Gateway (Sandbox)
components:
  schemas:
    Article:
      type: object
      properties:
        articleID:
          type: integer
          format: int32
        languageID:
          type: integer
          format: int32
        language:
          type: string
          nullable: true
          readOnly: true
        title:
          type: string
          nullable: true
        publishedOn:
          type: string
          nullable: true
        link:
          type: string
          nullable: true
          readOnly: true
        isLinked:
          type: boolean
        linkedToURL:
          type: string
          nullable: true
        isPaid:
          type: boolean
        articleSourceName:
          type: string
          nullable: true
        source:
          type: string
          nullable: true
        articleType:
          type: string
          nullable: true
          readOnly: true
        articleTypeNameAr:
          type: string
          nullable: true
        articleTypeNameEn:
          type: string
          nullable: true
        marketTickerIDs:
          type: string
          nullable: true
        marketTickerChartIDs:
          type: array
          items:
            type: string
          nullable: true
          readOnly: true
        companyTickerIDs:
          type: string
          nullable: true
        companyTickerChartIDs:
          type: array
          items:
            type: string
          nullable: true
          readOnly: true
        body:
          type: string
          nullable: true
        showDetails:
          type: boolean
        iconURL:
          type: string
          nullable: true
      additionalProperties: false
```
