Split · Schema

EvaluationAttributes

Attributes passed in the request body for use in targeting rule evaluation. Attributes can be strings, numbers, booleans, or sets.

ExperimentationFeature FlagsFeature ManagementRolloutsSDKs

Properties

Name Type Description
attributes object Key-value pairs of attribute names and their values
impressionsDisabled boolean When set to true, disables impression logging for the evaluation
View JSON Schema on GitHub

JSON Schema

split-evaluationattributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EvaluationAttributes",
  "title": "EvaluationAttributes",
  "type": "object",
  "description": "Attributes passed in the request body for use in targeting rule evaluation. Attributes can be strings, numbers, booleans, or sets.",
  "properties": {
    "attributes": {
      "type": "object",
      "description": "Key-value pairs of attribute names and their values",
      "additionalProperties": true
    },
    "impressionsDisabled": {
      "type": "boolean",
      "description": "When set to true, disables impression logging for the evaluation"
    }
  }
}