Neon · Schema

RoleCreateRequest

Request body for creating a new role

DatabasesServerlessPostgresInfrastructureAuthenticationEdge

Properties

Name Type Description
role object
View JSON Schema on GitHub

JSON Schema

neon-rolecreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RoleCreateRequest",
  "title": "RoleCreateRequest",
  "type": "object",
  "description": "Request body for creating a new role",
  "required": [
    "role"
  ],
  "properties": {
    "role": {
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "The role name"
        }
      }
    }
  }
}