@@ -6,9 +6,9 @@ Collection Endpoints.
66
77The functionality is split into two main operational modes:
88
9- 1 . ** Federation Discovery** — A top-down, recursive traversal of a federation
9+ 1 . ** Federation Discovery** — A top-down, recursive traversal of a federation
1010hierarchy starting from a Trust Anchor.
11- 2 . ** Entity Collection** — A specialized protocol for optimized bulk-fetching
11+ 2 . ** Entity Collection** — A specialized protocol for optimized bulk-fetching
1212of entities, featuring support for server-side filtering, sorting, and
1313cursor-based pagination.
1414
@@ -99,14 +99,14 @@ try {
9999
100100### Discovery Logic & Loop Protection
101101
102- 1 . ** Trust Anchor Config** : Fetches and validates the TA's Entity Configuration.
103- 2 . ** Subordinate Listing** : Fetches the ` federation_list_endpoint ` .
102+ 1 . ** Trust Anchor Config** : Fetches and validates the TA's Entity Configuration.
103+ 2 . ** Subordinate Listing** : Fetches the ` federation_list_endpoint ` .
104104If filters are provided, they are passed as query parameters to this endpoint.
105- 3 . ** Recursion** : For each discovered subordinate, it fetches its
105+ 3 . ** Recursion** : For each discovered subordinate, it fetches its
106106configuration and repeats the process.
107- 4 . ** Loop Protection** : The algorithm tracks visited IDs to prevent
107+ 4 . ** Loop Protection** : The algorithm tracks visited IDs to prevent
108108infinite loops and is limited by ` maxDiscoveryDepth ` .
109- 5 . ** Deduplication** : Entities appearing in multiple branches are only stored
109+ 5 . ** Deduplication** : Entities appearing in multiple branches are only stored
110110once.
111111
112112### Applying Filters During Discovery
0 commit comments