Skip to content

Table: federation_directory_entries

This table references:

ColumnTypeNullableNotes
iduuidnoDefault gen_random_uuid()
directory_iduuidnoReferences federation_directories(id)
instance_urltextno
display_nametextno
instance_public_keytextno
fingerprinttextno
regiontextnoDefault ''::text
descriptiontextnoDefault ''::text
tagsjsonbnoDefault '[]'::jsonb
verified_attimestampno
verified_viatextno
listing_idtextnoDefault ''::text
cached_attimestampnoDefault now()
CREATE TABLE public.federation_directory_entries (
id uuid DEFAULT gen_random_uuid() NOT NULL,
directory_id uuid NOT NULL,
instance_url text NOT NULL,
display_name text NOT NULL,
instance_public_key text NOT NULL,
fingerprint text NOT NULL,
region text DEFAULT ''::text NOT NULL,
description text DEFAULT ''::text NOT NULL,
tags jsonb DEFAULT '[]'::jsonb NOT NULL,
verified_at timestamp with time zone NOT NULL,
verified_via text NOT NULL,
listing_id text DEFAULT ''::text NOT NULL,
cached_at timestamp with time zone DEFAULT now() NOT NULL
);

Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.