Unity · Schema

CreateFleetRequest

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
name string
buildConfiguration object
scalingSettings object
View JSON Schema on GitHub

JSON Schema

unity-createfleetrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateFleetRequest",
  "title": "CreateFleetRequest",
  "type": "object",
  "required": [
    "name",
    "buildConfiguration"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "buildConfiguration": {
      "$ref": "#/components/schemas/BuildConfiguration"
    },
    "scalingSettings": {
      "$ref": "#/components/schemas/ScalingSettings"
    }
  }
}