Unity · Schema

DataObject

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
value string
visibility string
index string
View JSON Schema on GitHub

JSON Schema

unity-dataobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataObject",
  "title": "DataObject",
  "type": "object",
  "properties": {
    "value": {
      "type": "string"
    },
    "visibility": {
      "type": "string",
      "enum": [
        "Public",
        "Member",
        "Private"
      ]
    },
    "index": {
      "type": "string"
    }
  }
}