kofdai commited on
Commit
58b6dc1
·
verified ·
1 Parent(s): e14b553

Upload schemas/legal_space_axes_definition.json with huggingface_hub

Browse files
schemas/legal_space_axes_definition.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "x_axis": {
3
+ "name": "legal_field",
4
+ "description": "法律分野",
5
+ "range": [0, 100],
6
+ "categories": {
7
+ "constitution": {"name": "憲法", "range": [0, 10]},
8
+ "civil_law": {"name": "民法", "range": [10, 40]},
9
+ "criminal_law": {"name": "刑法", "range": [40, 60]},
10
+ "commercial_law": {"name": "商法", "range": [60, 75]},
11
+ "procedural_law": {"name": "訴訟法", "range": [75, 90]},
12
+ "international_law": {"name": "国際法", "range": [90, 100]}
13
+ }
14
+ },
15
+ "y_axis": {
16
+ "name": "abstraction_level",
17
+ "description": "抽象度",
18
+ "range": [0, 100],
19
+ "categories": {
20
+ "specific_case": {"name": "具体的判例", "range": [0, 30]},
21
+ "statute_interpretation": {"name": "条文解釈", "range": [30, 60]},
22
+ "legal_theory": {"name": "法理論", "range": [60, 80]},
23
+ "philosophy_of_law": {"name": "法哲学", "range": [80, 100]}
24
+ }
25
+ },
26
+ "z_axis": {
27
+ "name": "temporal_validity",
28
+ "description": "時間的有効性",
29
+ "range": [0, 100],
30
+ "categories": {
31
+ "current_law": {"name": "現行法", "range": [0, 40]},
32
+ "scheduled_revision": {"name": "改正予定", "range": [40, 60]},
33
+ "historical_law": {"name": "歴史的・旧法", "range": [60, 80]},
34
+ "future_discussion": {"name": "将来的議論", "range": [80, 100]}
35
+ }
36
+ }
37
+ }