openownership / lib-cove-bods

Check that your data complies with the Beneficial Ownership Data Standard (BODS) using our install our data review library to analyse files via your command line interface
https://datareview.openownership.org/
Other
1 stars 0 forks source link

Additional check: foundation and dissolution dates for entities #109

Closed kd-ods closed 1 month ago

kd-ods commented 3 months ago

Specification for Check(s):

Check: That in entity record details, where they exist, foundingDate <= dissolutionDate.

On fail:

kathryn-ods commented 3 months ago

Valid data one

[
  {
    "statementId": "1dc0e987-5c57-4a1c-b3ad-61353b66a9b7",
    "declarationSubject": "c359f58d2977",
    "statementDate": "2020-03-04",
    "recordId": "c359f58d2977",
    "recordType": "entity",
    "recordDetails": {
      "isComponent": false,
      "entityType": {
        "type": "registeredEntity"
      },
      "foundingDate": "1990-08-21",
      "dissolutionDate": "2010-07-01"
    }
  }
]

Valid data 2

[
  {
    "statementId": "1dc0e987-5c57-4a1c-b3ad-61353b66a9b7",
    "declarationSubject": "c359f58d2977",
    "statementDate": "2020-03-04",
    "recordId": "c359f58d2977",
    "recordType": "entity",
    "recordDetails": {
      "isComponent": false,
      "entityType": {
        "type": "registeredEntity"
      },
      "foundingDate": "1990-08-21",
      "dissolutionDate": "1990-08-21"
    }
  }
]

Invalid data

[
  {
    "statementId": "1dc0e987-5c57-4a1c-b3ad-61353b66a9b7",
    "declarationSubject": "c359f58d2977",
    "statementDate": "2020-03-04",
    "recordId": "c359f58d2977",
    "recordType": "entity",
    "recordDetails": {
      "isComponent": false,
      "entityType": {
        "type": "registeredEntity"
      },
      "foundingDate": "1990-08-21",
      "dissolutionDate": "1990-08-01"
    }
  }
]