SS Contributions examples

The examples on this page show how the JSON message schema can be used to submit data to the States of Guernsey in order to comply with reporting requirements for Social Security Contributions.

SS Contributions return

The Contributions format is based on the same schema as Secondary Pensions returns. Please refer to the main SPCM API documentation for aspects of the API and schema which are common to all SPCM returns.

The following example return contains the 2023 Q3 monthly contributions data for an employer with a single employee.

{
  "$schema": "https://spcm.gov.gg/schemas/0.3/message.schema.json",
  "spcmMessageVersion": "0.3",
  "effective": "2023-10-05T16:33:05Z",
  "senderEmail": "joseph@acme.gg",
  "senderName": "Joseph Administrator",
  "softwareAgent": "SPCMTasks",
  "type": "Revenue_EmployerReturn",
  "purposes": [
    "SSContributions"
  ],
  "test": false,
  "coverage": [
    {
      "frequency": "Monthly",
      "year": 2023,
      "period": 7
    },
    {
      "frequency": "Monthly",
      "year": 2023,
      "period": 8
    },
    {
      "frequency": "Monthly",
      "year": 2023,
      "period": 9
    }
  ],
  "employers": [
    {
      "id": "SPCM-12345-SocialSecurity",
      "name": "Acme Widgets",
      "socialSecurityNo": "123456",
      "employees": [
        {
          "id": "1",
          "socialSecurityNo": "GY233445",
          "firstName": "Joan",
          "lastName": "Bloggs",
          "dateOfBirth": "1980-01-01",
          "ssCard": "Blue",
          "employmentStartDate": null,
          "employmentEndDate": "2023-08-31",
          "leftIsland": false,
          "purposes": [
            "SSContributions"
          ],
          "pay": [
            {
              "frequency": "Monthly",
              "year": 2023,
              "period": 7,
              "earnings": 4444.44,
              "employeeSSContributions": 444.44,
              "employerSSContributions": 333.33
            },
            {
              "frequency": "Monthly",
              "year": 2023,
              "period": 8,
              "earnings": 4444.44,
              "employeeSSContributions": 444.44,
              "employerSSContributions": 333.33
            }
          ]
        }
      ]
    }
  ]
}