BlueConic · Schema

profileProperties

Customer Data PlatformCDPCustomer ProfilesSegmentsData ActivationFirst-Party DataLifecycle StagesConnectionsPrivacy

Properties

Name Type Description
itemsPerPage integer Number of results per page.
links object
profileProperties array
startIndex integer The start index.
totalPages integer The total number of pages.
totalResults integer The total number of results.
View JSON Schema on GitHub

JSON Schema

profileproperties.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/blueconic/json-schema/profileproperties.json",
  "title": "profileProperties",
  "type": "object",
  "properties": {
    "itemsPerPage": {
      "type": "integer",
      "format": "int32",
      "description": "Number of results per page.",
      "readOnly": true
    },
    "links": {
      "$ref": "#/components/schemas/links"
    },
    "profileProperties": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/profileProperty"
      }
    },
    "startIndex": {
      "type": "integer",
      "format": "int32",
      "description": "The start index.",
      "readOnly": true
    },
    "totalPages": {
      "type": "integer",
      "format": "int32",
      "description": "The total number of pages.",
      "readOnly": true
    },
    "totalResults": {
      "type": "integer",
      "format": "int32",
      "description": "The total number of results.",
      "readOnly": true
    }
  }
}