Skip to content
Novus Examples
json1 KB

Tern Client Services — Hubspot profile schema

Hubspot profile schema for Tern Client Services. 8 unique records follow the documented Hubspot field subset. Strict local specification checks pass; account import and stored results are not verified.

Preview, first 44 linesjson
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Hubspot CSV row profile v1",
  "profileVersion": "2026-09-08.1",
  "lastReviewed": "2026-09-08",
  "sourceUrl": "https://knowledge.hubspot.com/import-and-export/set-up-your-import-file",
  "compatibility": "specification-validated",
  "csv": {
    "encoding": "UTF-8",
    "delimiter": ",",
    "header": [
      "Email",
      "First name",
      "Last name"
    ],
    "uniqueKey": "Email"
  },
  "rowSchema": {
    "type": "object",
    "additionalProperties": false,
    "required": [
      "Email",
      "First name",
      "Last name"
    ],
    "properties": {
      "Email": {
        "type": "string",
        "minLength": 1
      },
      "First name": {
        "type": "string",
        "minLength": 1
      },
      "Last name": {
        "type": "string",
        "minLength": 1
      }
    }
  },
  "expectedRowCount": 8,
  "evidence": "Official documentation review and strict local CSV schema assertions. No account import or stored-result verification."
}

Specifications

Kit
crm-services
Industry
professional-services
Schema Version
1
Synthetic
true
As Of
2026-09-08
Profile Version
2026-09-08.1
Rows
8

Testing contract

Reference control
Scenario
Use hubspot profile schema in the Tern Client Services contacts, sales-pipeline, activities, leads, quotes, projects, timesheets, invoicing workflow.
Expected result
8 unique records follow the documented Hubspot field subset. Strict local specification checks pass; account import and stored results are not verified.

What is a .json file?

JSON (JavaScript Object Notation) is a lightweight, text-based data-interchange format representing objects, arrays, strings, numbers, booleans, and null. It is language-independent, human-readable, and the dominant format for web APIs and configuration. It requires a single well-formed root value.

How to use this file

Use an example JSON file to test parsers and serializers, schema validation, Unicode and number-precision handling, and API request or response processing.

How to use this file for testing

“Tern Client Services — Hubspot profile schema” is a deterministic Novus Examples fixture for Data import. Realistic faker-generated datasets with documented schemas for testing import and ETL flows.

Documented properties for this file: 8 rows. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such, expect parsers to fail loudly rather than silently accept them.

Data fixtures document their exact quirks (delimiters, encodings, null handling, schema, and row counts) in the spec table. Point your parser or importer at the file and assert it handles the documented edge cases; clean and deliberately-messy siblings make before/after diffs straightforward.

Code examples

import json

with open("hubspot-schema.json") as f:
    data = json.load(f)
print(type(data), len(data))

Generated by generation/business_fixtures.py. Free for any use, no attribution required, license.