GetUserDetailsResponse

GetUserDetailsResponse schema from Amazon CodeCatalyst

AmazonDeveloper ToolsCI/CDCollaborationDevOpsSource Control

Properties

Name Type Description
userId object
userName object
displayName object
primaryEmail object
version object
View JSON Schema on GitHub

JSON Schema

amazon-codecatalyst-get-user-details-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codecatalyst/refs/heads/main/json-schema/amazon-codecatalyst-get-user-details-response-schema.json",
  "title": "GetUserDetailsResponse",
  "description": "GetUserDetailsResponse schema from Amazon CodeCatalyst",
  "type": "object",
  "properties": {
    "userId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The system-generated unique ID of the user."
        }
      ]
    },
    "userName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the user as displayed in Amazon CodeCatalyst."
        }
      ]
    },
    "displayName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The friendly name displayed for the user in Amazon CodeCatalyst."
        }
      ]
    },
    "primaryEmail": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EmailAddress"
        },
        {
          "description": "The email address provided by the user when they signed up."
        }
      ]
    },
    "version": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "<p/>"
        }
      ]
    }
  }
}