政府許可申請

B2B

申請 → 文件核查 → 部門審查 → 公眾意見 → 核發許可。

6 個節點 · 6 條連接government
humansystem
視覺化
提交申請human

申請人填寫表單並上傳文件。

sequential文件完整性核查
文件完整性核查system

確認所有必要附件均已齊備。

sequential部門技術審查
部門技術審查human

分區、環境及安全審查。

parallel公眾意見徵詢期
sequential委員會投票
公眾意見徵詢期human

30 天公告及意見徵集。

sequential委員會投票
委員會投票human
conditional核發許可證
核發許可證system

產生附有條件的許可證文件。

uc-permit-application.osop.yaml
osop_version: "1.0"
id: "permit-application"
name:"政府許可申請"
description:"申請 → 文件核查 → 部門審查 → 公眾意見 → 核發許可。"

nodes:
  - id: "apply"
    type: "human"
    subtype: "input"
    name: "提交申請"
    description: "申請人填寫表單並上傳文件。"

  - id: "doc_check"
    type: "system"
    name: "文件完整性核查"
    description: "確認所有必要附件均已齊備。"

  - id: "dept_review"
    type: "human"
    subtype: "review"
    name: "部門技術審查"
    description: "分區、環境及安全審查。"
    timeout_sec: 2592000

  - id: "public_comment"
    type: "human"
    subtype: "input"
    name: "公眾意見徵詢期"
    description: "30 天公告及意見徵集。"
    timeout_sec: 2592000

  - id: "committee_vote"
    type: "human"
    subtype: "review"
    name: "委員會投票"
    security:
      approval_gate: true

  - id: "issue_permit"
    type: "system"
    name: "核發許可證"
    description: "產生附有條件的許可證文件。"

edges:
  - from: "apply"
    to: "doc_check"
    mode: "sequential"
  - from: "doc_check"
    to: "dept_review"
    mode: "sequential"
  - from: "dept_review"
    to: "public_comment"
    mode: "parallel"
  - from: "dept_review"
    to: "committee_vote"
    mode: "sequential"
  - from: "public_comment"
    to: "committee_vote"
    mode: "sequential"
  - from: "committee_vote"
    to: "issue_permit"
    mode: "conditional"
    when: "vote.approved == true"