{
 "slug": "licence-issuance-receipt",
 "topic_id": "TOPIC-197",
 "cluster": "Government Benefits, Procurement & Public Sector Identity",
 "tier": "Tier C",
 "title": "Licensing and permit issuance: the credential a regulator cannot verify from another state",
 "summary": "Licence verification means querying each board's website. Fraudulent licences and lapsed-status misrepresentation persist because verification is optional and inconvenient.",
 "lede": "Fifty states, dozens of boards each, every one with its own lookup page and its own data model. An employer verifying a licence across state lines is performing an integration project by hand, one applicant at a time.",
 "date": "2023-10-09",
 "category": "Compliance",
 "author_id": "solene-beaumont-adjei",
 "tags": [
  "professional licensing",
  "licence verification",
  "interstate compact",
  "credential fraud",
  "regulatory boards",
  "portability"
 ],
 "image_title": "Licence Issuance Receipt",
 "schema": "Article",
 "key_takeaways": [
  "Licensing is jurisdictional and every board maintains its own registry, so verification cost scales with the number of jurisdictions rather than with the number of checks.",
  "Status is the hard part: a licence valid at hire may be suspended six months later, and nothing notifies the employer.",
  "This is graded C because verification-rate data is thin; boards can measure their own request volume cheaply."
 ],
 "body": [
  {
   "type": "h2",
   "text": "Two questions that get conflated"
  },
  {
   "type": "diagram",
   "kind": "flow",
   "alt": "Verification across jurisdictions, as it works today",
   "caption": "Every board is a separate query with a separate format and a separate availability.",
   "nodes": [
    {
     "label": "Licence presented",
     "note": "a document or a number"
    },
    {
     "label": "Find the right board",
     "note": "50+ jurisdictions",
     "bad": true
    },
    {
     "label": "Query its site",
     "note": "each different",
     "bad": true
    },
    {
     "label": "Decide on what is returned",
     "note": "or skip the check",
     "bad": true
    }
   ]
  },
  {
   "type": "p",
   "html": "Licence verification is usually described as one task. It is two, with different properties."
  },
  {
   "type": "ol",
   "items": [
    "<strong style=\"font-weight:600\">Authenticity:</strong> was this licence issued by this board to this person? A historical fact that never changes.",
    "<strong style=\"font-weight:600\">Status:</strong> is it currently valid, unrestricted and in good standing? A fact that changes without warning."
   ]
  },
  {
   "type": "p",
   "html": "A verifiable issuance artefact answers the first cleanly and permanently. It does not answer the second, and any design that pretends otherwise creates a worse problem than the one it solves — a stale credential that verifies correctly while the licence is suspended."
  },
  {
   "type": "h2",
   "text": "Why interstate practice made this urgent"
  },
  {
   "type": "p",
   "html": "Licensure compacts and expanded cross-state practice have multiplied the verification burden. A telehealth clinician may hold licences in a dozen states; a travel nurse may work in five in a year; a contractor may operate across a metropolitan area spanning three."
  },
  {
   "type": "p",
   "html": "Each of those relationships requires verification, by each employer, against each board, on a cadence nobody has defined."
  },
  {
   "type": "h2",
   "text": "Designing for freshness rather than against it"
  },
  {
   "type": "p",
   "html": "The honest design accepts that status changes and builds around it."
  },
  {
   "type": "table",
   "head": [
    "Design choice",
    "Consequence"
   ],
   "rows": [
    [
     "Long-lived issuance receipt only",
     "Verifies authenticity forever; silently wrong about status"
    ],
    [
     "Short-validity status receipt",
     "Accurate but requires reissuance and a live relationship"
    ],
    [
     "Issuance receipt plus a signed revocation list",
     "Authenticity permanent, status checkable against a published list"
    ],
    [
     "Status receipt on demand",
     "Accurate; requires the board to be reachable, which is the original problem"
    ]
   ]
  },
  {
   "type": "p",
   "html": "The third row is the workable one. A board publishes a signed revocation and restriction list on a defined cadence. A verifier checks the issuance receipt against the current list, offline, and knows both facts."
  },
  {
   "type": "h2",
   "text": "What the receipt carries"
  },
  {
   "type": "code",
   "text": "{\n  \"type\": \"manav-stmt/1\",\n  \"action\": \"professional_licence_issued\",\n  \"board\": \"[board, jurisdiction]\",\n  \"licensee\": \"[name, licence number]\",\n  \"profession\": \"[type]  Scope: [endorsements, limitations]\",\n  \"issued\": \"[date]  Expires: [date]\",\n  \"issued_by\": \"[board registrar, credential]\"\n}"
  },
  {
   "type": "h2",
   "text": "Why this is graded conservatively"
  },
  {
   "type": "p",
   "html": "Two gaps in the evidence base, and both are worth naming."
  },
  {
   "type": "p",
   "html": "First, nobody publishes how often employers actually verify licences. Practitioner accounts suggest it is low outside regulated healthcare settings, but that is an impression rather than a measurement."
  },
  {
   "type": "p",
   "html": "Second, the frequency and cost of unlicensed practice arising from verification failure is not systematically tracked. Enforcement actions exist; a denominator does not."
  },
  {
   "type": "p",
   "html": "A board wanting to know whether this matters can measure the cheap proxy: verification requests received per year, staff time spent answering them, and the share arriving from out of state. That number alone often justifies publishing a verifiable artefact on cost grounds, independent of any fraud argument."
  },
  {
   "type": "h2",
   "text": "Where adoption is easiest"
  },
  {
   "type": "p",
   "html": "Compacts. A compact commission already coordinates across member boards and has a shared interest in reducing per-verification friction. A compact that published signed issuance and revocation artefacts would cover many jurisdictions in one adoption decision, which is a materially different proposition from persuading fifty boards individually."
  },
  {
   "type": "h2",
   "text": "What a compact would gain from signing"
  },
  {
   "type": "table",
   "caption": "Three verification models",
   "head": [
    "Model",
    "Speed",
    "Works across jurisdictions?"
   ],
   "rows": [
    [
     "Board-by-board lookup",
     "Slow",
     "Only one at a time"
    ],
    [
     "Compact data sharing",
     "Faster",
     "Within the compact"
    ],
    [
     "<strong style=\"font-weight:600\">Issuer-signed licence the holder carries</strong>",
     "<strong style=\"font-weight:600\">Milliseconds</strong>",
     "<strong style=\"font-weight:600\">Anywhere, with published keys</strong>"
    ]
   ]
  },
  {
   "type": "h2",
   "text": "Objections and honest limits"
  },
  {
   "type": "p",
   "html": "<strong style=\"font-weight:600\">“Compacts already solve multi-state practice.”</strong> For member states and member professions, with their own data sharing. They do not help a verifier outside the compact, or one checking a profession the compact does not cover."
  },
  {
   "type": "p",
   "html": "<strong style=\"font-weight:600\">“Status changes, so a carried credential goes stale.”</strong> Correct, and that is what short expiry and published revocation are for. A credential with a two-week validity and a revocation check is fresher than a lookup nobody performs."
  }
 ],
 "faq": [
  {
   "q": "Does a receipt tell an employer the licence is currently valid?",
   "a": "No, and that limitation is central. Authenticity and status are different questions; the receipt answers the first and must be paired with a published revocation list for the second."
  },
  {
   "q": "Why not just query the board's website?",
   "a": "That works for one licence in one state. It does not scale to an employer verifying hundreds of licences across a dozen jurisdictions on a recurring cadence."
  },
  {
   "q": "Who would adopt first?",
   "a": "A licensure compact commission, because one decision covers many member boards and the shared verification burden is already visible to them."
  },
  {
   "q": "Why is this filed as frontier?",
   "a": "Because verification-rate and harm data are thin. The mechanism is straightforward; the business case has to come from a board's own request volume."
  },
  {
   "q": "Why is licence verification so inconsistent?",
   "a": "Every board is a separate query with a separate format and availability, so at volume the check is frequently skipped."
  },
  {
   "q": "Do compacts solve it?",
   "a": "Within their member states and professions. They do not help a verifier outside the compact."
  },
  {
   "q": "How do you handle status changes?",
   "a": "Short validity plus published, signed revocations. A two-week credential with a revocation check is fresher than a lookup nobody runs."
  }
 ],
 "sources": [
  {
   "t": "FSMB — state medical board licensure and verification resources",
   "u": "https://www.fsmb.org/licensure/"
  },
  {
   "t": "Published enforcement actions involving unlicensed practice and credential misrepresentation."
  }
 ],
 "related": [
  {
   "slug": "issuance-authority-credentials",
   "title": "The registrar's signature",
   "category": "Comparison"
  },
  {
   "slug": "cross-border-issuance",
   "title": "Admissions documents from anywhere",
   "category": "Vertical"
  },
  {
   "slug": "signatory-authority-attestation",
   "title": "Third-country repair stations",
   "category": "Vertical"
  }
 ],
 "image": "https://cdn.twc.sh/images/igcache/Licence%20Issuance%20Receipt/1200_630/blog.jpg",
 "wordcount": 797,
 "url": "/blog/licence-issuance-receipt.html",
 "reading_time": "4 min read",
 "seo_title": "Licensing and permit issuance across state lines",
 "meta_description": "Licence verification means querying each state board's site. Fraudulent and lapsed licences persist because checking is optional and slow.",
 "hub": {
  "slug": "topics/public-sector-identity",
  "title": "Public sector identity"
 },
 "answer": "Because verification means querying each board's website, one at a time, in whatever form that board provides. Fraudulent licences and lapsed-status misrepresentation persist because checking is optional, slow and inconsistent — and the licensee carries nothing a verifier can test.",
 "answer_q": "Why can't one state verify another state's professional licence?",
 "glossary": [
  {
   "term": "Licensure compact",
   "def": "An agreement letting a professional practise across member states under a common framework."
  },
  {
   "term": "Primary source verification",
   "def": "Confirming a credential directly with the issuing body — the gold standard, and the reason checking is slow."
  },
  {
   "term": "Status misrepresentation",
   "def": "Presenting a lapsed, restricted or surrendered licence as current."
  }
 ],
 "checklist": {
  "title": "What a board can do alone",
  "id": "board",
  "desc": "Four steps.",
  "steps": [
   {
    "name": "Sign the licence facts.",
    "text": "Holder, profession, status, scope, expiry."
   },
   {
    "name": "Keep the validity short.",
    "text": "So staleness is bounded by construction."
   },
   {
    "name": "Publish revocations.",
    "text": "Signed, cacheable, checkable offline."
   },
   {
    "name": "Give it to the licensee.",
    "text": "Portability is what makes the check happen at all."
   }
  ]
 },
 "cta": {
  "title": "Where this fits in Manav",
  "html": "Manav binds the authorising official to the exact release, award or record change, and produces a receipt another agency, an auditor or a counterparty can verify without access to the issuing system.",
  "href": "../docs.html",
  "label": "See authorisation receipts"
 }
}