Unity · Schema

FieldFilter

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
key string
value object
op string
View JSON Schema on GitHub

JSON Schema

unity-fieldfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FieldFilter",
  "title": "FieldFilter",
  "type": "object",
  "required": [
    "key",
    "value",
    "op"
  ],
  "properties": {
    "key": {
      "type": "string"
    },
    "value": {},
    "op": {
      "type": "string",
      "enum": [
        "EQ",
        "NE",
        "LT",
        "LE",
        "GT",
        "GE"
      ]
    }
  }
}