Informatica · Schema

LoginRequest

Request body for the login endpoint.

Address VerificationB2B GatewayCloud ServicesData GovernanceData IntegrationData ProfilingData QualityEnterprise SoftwareETLIDMCIICSMaster Data ManagementReference Data Management

Properties

Name Type Description
@type string The resource type identifier. Must be set to "login".
username string The Informatica Intelligent Cloud Services username.
password string The account password.
View JSON Schema on GitHub

JSON Schema

informatica-loginrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LoginRequest",
  "title": "LoginRequest",
  "type": "object",
  "description": "Request body for the login endpoint.",
  "required": [
    "@type",
    "username",
    "password"
  ],
  "properties": {
    "@type": {
      "type": "string",
      "description": "The resource type identifier. Must be set to \"login\".",
      "enum": [
        "login"
      ],
      "example": "login"
    },
    "username": {
      "type": "string",
      "description": "The Informatica Intelligent Cloud Services username.",
      "example": "example_value"
    },
    "password": {
      "type": "string",
      "format": "password",
      "description": "The account password.",
      "example": "example_value"
    }
  }
}