Operation Details
Description: Retrieves a list of CitizenshipSnapshot details for the specified citizenshipID.
Sterotype: nsmulti
SQL
SELECT
  citizenshipSnapshotID,
  creationDateTime,
  countryCode,
  fromDate,
  toDate,
  statusCode
INTO
  :citizenshipSnapshotID,
  :creationDateTime,
  :countryCode,
  :fromDate,
  :toDate,
  :statusCode 
FROM
  CitizenshipSnapshot 
WHERE citizenshipID = :citizenshipID 
ORDER BY creationDateTime DESC