microservices/learning_record_service/src/schemas/schema_examples.py [238:286]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
}

BASIC_LEARNER_EXAMPLE = {
    "first_name": "Jon",
    "middle_name": "Jon",
    "last_name": "Doe",
    "suffix": "",
    "prefix": "",
    "preferred_name": "",
    "preferred_first_name": "",
    "preferred_middle_name": "",
    "preferred_last_name": "",
    "preferred_name_type": "PreferredName",
    "preferred_pronoun": "",
    "student_identifier": "",
    "student_identification_system": "",
    "personal_information_verification": "",
    "personal_information_type": "",
    "address_type": "",
    "street_number_and_name": "",
    "apartment_room_or_suite_number": "",
    "city": "",
    "state_abbreviation": "",
    "postal_code": "",
    "country_name": "",
    "country_code": "",
    "latitude": "",
    "longitude": "",
    "country_ansi_code": 10000,
    "address_do_not_publish_indicator": "Yes",
    "phone_number": {
    "mobile": {
      "phone_number_type": "Work",
      "primary_phone_number_indicator": "Yes",
      "phone_number": "",
      "phone_do_not_publish_indicator": "Yes",
      "phone_number_listed_status": "Listed"
        },
    "telephone": {
      "phone_number_type": "Home",
      "primary_phone_number_indicator": "No",
      "phone_number": "",
      "phone_do_not_publish_indicator": "Yes",
      "phone_number_listed_status": "Listed"
        }
    },
    "email_address_type": "Work",
    "email_address": "jon.doe@gmail.com",
    "email_do_not_publish_indicator": "Yes",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



microservices/student_learner_profile/src/schemas/schema_examples.py [156:205]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
}

### LEARNER EXAMPLES ###
BASIC_LEARNER_EXAMPLE = {
  "first_name": "Jon",
  "middle_name": "Jon",
  "last_name": "Doe",
  "suffix": "",
  "prefix": "",
  "preferred_name": "",
  "preferred_first_name": "",
  "preferred_middle_name": "",
  "preferred_last_name": "",
  "preferred_name_type": "PreferredName",
  "preferred_pronoun": "",
  "student_identifier": "",
  "student_identification_system": "",
  "personal_information_verification": "",
  "personal_information_type": "",
  "address_type": "",
  "street_number_and_name": "",
  "apartment_room_or_suite_number": "",
  "city": "",
  "state_abbreviation": "",
  "postal_code": "",
  "country_name": "",
  "country_code": "",
  "latitude": "",
  "longitude": "",
  "country_ansi_code": 10000,
  "address_do_not_publish_indicator": "Yes",
  "phone_number": {
    "mobile": {
      "phone_number_type": "Work",
      "primary_phone_number_indicator": "Yes",
      "phone_number": "",
      "phone_do_not_publish_indicator": "Yes",
      "phone_number_listed_status": "Listed"
    },
    "telephone": {
      "phone_number_type": "Home",
      "primary_phone_number_indicator": "No",
      "phone_number": "",
      "phone_do_not_publish_indicator": "Yes",
      "phone_number_listed_status": "Listed"
    }
  },
  "email_address_type": "Work",
  "email_address": "jon.doe@gmail.com",
  "email_do_not_publish_indicator": "Yes",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



