The current system has categories for JURISDICTION.SELF, FAMILY, CHURCH, CIVIL, etc., but hierarchy and jurisdiction need to become first-class organizing principles, not just tags. Otherwise the system could still accidentally flatten Biblical law into “rules for everybody” or, worse, into “the state should enforce everything.”
The stronger formulation should be:
Biblical law governs every relationship, but not every person or institution has the same authority to apply every law.
So the system needs three added layers:
1. Hierarchy
Who is above whom under God in this relationship?
2. Jurisdiction
Which God-ordained sphere has authority here?
3. Competency
What kind of action is this authority allowed to take?
1. Hierarchy Must Be Explicit
A Biblical relationship is rarely just “A relates to B.” It usually has an ordered structure.
For example:
God → Man
Husband → Wife
Parent → Child
Elder → Congregation
Magistrate → Citizen
Master/Employer → Servant/Worker
Teacher → Student
Owner → Property
Man → Creation
But every hierarchy is also limited by God.
So a hierarchy token should include:
superior_party
subordinate_party
source_of_authority
scope_of_authority
limits_of_authority
appeal_authority
Example:
{
"hierarchy_token": "HIERARCHY.FAMILY.PARENT_CHILD",
"superior_party": "Parent",
"subordinate_party": "Child",
"source_of_authority": "God's command and covenant household order",
"scope_of_authority": "Instruction, discipline, provision, protection, inheritance preparation",
"limits_of_authority": "May not command sin, abuse, murder, idolatry, or covenant rebellion",
"appeal_authority": ["Father", "Household head", "Elders", "Civil magistrate in cases of crime", "God"]
}
That makes hierarchy lawful, not arbitrary.
2. Add a Hierarchy Table
Add this table:
biblical_hierarchies
id
hierarchy_token
name
domain_id
superior_party_type
subordinate_party_type
source_of_authority
scope_summary
limit_summary
appeal_summary
created_at
updated_at
Examples:
HIERARCHY.GOD.MAN
HIERARCHY.FAMILY.HUSBAND_WIFE
HIERARCHY.FAMILY.PARENT_CHILD
HIERARCHY.CHURCH.ELDER_CONGREGANT
HIERARCHY.CIVIL.MAGISTRATE_CITIZEN
HIERARCHY.ECONOMY.EMPLOYER_WORKER
HIERARCHY.EDUCATION.TEACHER_STUDENT
HIERARCHY.CREATION.MAN_ANIMAL
HIERARCHY.CREATION.MAN_LAND
This would let every rule ask:
Is this relationship equal, hierarchical, covenantal, contractual, protective, judicial, or representative?
3. Jurisdiction Must Be More Than a Label
The system should distinguish where moral responsibility exists from where enforcement authority exists.
For example, adultery is morally governed by God, damages the family, may require church discipline, and in Biblical civil order had civil consequences. But that does not mean every neighbor may personally punish it.
So each rule needs these jurisdiction fields:
moral_jurisdiction
primary_earthly_jurisdiction
secondary_jurisdictions
enforcement_jurisdiction
teaching_jurisdiction
discipline_jurisdiction
appeal_jurisdiction
excluded_jurisdictions
Example:
{
"rule_token": "FAMILY.MARRIAGE.PROHIBIT_ADULTERY.MARITAL_FIDELITY",
"moral_jurisdiction": "God",
"primary_earthly_jurisdiction": "Family",
"secondary_jurisdictions": ["Church", "Civil"],
"teaching_jurisdiction": ["Family", "Church"],
"discipline_jurisdiction": ["Church"],
"enforcement_jurisdiction": ["Civil in Biblical judicial order"],
"excluded_jurisdictions": ["Private vengeance", "Mob action"]
}
That last field is very important: excluded jurisdictions prevent abuse.
4. Add a Jurisdiction Matrix
Each law should be mapped across spheres like this:
| Sphere | Authority Type | May Teach? | May Judge? | May Discipline? | May Enforce? |
|---|---|---|---|---|---|
| Self | conscience/self-government | yes | self-examination | repentance | no coercion |
| Family | household government | yes | household matters | correction, inheritance, provision | limited household discipline |
| Church | ecclesiastical government | yes | doctrine/membership | rebuke, exclusion, restoration | no civil sword |
| Civil | public justice | yes, as law | crimes/public wrongs | judicial penalties | sword/restitution |
| Market | contract/exchange | yes, by terms | contract performance | termination, damages | through courts |
| Community | witness/custom/help | yes | informal reputation | admonition | no coercion |
| God | final sovereignty | absolute | absolute | providential/historical | final judgment |
This matrix should be built into the system.
A Biblical rule should not merely say:
Jurisdiction: Civil
It should say:
Civil may do X, but may not do Y.
Family must do A, but may not do B.
Church may do C, but may not use the sword.
Private persons may testify and seek justice, but may not avenge.
5. Add Competency Tokens
Jurisdiction is not enough. Each sphere has different competencies, meaning lawful powers.
COMPETENCY.TEACH
COMPETENCY.COMMAND
COMPETENCY.CORRECT
COMPETENCY.DISCIPLINE
COMPETENCY.EXCLUDE
COMPETENCY.JUDGE_FACTS
COMPETENCY.REQUIRE_RESTITUTION
COMPETENCY.USE_COERCION
COMPETENCY.EXECUTE_SANCTION
COMPETENCY.FORGIVE_PERSONAL_OFFENSE
COMPETENCY.RESTORE_FELLOWSHIP
COMPETENCY.RESTORE_OFFICE
COMPETENCY.DECLARE_DOCTRINE
COMPETENCY.SET_CONTRACT_TERMS
COMPETENCY.PROTECT_BOUNDARIES
Example:
{
"jurisdiction": "CHURCH",
"competencies": [
"TEACH",
"REBUKE",
"EXCLUDE",
"RESTORE_FELLOWSHIP"
],
"forbidden_competencies": [
"USE_CIVIL_SWORD",
"SEIZE_PROPERTY",
"IMPRISON"
]
}
That keeps each sphere in its proper lane.
6. Build a Jurisdiction Rule Table
Add:
biblical_rule_jurisdictions
id
rule_id
jurisdiction_id
role_type
authority_level
competencies_json
forbidden_actions_json
notes
Where role_type could be:
moral
primary
secondary
teaching
disciplinary
judicial
enforcement
restorative
appeal
excluded
Example:
Rule:
NEIGHBOR.PROPERTY.PROHIBIT_THEFT.NO_STEALING
Jurisdiction Map:
God → moral/final judge
Self → must not steal; must repent
Family → teach property order; correct children
Church → discipline unrepentant thief in fellowship
Civil → judge theft; require restitution
Victim → bring complaint; receive restitution; forgive personal bitterness
Community → bear witness; refuse complicity
Mob → excluded jurisdiction
That is the level of clarity needed.
7. Hierarchy Types
You should classify relationships by hierarchy type:
HIERARCHY_TYPE.ABSOLUTE_DIVINE
HIERARCHY_TYPE.COVENANTAL
HIERARCHY_TYPE.PATRIARCHAL_HOUSEHOLD
HIERARCHY_TYPE.ECCLESIASTICAL
HIERARCHY_TYPE.CIVIL_MAGISTERIAL
HIERARCHY_TYPE.CONTRACTUAL
HIERARCHY_TYPE.PROTECTIVE
HIERARCHY_TYPE.PEDAGOGICAL
HIERARCHY_TYPE.STEWARDSHIP
HIERARCHY_TYPE.EQUAL_NEIGHBOR
HIERARCHY_TYPE.APPELLATE
Examples:
| Relationship | Hierarchy Type |
|---|---|
| God → Man | Absolute divine |
| Husband → Wife | Covenantal / household |
| Parent → Child | Patriarchal household / pedagogical |
| Elder → Congregant | Ecclesiastical |
| Magistrate → Citizen | Civil-magisterial |
| Employer → Worker | Contractual/economic |
| Teacher → Student | Pedagogical |
| Man → Animal | Stewardship |
| Neighbor ↔ Neighbor | Equal neighbor |
| Higher court → lower court | Appellate |
This would let the interface teach users that hierarchy is not one thing. A father, pastor, magistrate, employer, and teacher do not all have the same kind of authority.
8. The Critical Anti-Tyranny Principle
The system should include this governing rule:
No lower authority is absolute, and no authority may exceed its God-given jurisdiction.
So every hierarchy should have a corresponding limit rule.
Examples:
HIERARCHY.FAMILY.PARENT_CHILD
LIMIT.FAMILY.PARENT.NO_PROVOKING_CHILDREN
LIMIT.FAMILY.PARENT.NO_COMMANDING_SIN
HIERARCHY.CHURCH.ELDER_CONGREGANT
LIMIT.CHURCH.ELDER.NO_LORDING_OVER_FLOCK
LIMIT.CHURCH.ELDER.NO_FALSE_DOCTRINE
HIERARCHY.CIVIL.MAGISTRATE_CITIZEN
LIMIT.CIVIL.MAGISTRATE.NO_BRIBERY
LIMIT.CIVIL.MAGISTRATE.NO_PARTIALITY
LIMIT.CIVIL.MAGISTRATE.NO_USURPING_FAMILY
LIMIT.CIVIL.MAGISTRATE.NO_USURPING_CHURCH
HIERARCHY.ECONOMY.EMPLOYER_WORKER
LIMIT.ECONOMY.EMPLOYER.NO_WITHHOLDING_WAGES
LIMIT.ECONOMY.EMPLOYER.NO_OPPRESSION
This is essential because Biblical hierarchy is always hierarchy under God, never autonomous domination.
9. The Appeal Chain
A complete system also needs appeal paths.
Example:
Personal offense
→ private confrontation
→ witnesses
→ church judgment, if ecclesiastical
→ civil court, if criminal/property harm
→ God’s final judgment
Family example:
Child issue
→ mother/father correction
→ father/household head
→ church counsel, if spiritual
→ civil magistrate, if criminal abuse or violence
Civil example:
Local judges
→ higher judges / hard case
→ priestly/legal instruction
→ king/magistrate under law
→ God
So add:
biblical_appeal_paths
id
starting_jurisdiction_id
matter_type
next_jurisdiction_id
condition_for_appeal
scriptural_basis
notes
This would prevent confusion about “who handles this next?”
10. Authority Origin and Authority Limit
Every authority should be described by two paired statements:
Authority Origin:
Where does this authority come from?
Authority Limit:
Where does this authority end?
Example:
Civil magistrate
Origin:
God ordains civil rulers to punish public evil and protect public justice.
Limit:
The magistrate may not redefine good and evil, seize jurisdiction from family/church, punish without due process, or command disobedience to God.
Example:
Father
Origin:
God gives fathers household authority to provide, protect, instruct, and discipline.
Limit:
A father may not abuse, abandon, provoke to wrath, command sin, or treat children as autonomous property.
This is a major missing piece in the earlier system.
11. Add “Usurpation” as a Major Violation
A jurisdictional system needs a category for authority crossing boundaries.
VIOLATION.USURPATION
VIOLATION.TYRANNY
VIOLATION.ABDICATION
VIOLATION.REBELLION
VIOLATION.ANARCHY
VIOLATION.UNLAWFUL_DELEGATION
VIOLATION.FALSE_AUTHORITY
These are not exactly the same.
| Violation | Meaning |
|---|---|
| Usurpation | taking authority God did not grant |
| Tyranny | using real authority beyond lawful bounds |
| Abdication | refusing to exercise God-given duty |
| Rebellion | rejecting lawful authority |
| Anarchy | denying lawful order altogether |
| Unlawful delegation | giving your duty to an unauthorized party |
| False authority | claiming authority without office/calling |
This is very important for issues like:
State usurping education
Parents abdicating education
Church imitating the state
State redefining marriage
Employers acting like owners of persons
Children ruling parents
Courts inventing law
12. The Revised Core Formula
The earlier formula was:
Relationship + Duty + Boundary + Procedure + Remedy = Biblical Justice
Now I would revise it to:
Relationship + Hierarchy + Jurisdiction + Duty + Procedure + Remedy + Limit = Biblical Justice
Or in plain English:
Biblical justice is God’s rule applied to the right relationship, by the right authority, through the right procedure, within the right limits, for the restoration of the right order.
That is much stronger.
13. Final Assessment
To make it adequate, the system must treat these as first-class entities:
1. Hierarchies
2. Jurisdictions
3. Competencies
4. Limits
5. Appeal paths
6. Usurpation/abdication violations
7. Authority origin
8. Authority scope
9. Authority boundaries
10. Excluded jurisdictions
The key teaching point should be:
Theonomy is not merely “God has rules.” It is “God has ordered authorities, jurisdictions, duties, limits, remedies, and appeal paths for every relationship.”
That will keep the system covenantal, not statist; hierarchical, not tyrannical; procedural, not arbitrary; and practical, not merely theoretical.
