| { | |
| "id": "is-human-dt", | |
| "type": "sequential", | |
| "root": "human-question", | |
| "branches": [ | |
| { | |
| "id": "human-question", | |
| "question": "Are you a human?", | |
| "branches": [ | |
| { | |
| "option": "yes", | |
| "next-node": "conclude-human" | |
| }, | |
| { | |
| "option": "no", | |
| "next-node": "two-hands" | |
| } | |
| ] | |
| }, | |
| { | |
| "id": "two-hands", | |
| "question": "Do you have two hands?", | |
| "branches": [ | |
| { | |
| "option": "yes", | |
| "next-node": "two-legs" | |
| }, | |
| { | |
| "option": "no", | |
| "next-node": "disability-question" | |
| } | |
| ] | |
| }, | |
| { | |
| "id": "two-legs", | |
| "question": "Do you have two legs?", | |
| "branches": [ | |
| { | |
| "option": "yes", | |
| "next-node": "feel-emotions" | |
| }, | |
| { | |
| "option": "no", | |
| "next-node": "disability-question" | |
| } | |
| ] | |
| }, | |
| { | |
| "id": "disability-question", | |
| "question": "Do you have a disability?", | |
| "branches": [ | |
| { | |
| "option": "yes", | |
| "next-node": "conclude-human-with-disability" | |
| }, | |
| { | |
| "option": "no", | |
| "next-node": "consciousness-question" | |
| } | |
| ] | |
| }, | |
| { | |
| "id": "feel-emotions", | |
| "question": "Do you feel emotions?", | |
| "branches": [ | |
| { | |
| "option": "yes", | |
| "next-node": "conclude-likely-human" | |
| }, | |
| { | |
| "option": "no", | |
| "next-node": "disability-question" | |
| } | |
| ] | |
| }, | |
| { | |
| "id": "consciousness-question", | |
| "question": "Are you conscious and self-aware?", | |
| "branches": [ | |
| { | |
| "option": "yes", | |
| "next-node": "conclude-possible-human" | |
| }, | |
| { | |
| "option": "no", | |
| "next-node": "conclude-not-human" | |
| } | |
| ] | |
| }, | |
| { | |
| "id": "conclude-human", | |
| "question": "Classification: Human (self-identified)", | |
| "branches": [] | |
| }, | |
| { | |
| "id": "conclude-human-with-disability", | |
| "question": "Classification: Human with disability", | |
| "branches": [] | |
| }, | |
| { | |
| "id": "conclude-likely-human", | |
| "question": "Classification: Likely Human (has physical form and emotions)", | |
| "branches": [] | |
| }, | |
| { | |
| "id": "conclude-possible-human", | |
| "question": "Classification: Possibly Human (conscious but claims no emotions)", | |
| "branches": [] | |
| }, | |
| { | |
| "id": "conclude-not-human", | |
| "question": "Classification: Not Human (lacks consciousness and emotions)", | |
| "branches": [] | |
| }, | |
| { | |
| "id": "conclude-artificial-being", | |
| "question": "Classification: Artificial Being (no physical human form, no disability)", | |
| "branches": [] | |
| } | |
| ] | |
| } |