Ninetailed · Schema

NinetailedProfile

A Ninetailed visitor profile containing identity, behavioral, session, and location data used for personalization and A/B test variant assignment.

PersonalizationExperimentationA/B TestingAudience SegmentationFeature FlagsHeadless CMSEdge ComputingContent Management

Properties

Name Type Description
id string Unique identifier for the visitor profile.
stableId string Stable cross-session identifier for the visitor, persisted via cookie.
random number Random float (0-1) used for deterministic traffic splitting in A/B tests.
audiences array List of audience IDs the visitor currently qualifies for.
traits object Merged identify traits from all identify events for this visitor.
location object
session object
jurisdiction string Regulatory jurisdiction code (e.g. GDPR, CCPA) resolved from visitor location.
stickyVariants object Map of experience ID to variant index for sticky (consistent) variant assignment.
View JSON Schema on GitHub

JSON Schema

ninetailed-profile.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ninetailed/main/json-schema/ninetailed-profile.json",
  "title": "NinetailedProfile",
  "description": "A Ninetailed visitor profile containing identity, behavioral, session, and location data used for personalization and A/B test variant assignment.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the visitor profile."
    },
    "stableId": {
      "type": "string",
      "description": "Stable cross-session identifier for the visitor, persisted via cookie."
    },
    "random": {
      "type": "number",
      "minimum": 0,
      "maximum": 1,
      "description": "Random float (0-1) used for deterministic traffic splitting in A/B tests."
    },
    "audiences": {
      "type": "array",
      "description": "List of audience IDs the visitor currently qualifies for.",
      "items": {
        "type": "string"
      }
    },
    "traits": {
      "type": "object",
      "description": "Merged identify traits from all identify events for this visitor.",
      "additionalProperties": true
    },
    "location": {
      "$ref": "#/definitions/Location"
    },
    "session": {
      "$ref": "#/definitions/Session"
    },
    "jurisdiction": {
      "type": "string",
      "description": "Regulatory jurisdiction code (e.g. GDPR, CCPA) resolved from visitor location."
    },
    "stickyVariants": {
      "type": "object",
      "description": "Map of experience ID to variant index for sticky (consistent) variant assignment.",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "definitions": {
    "Location": {
      "type": "object",
      "description": "Geographic location resolved from the visitor's IP address.",
      "properties": {
        "lat": {
          "type": "number",
          "description": "Latitude coordinate."
        },
        "lon": {
          "type": "number",
          "description": "Longitude coordinate."
        },
        "city": {
          "type": "string",
          "description": "City name."
        },
        "region": {
          "type": "string",
          "description": "Region or state code."
        },
        "country": {
          "type": "string",
          "description": "ISO 3166-1 alpha-2 country code.",
          "pattern": "^[A-Z]{2}$"
        },
        "timezone": {
          "type": "string",
          "description": "IANA timezone identifier (e.g. America/New_York)."
        }
      }
    },
    "Session": {
      "type": "object",
      "description": "Session-level metadata for the visitor.",
      "properties": {
        "id": {
          "type": "string",
          "description": "Unique session identifier."
        },
        "isReturningVisitor": {
          "type": "boolean",
          "description": "True if the visitor has been seen in a previous session."
        },
        "landingPage": {
          "type": "string",
          "format": "uri",
          "description": "URL of the first page visited in this session."
        },
        "count": {
          "type": "integer",
          "minimum": 1,
          "description": "Total number of sessions this visitor has had."
        },
        "sessionLength": {
          "type": "integer",
          "minimum": 0,
          "description": "Length of the current session in seconds."
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/ninetailed-profile"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.