function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Stephan H. WisselStephan H. Wissel 

Build UI to Edit a Record Challenge has different Country Code?

Trying to finish this challenge: https://trailhead.salesforce.com/trails/force_com_dev_intermediate/modules/user-interface-api/units/build-ui-to-edit-a-record

The module suggest to post:
{
  "fields" : {
    "BillingPostalCode": "97202",
      "BillingState": "OR",
      "BillingCity": "Portland",
      "BillingStreet" : "123 Main Street",
      "BillingCountry" : "USA"
  }
}

However the fields BillingState and BillingCountry error out. What worked are BillingStateCode and BillingCountryCode. - Not to hard to figure out. However the check mechanis tries to verify: BillingCountry = 'USA' which doesn't exist. It is either BillingCountryCode='US' or BillingCountry='United States'

Is  that a configuration issue in my Trailhead Playground?