Oracle GoldenGate · Schema

ReplaceUserRequest

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
firstName string
lastName string
email string
role string
userGroupId integer
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-replaceuserrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReplaceUserRequest",
  "title": "ReplaceUserRequest",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "example": "example_value"
    },
    "lastName": {
      "type": "string",
      "example": "example_value"
    },
    "email": {
      "type": "string",
      "example": "[email protected]"
    },
    "role": {
      "type": "string",
      "example": "example_value"
    },
    "userGroupId": {
      "type": "integer",
      "format": "int64",
      "example": "500123"
    }
  }
}