Demandbase · Schema

ExportableEntity

Account-Based MarketingAdvertisingAI AgentsB2B MarketingData EnrichmentIntent DataPersonalizationSales Intelligence

Properties

Name Type Description
name string Entity type name
description string Entity description
fields array Available fields for export
View JSON Schema on GitHub

JSON Schema

demandbase-exportableentity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExportableEntity",
  "title": "ExportableEntity",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Entity type name"
    },
    "description": {
      "type": "string",
      "description": "Entity description"
    },
    "fields": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Field name"
          },
          "type": {
            "type": "string",
            "description": "Field data type"
          },
          "description": {
            "type": "string",
            "description": "Field description"
          }
        }
      },
      "description": "Available fields for export"
    }
  }
}