Amazon IAM Identity Center · JSON Structure

Identitystore Name Structure

The full name of the user.

Type: object Properties: 6
Access ControlAuthenticationIdentity ManagementSingle Sign-On

Name is a JSON Structure definition published by Amazon IAM Identity Center, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Formatted FamilyName GivenName MiddleName HonorificPrefix HonorificSuffix

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam-identity-center/refs/heads/main/json-structure/identitystore-name-structure.json",
  "name": "Name",
  "description": "The full name of the user.",
  "type": "object",
  "properties": {
    "Formatted": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveStringType"
        },
        {
          "description": "A string containing a formatted version of the name for display."
        }
      ]
    },
    "FamilyName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveStringType"
        },
        {
          "description": "The family name of the user."
        }
      ]
    },
    "GivenName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveStringType"
        },
        {
          "description": "The given name of the user."
        }
      ]
    },
    "MiddleName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveStringType"
        },
        {
          "description": "The middle name of the user."
        }
      ]
    },
    "HonorificPrefix": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveStringType"
        },
        {
          "description": "The honorific prefix of the user. For example, \"Dr.\""
        }
      ]
    },
    "HonorificSuffix": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveStringType"
        },
        {
          "description": "The honorific suffix of the user. For example, \"M.D.\""
        }
      ]
    }
  }
}