Demandbase · Schema

AccountList

Account-Based MarketingAdvertisingAI AgentsB2B MarketingData EnrichmentIntent DataPersonalizationSales Intelligence

Properties

Name Type Description
id string List unique identifier
name string List name
description string List description
type string List type
account_count integer Number of accounts in the list
created_at string Creation timestamp
updated_at string Last update timestamp
created_by string User who created the list
View JSON Schema on GitHub

JSON Schema

demandbase-accountlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountList",
  "title": "AccountList",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "List unique identifier"
    },
    "name": {
      "type": "string",
      "description": "List name"
    },
    "description": {
      "type": "string",
      "description": "List description"
    },
    "type": {
      "type": "string",
      "enum": [
        "static",
        "dynamic"
      ],
      "description": "List type"
    },
    "account_count": {
      "type": "integer",
      "description": "Number of accounts in the list"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Creation timestamp"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Last update timestamp"
    },
    "created_by": {
      "type": "string",
      "description": "User who created the list"
    }
  }
}