Things
Processes (APQC)
Business processes from APQC Process Classification Framework
Processes (APQC)
Business process definitions from the APQC Process Classification Framework (PCF), parsed with GraphDL semantic identifiers.
3,739 processes across 5 hierarchy levels.
Statistics
- Source: APQC PCF v7.4
- Total Processes: 3,739
- Levels: 5 (Category → Process Group → Process → Activity → Task)
- Categories: Operating Processes, Management & Support Processes
- Semantic IDs: GraphDL
verb.Objectpattern
Process Hierarchy
| Level | Name | Count |
|---|---|---|
| 1 | Category | 1 |
| 2 | Process Group | 2 |
| 3 | Process | 82 |
| 4 | Activity | 504 |
| 5 | Task | 93 |
Level 1: Categories
- 10.0 Acquire, Construct, and Manage Assets - Management and Support Processes
Sample Processes
- 2.4.7 Adjust tariffs, rates and service charges
- 7.5.4 Administer payroll
- 2.6.5 After Start Of Production (SOP) follow process
- 3.1.4 Aggregate and manage customer marketing
- 4.9.6 Allocate bonus and make-good units for underdel...
- 11.3.7 Amend or create policy
- 3.2.4 Analyze and manage channel performance
- 3.3.6 Analyze and respond to customer insight
- 10.1.6 Analyze assets and predict facility maintenance...
- 2.2.4 Analyze Computer Aided Engineering (CAE) and se...
- 13.9.3 Analyze data
- 6.10.2 Analyze early warning data
- 3.7.6 Analyze sales results
- 7.1.7 Analyze service performance
- 13.5.2 Assess KM capabilities
- 4.8.1 Assess Master Production Schedule (MPS) and Man...
- 1.1.1 Assess the external environment
- 1.1.3 Assess the internal environment
- 6.8.2 Assess the likelihood and consequences of occur...
- 12.6.2 Benchmark performance
Semantic ID Pattern
Processes use GraphDL semantic parsing:
Example: "Develop Vision and Strategy"
Parsed to: develop.Vision, develop.Strategy
Components:
- Verb:
develop(camelCase) - Object:
Vision,Strategy(PascalCase nouns)
Processes with "and"/"or" expand to multiple semantic IDs.
Usage
import {
develop_Vision,
develop_Strategy,
AllProcesses,
ProcessesByCode
} from 'process.org.ai'
// Access by export name
const vision = develop_Vision
console.log(vision.name) // "Develop Vision"
console.log(vision.code) // "1.1"
console.log(vision.level) // 2
// Access all processes
console.log(AllProcesses.length) // 3739
// Lookup by APQC code
const process = ProcessesByCode['1.1']Filtering Examples
import { AllProcesses } from 'process.org.ai'
// Get all Level 1 categories
const categories = AllProcesses.filter(p => p.level === 1)
// Get Operating Processes
const operating = AllProcesses.filter(p =>
p.category === 'Operating Processes'
)
// Get processes by verb
const developProcesses = AllProcesses.filter(p =>
p.name.toLowerCase().startsWith('develop')
)Data Source
- APQC PCF v7.4: https://www.apqc.org/process-frameworks
- License: CC-BY-4.0 (with attribution)
- Note: Data files are in repository (licensed content, not downloadable)
See process.org.ai package for full documentation.