BusinessActivity

A business activity, industry sector, or line of business for an organization. Represents what the organization does commercially

6 properties
Schema

Properties

PropertyTypeModeDescriptionRequired
codestring
stored

Activity classification code (NAICS, SIC, NACE, APE, etc.)

Example: "62.01Z"

Optional
systemstring
enum

Classification system used

Values: NAICS, SIC, NACE, APE, ISIC

Example: "APE"

Optional
labelstring
stored

Human-readable description of the activity

Example: "Custom software development"

Required
isPrimaryboolean
stored

Whether this is the primary/main activity

Example: true

Optional
categorystring
stored

High-level category (Technology, Healthcare, Retail, Manufacturing, etc.)

Example: "Technology"

Optional
descriptionstring
stored

Detailed description of the activity

Optional

Examples

Example 1

{
  "@type": "Activity",
  "code": "62.01Z",
  "system": "APE",
  "label": "Programmation informatique",
  "isPrimary": true,
  "category": "Technology",
  "description": "Custom software development and IT consulting"
}

Example 2

{
  "@type": "Activity",
  "code": "541511",
  "system": "NAICS",
  "label": "Custom Computer Programming Services",
  "isPrimary": true,
  "category": "Technology"
}

Example 3

{
  "@type": "Activity",
  "code": "62.02Z",
  "system": "APE",
  "label": "Conseil en systèmes et logiciels informatiques",
  "isPrimary": false,
  "category": "Technology"
}