# Agency

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    Agency:
      type: object
      properties:
        id:
          type: integer
          examples:
            - 100
        name:
          type: string
          description: Agency name in Arabic
          examples:
            - وزارة البنية التحتية
        name_en:
          type: string
          description: Agency name in English
          examples:
            - Ministry of Infrastructure
      x-apidog-orders:
        - id
        - name
        - name_en
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.tendersalerts.com/api/integration
    description: Prod Env
security: []

```
