this repo has no description
1{
2 "db_name": "PostgreSQL",
3 "query": "\n SELECT\n id,\n delegated_did,\n actor_did,\n controller_did,\n action_type as \"action_type: DelegationActionType\",\n action_details,\n ip_address,\n user_agent,\n created_at\n FROM delegation_audit_log\n WHERE controller_did = $1\n ORDER BY created_at DESC\n LIMIT $2 OFFSET $3\n ",
4 "describe": {
5 "columns": [
6 {
7 "ordinal": 0,
8 "name": "id",
9 "type_info": "Uuid"
10 },
11 {
12 "ordinal": 1,
13 "name": "delegated_did",
14 "type_info": "Text"
15 },
16 {
17 "ordinal": 2,
18 "name": "actor_did",
19 "type_info": "Text"
20 },
21 {
22 "ordinal": 3,
23 "name": "controller_did",
24 "type_info": "Text"
25 },
26 {
27 "ordinal": 4,
28 "name": "action_type: DelegationActionType",
29 "type_info": {
30 "Custom": {
31 "name": "delegation_action_type",
32 "kind": {
33 "Enum": [
34 "grant_created",
35 "grant_revoked",
36 "scopes_modified",
37 "token_issued",
38 "repo_write",
39 "blob_upload",
40 "account_action"
41 ]
42 }
43 }
44 }
45 },
46 {
47 "ordinal": 5,
48 "name": "action_details",
49 "type_info": "Jsonb"
50 },
51 {
52 "ordinal": 6,
53 "name": "ip_address",
54 "type_info": "Text"
55 },
56 {
57 "ordinal": 7,
58 "name": "user_agent",
59 "type_info": "Text"
60 },
61 {
62 "ordinal": 8,
63 "name": "created_at",
64 "type_info": "Timestamptz"
65 }
66 ],
67 "parameters": {
68 "Left": [
69 "Text",
70 "Int8",
71 "Int8"
72 ]
73 },
74 "nullable": [
75 false,
76 false,
77 false,
78 true,
79 false,
80 true,
81 true,
82 true,
83 false
84 ]
85 },
86 "hash": "1f44c06434b913554e26ad1e2674c56701f43fe12907594325e885c6f256045e"
87}