Oracle GoldenGate · Schema

UserGroup

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

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

JSON Schema

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