Common Room · Schema

ApiNaicsCode

Community IntelligenceGo-to-MarketMember SignalsGitHubSlackDiscordLinkedInSales IntelligenceContact ManagementWebhooks

Properties

Name Type Description
id string Prefixed NAICS code ID (format `naics_`)
code integer The numeric NAICS code
name string Industry name
View JSON Schema on GitHub

JSON Schema

common-room-v2-apinaicscode-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.commonroom.io/schemas/v2/apinaicscode",
  "title": "ApiNaicsCode",
  "type": "object",
  "required": [
    "id",
    "code",
    "name"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "Prefixed NAICS code ID (format `naics_<number>`)"
    },
    "code": {
      "type": "integer",
      "description": "The numeric NAICS code"
    },
    "name": {
      "type": "string",
      "description": "Industry name"
    }
  }
}