Oracle GoldenGate · Schema

CreateUserGroupRequest

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
name string
description string
permissions array
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-createusergrouprequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateUserGroupRequest",
  "title": "CreateUserGroupRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "permissions": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    }
  }
}