Our Personal Data Server from scratch!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at fix/frontend-type-safety-improvements 64 lines 1.3 kB view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT did, device_id, client_id, client_auth, parameters, expires_at, code, controller_did\n FROM oauth_authorization_request\n WHERE id = $1\n ", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "did", 9 "type_info": "Text" 10 }, 11 { 12 "ordinal": 1, 13 "name": "device_id", 14 "type_info": "Text" 15 }, 16 { 17 "ordinal": 2, 18 "name": "client_id", 19 "type_info": "Text" 20 }, 21 { 22 "ordinal": 3, 23 "name": "client_auth", 24 "type_info": "Jsonb" 25 }, 26 { 27 "ordinal": 4, 28 "name": "parameters", 29 "type_info": "Jsonb" 30 }, 31 { 32 "ordinal": 5, 33 "name": "expires_at", 34 "type_info": "Timestamptz" 35 }, 36 { 37 "ordinal": 6, 38 "name": "code", 39 "type_info": "Text" 40 }, 41 { 42 "ordinal": 7, 43 "name": "controller_did", 44 "type_info": "Text" 45 } 46 ], 47 "parameters": { 48 "Left": [ 49 "Text" 50 ] 51 }, 52 "nullable": [ 53 true, 54 true, 55 false, 56 true, 57 false, 58 false, 59 true, 60 true 61 ] 62 }, 63 "hash": "e25457f2b9d7292cc5f0b5d4a28d3eca0b2edb4d492f1fa3052dd1b80d0c4ddc" 64}