AB Tasty · JSON Structure

Decision Api Batch Activation Request Structure

BatchActivationRequest schema from AB Tasty Decision API

Type: object Properties: 2 Required: 2
AggregationExperimentationFeature FlagsPersonalizationA/B Testing

BatchActivationRequest is a JSON Structure definition published by AB Tasty, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

cid batch

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ab-tasty/refs/heads/main/json-structure/decision-api-batch-activation-request-structure.json",
  "name": "BatchActivationRequest",
  "description": "BatchActivationRequest schema from AB Tasty Decision API",
  "type": "object",
  "properties": {
    "cid": {
      "type": "string",
      "description": "Environment ID",
      "example": "env_abc"
    },
    "batch": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BatchActivationItem"
      },
      "minItems": 1
    }
  },
  "required": [
    "cid",
    "batch"
  ]
}