Unity · Schema

UpdateConfigRequest

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
type string
value array
View JSON Schema on GitHub

JSON Schema

unity-updateconfigrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateConfigRequest",
  "title": "UpdateConfigRequest",
  "type": "object",
  "required": [
    "type",
    "value"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "settings"
      ]
    },
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Setting"
      }
    }
  }
}