# TenderChange

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    TenderChange:
      type: object
      required:
        - field_name
        - change_type
        - changed_at
      properties:
        field_name:
          type: string
          description: Name of the field that changed
          examples:
            - closing_date
        old_value:
          type: string
          description: Previous value (null for new fields)
          examples:
            - '2026-05-10T14:00:00Z'
          nullable: true
        new_value:
          type: string
          description: New value (null for deleted fields)
          examples:
            - '2026-05-15T14:00:00Z'
          nullable: true
        change_summary_ar:
          type: string
          description: Human-readable change summary in Arabic
          examples:
            - تم تمديد تاريخ الإغلاق من 2026-05-10 إلى 2026-05-15
        change_summary_en:
          type: string
          description: Human-readable change summary in English
          examples:
            - Closing date extended from 2026-05-10 to 2026-05-15
        change_type:
          type: string
          enum:
            - field_updated
            - field_added
            - field_removed
            - relation_added
            - relation_removed
          description: Type of change
          examples:
            - field_updated
        changed_at:
          type: string
          format: date-time
          description: ISO 8601 timestamp when this change occurred
          examples:
            - '2026-04-22T20:45:00Z'
        metadata:
          type: object
          description: Additional metadata about the change
          properties:
            field_label_ar:
              type: string
              examples:
                - تاريخ الإغلاق
            field_label_en:
              type: string
              examples:
                - Closing Date
          additionalProperties: true
          x-apidog-orders:
            - field_label_ar
            - field_label_en
          nullable: true
      x-apidog-orders:
        - field_name
        - old_value
        - new_value
        - change_summary_ar
        - change_summary_en
        - change_type
        - changed_at
        - metadata
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.tendersalerts.com/api/integration
    description: Prod Env
security: []

```
