{
  "template": {
    "ir": "0.1.0",
    "meta": {
      "name": "salary-certificate",
      "version": "1.0.0"
    },
    "page": {
      "size": "A4",
      "margins": "22mm",
      "direction": "rtl"
    },
    "styles": {
      "body": {
        "font": "Noto Naskh Arabic",
        "size": "12pt",
        "lineHeight": 2,
        "align": "justify"
      },
      "co": {
        "font": "Cairo",
        "weight": 700,
        "size": "15pt",
        "color": "#1A3C6E"
      },
      "title": {
        "font": "Cairo",
        "weight": 700,
        "size": "14pt",
        "align": "center"
      },
      "b": {
        "font": "Noto Naskh Arabic",
        "weight": 700,
        "size": "12pt"
      },
      "th": {
        "font": "Cairo",
        "weight": 700,
        "size": "10pt",
        "align": "center",
        "background": "#EEF2F7"
      },
      "td": {
        "font": "Cairo",
        "size": "10pt",
        "align": "center"
      }
    },
    "body": [
      {
        "type": "row",
        "align": "space-between",
        "children": [
          {
            "type": "text",
            "bind": "$.company.name",
            "style": "co"
          },
          {
            "type": "text",
            "bind": "$.date",
            "format": {
              "dateStyle": "long"
            }
          }
        ]
      },
      {
        "type": "divider"
      },
      {
        "type": "spacer",
        "height": "6mm"
      },
      {
        "type": "heading",
        "text": "شهادة تعريف بالراتب",
        "level": 1,
        "style": "title"
      },
      {
        "type": "spacer",
        "height": "6mm"
      },
      {
        "type": "text",
        "runs": [
          {
            "text": "تشهد "
          },
          {
            "bind": "$.company.name",
            "style": "b"
          },
          {
            "text": " بأن الموظف/ "
          },
          {
            "bind": "$.employee.name",
            "style": "b"
          },
          {
            "text": "، الجنسية: "
          },
          {
            "bind": "$.employee.nationality"
          },
          {
            "text": "، رقم الهوية/الإقامة: "
          },
          {
            "bind": "$.employee.id"
          },
          {
            "text": "، يعمل لدينا على وظيفة "
          },
          {
            "bind": "$.employee.title",
            "style": "b"
          },
          {
            "text": " منذ تاريخ "
          },
          {
            "bind": "$.employee.since",
            "format": {
              "dateStyle": "long"
            }
          },
          {
            "text": "، وما زال على رأس العمل حتى تاريخه."
          }
        ]
      },
      {
        "type": "spacer",
        "height": "4mm"
      },
      {
        "type": "table",
        "bind": "$.salary.rows",
        "headerStyle": "th",
        "cellStyle": "td",
        "columns": [
          {
            "header": "البند",
            "cell": {
              "bind": "item.k"
            }
          },
          {
            "header": "المبلغ الشهري",
            "cell": {
              "bind": "item.v",
              "format": {
                "currency": "SAR",
                "kind": "currency"
              }
            }
          }
        ]
      },
      {
        "type": "spacer",
        "height": "4mm"
      },
      {
        "type": "text",
        "text": "وقد أُعطيت هذه الشهادة بناءً على طلب الموظف دون أدنى مسؤولية على الشركة تجاه أي طرف آخر."
      },
      {
        "type": "spacer",
        "height": "12mm"
      },
      {
        "type": "row",
        "align": "space-between",
        "children": [
          {
            "type": "signature",
            "field": "hr",
            "label": "الموارد البشرية",
            "bind": "$.company.hr"
          },
          {
            "type": "seal",
            "reason": "خطاب صادر إلكترونياً"
          }
        ]
      }
    ]
  },
  "data": {
    "company": {
      "name": "شركة الرؤية التقنية",
      "hr": "أ. نورة الشهري"
    },
    "employee": {
      "name": "محمد أحمد الغامدي",
      "nationality": "سعودي",
      "id": "1088888888",
      "title": "مهندس برمجيات أول",
      "since": "2022-03-01"
    },
    "salary": {
      "rows": [
        {
          "k": "الراتب الأساسي",
          "v": 18000
        },
        {
          "k": "بدل سكن",
          "v": 4500
        },
        {
          "k": "بدل نقل",
          "v": 1500
        },
        {
          "k": "الإجمالي",
          "v": 24000
        }
      ]
    },
    "date": "2026-08-14"
  }
}