CreateUserDetails

Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service

Properties

Name Type Description
compartmentId string
name string
description string
email string
View JSON Schema on GitHub

JSON Schema

oracle-cloud-createuserdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateUserDetails",
  "title": "CreateUserDetails",
  "type": "object",
  "required": [
    "compartmentId",
    "name",
    "description"
  ],
  "properties": {
    "compartmentId": {
      "type": "string",
      "example": "ocid1.resource.oc1.iad.abcdefg123456"
    },
    "name": {
      "type": "string",
      "example": "[email protected]"
    },
    "description": {
      "type": "string",
      "example": "John Smith"
    },
    "email": {
      "type": "string",
      "format": "email",
      "example": "[email protected]"
    }
  }
}