Demandbase · Schema

FieldMapping

Account-Based MarketingAdvertisingAI AgentsB2B MarketingData EnrichmentIntent DataPersonalizationSales Intelligence

Properties

Name Type Description
entity_type string Entity type
field_name string Demandbase field name
field_type string Field data type
required boolean Whether the field is required for import
description string Field description
View JSON Schema on GitHub

JSON Schema

demandbase-fieldmapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FieldMapping",
  "title": "FieldMapping",
  "type": "object",
  "properties": {
    "entity_type": {
      "type": "string",
      "description": "Entity type"
    },
    "field_name": {
      "type": "string",
      "description": "Demandbase field name"
    },
    "field_type": {
      "type": "string",
      "description": "Field data type"
    },
    "required": {
      "type": "boolean",
      "description": "Whether the field is required for import"
    },
    "description": {
      "type": "string",
      "description": "Field description"
    }
  }
}