Spot · Schema

CreateProgrammaticUserRequest

AutoscalingCloud InfrastructureContainersCost OptimizationFinOpsKubernetesSpot Instances

Properties

Name Type Description
name string Name of the programmatic user.
description string
accounts array
View JSON Schema on GitHub

JSON Schema

spot-createprogrammaticuserrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateProgrammaticUserRequest",
  "title": "CreateProgrammaticUserRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the programmatic user.",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "accounts": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "role": {
            "type": "string"
          }
        }
      },
      "example": []
    }
  }
}