Spot · Schema

CreateUserRequest

AutoscalingCloud InfrastructureContainersCost OptimizationFinOpsKubernetesSpot Instances

Properties

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

JSON Schema

spot-createuserrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateUserRequest",
  "title": "CreateUserRequest",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "example": "example_value"
    },
    "lastName": {
      "type": "string",
      "example": "example_value"
    },
    "email": {
      "type": "string",
      "format": "email",
      "example": "[email protected]"
    },
    "role": {
      "type": "string",
      "enum": [
        "admin",
        "viewer",
        "editor"
      ],
      "example": "admin"
    }
  }
}