public record Organization(
[property:JsonProperty("id")] int Id,
[property:JsonProperty("name")] string Name,
[property:JsonProperty("addressLineOne")] string AddressLineOne,
[property:JsonProperty("addressLineTwo")] string AddressLineTwo,
[property:JsonProperty("addressLineThree")] string AddressLineThree,
[property:JsonProperty("addressLineFour")] string AddressLineFour,
[property:JsonProperty("city")] string City,
[property:JsonProperty("state")] string State,
[property:JsonProperty("country")] string Country,
[property:JsonProperty("region")] string Region,
[property:JsonProperty("profileType")] string ProfileType
);