{
  "$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."
}
