Our Personal Data Server from scratch!
0
fork

Configure Feed

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

at fix/small-bugs 28 lines 699 B view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "SELECT id, private_key_bytes\n FROM reserved_signing_keys\n WHERE public_key_did_key = $1\n AND used_at IS NULL\n AND expires_at > NOW()\n FOR UPDATE", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "id", 9 "type_info": "Uuid" 10 }, 11 { 12 "ordinal": 1, 13 "name": "private_key_bytes", 14 "type_info": "Bytea" 15 } 16 ], 17 "parameters": { 18 "Left": [ 19 "Text" 20 ] 21 }, 22 "nullable": [ 23 false, 24 false 25 ] 26 }, 27 "hash": "f8a4e152049a8dcae85d05ce0537ee9c3384d9c88cfed672c29c40478d5c358d" 28}