Unity · Schema

DataItem

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
key string Data key (up to 255 characters)
value object Data value (any JSON-serializable value)
writeLock string Optimistic concurrency lock token
created string
modified string
View JSON Schema on GitHub

JSON Schema

unity-dataitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataItem",
  "title": "DataItem",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "Data key (up to 255 characters)"
    },
    "value": {
      "description": "Data value (any JSON-serializable value)"
    },
    "writeLock": {
      "type": "string",
      "description": "Optimistic concurrency lock token"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "modified": {
      "type": "string",
      "format": "date-time"
    }
  }
}