Semantius Logo
ATS May 27, 2026

ATS-INTERVIEWS

Interview scheduling, panel coordination, scorecards, and structured assessments. Realizes INTERVIEW-MGMT. Realizes the `interviewing` lifecycle state on `job_applications` (state pruned when this module is not installed).

Use the ATS-INTERVIEWS semantic blueprint

/semantic-model-deployer deploy https://www.semantius.com/blueprints/ats-interviews-semantic-blueprint.md

Customize this ATS-INTERVIEWS blueprint

/semantic-model-analyst customize https://www.semantius.com/blueprints/ats-interviews-semantic-blueprint.md

Entity summary

Name Description
Assessments Skills, cognitive, technical, or personality test result attached to an application. Often sourced from an external assessment provider and referenced here.
Interview Scorecards Structured interviewer feedback against a defined rubric: per-competency ratings, written notes, and a hire/no-hire recommendation.
Interviews Scheduled assessment event between a candidate and one or more interviewers. Carries time, location/medium, panel, interview kit, and outcome.
Applications A candidate's submission against a specific requisition. Carries pipeline stage, status (active / rejected / withdrawn / hired), source, and the full evaluation history.
Candidates Person known to the recruiting org, with or without an active application. Carries contact details, resume, tags, GDPR consent, and source. Distinct from Employee until hired.
flowchart TD
  classDef master fill:#d4f4dd,stroke:#27ae60,color:#0b3d20;
  classDef embedded_master fill:#fff4cc,stroke:#c79100,color:#5b4500;
  classDef platform_builtin fill:#e0e0e0,stroke:#424242,color:#1a1a1a;
  interviews["Interviews"]
  interview_scorecards["Interview Scorecards"]
  candidates["Candidates"]
  job_applications["Applications"]
  candidate_assessments["Assessments"]
  users["Users"]
  candidates -->|"submits"| job_applications
  job_applications -->|"schedules"| interviews
  interviews -->|"is scored via"| interview_scorecards
  job_applications -->|"requires"| candidate_assessments
  job_applications -->|"has owning recruiter"| users
  interviews -->|"has coordinator and panelists"| users
  interview_scorecards -->|"has interviewer as author"| users
  class interviews master;
  class interview_scorecards master;
  class candidates embedded_master;
  class job_applications embedded_master;
  class candidate_assessments master;
  class users platform_builtin;