Browse Source

add mock api response for get_pyrat_line_mutations

Kimberly Meechan 2 months ago
parent
commit
558ab56efd
1 changed files with 32 additions and 0 deletions
  1. 32 0
      pyrat-api-line-mutations-response.json

+ 32 - 0
pyrat-api-line-mutations-response.json

@@ -0,0 +1,32 @@
+[
+    {
+        "id": 1,
+        "name": "Mut-A",
+        "status": "active",
+        "possible_grades": [
+            {"id": 5, "name": "het"}, 
+            {"id": 6, "name": "hom"}, 
+            {"id": 7, "name": "wt"}
+        ]
+    },
+    {
+        "id": 2,
+        "name": "Mut-B",
+        "status": "inactive",
+        "possible_grades": [
+            {"id": 5, "name": "het"}, 
+            {"id": 6, "name": "hom"}, 
+            {"id": 7, "name": "wt"}
+        ]
+    },
+    {
+        "id": 3,
+        "name": "Mut-C",
+        "status": "active",
+        "possible_grades": [
+            {"id": 5, "name": "het"}, 
+            {"id": 6, "name": "hom"}, 
+            {"id": 7, "name": "wt"}
+        ]
+    }
+]