# Copyright 2021 The Matrix.org Foundation C.I.C. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. swagger: '2.0' info: title: "Matrix Federation Space Hierarchy API" version: "1.0.0" host: localhost:8448 schemes: - https basePath: /_matrix/federation/v1 consumes: - application/json produces: - application/json securityDefinitions: $ref: definitions/security.yaml paths: "/hierarchy/{roomId}": get: x-addedInMatrixVersion: "1.2" summary: Retrieve a portion of a space tree. description: |- Federation version of the Client-Server [`GET /hierarchy`](/client-server-api/#get_matrixclientv1roomsroomidhierarchy) endpoint. Unlike the Client-Server API version, this endpoint does not paginate. Instead, all the space-room's children the requesting server could feasibly peek/join are returned. The requesting server is responsible for filtering the results further down for the user's request. Only [`m.space.child`](#mspacechild) state events of the room are considered. Invalid child rooms and parent events are not covered by this endpoint. Responses to this endpoint should be cached for a period of time. operationId: getSpaceHierarchy security: - signedRequest: [] parameters: - in: path type: string name: roomId description: The room ID of the space to get a hierarchy for. required: true x-example: "!space:example.org" - in: query type: boolean name: suggested_only description: |- Optional (default `false`) flag to indicate whether or not the server should only consider suggested rooms. Suggested rooms are annotated in their [`m.space.child`](#mspacechild) event contents. x-example: true responses: 200: description: |- The space room and its children. examples: application/json: { "room": { "room_id": "!space:example.org", "avatar_url": "mxc://example.org/abcdef", "guest_can_join": false, "name": "The First Space", "topic": "No other spaces were created first, ever", "world_readable": true, "join_rule": "public", "room_type": "m.space", "num_joined_members": 42, "canonical_alias": "#general:example.org", "allowed_room_ids": [], "children_state": [ { "type": "m.space.child", "state_key": "!a:example.org", "content": { "via": ["remote.example.org"] }, "sender": "@alice:example.org", "origin_server_ts": 1629413349153 } ] }, "inaccessible_children": [ "!secret:example.org" ], "children": [ { "room_id": "!second_room:example.org", "avatar_url": "mxc://example.org/abcdef2", "guest_can_join": false, "name": "The ~~First~~ Second Space", "topic": "Hello world", "world_readable": true, "join_rule": "restricted", "room_type": "m.space", "num_joined_members": 42, "canonical_alias": "#general:example.org", "allowed_room_ids": [ "!upstream:example.org" ], "children_state": [ { "type": "m.space.child", "state_key": "!b:example.org", "content": { "via": ["remote.example.org"] }, "sender": "@alice:example.org", "origin_server_ts": 1629422222222 } ] } ] } schema: type: object properties: room: description: A summary of the room requested. allOf: - $ref: "../client-server/definitions/public_rooms_chunk.yaml" - type: object properties: room_type: type: string description: |- The `type` of room (from [`m.room.create`](/client-server-api/#mroomcreate)), if any. allowed_room_ids: type: array items: type: string description: |- If the room is a [restricted room](#restricted-rooms), these are the room IDs which are specified by the join rules. Empty or omitted otherwise. children_state: type: array description: |- The [`m.space.child`](/client-server-api/#mspacechild) events of the space-room, represented as [Stripped State Events](/client-server-api/#stripped-state) with an added `origin_server_ts` key. If the room is not a space-room, this should be empty. items: allOf: - $ref: "../../event-schemas/schema/core-event-schema/stripped_state.yaml" - type: object properties: origin_server_ts: type: number format: int64 description: The `origin_server_ts` for the event. required: [origin_server_ts] required: [room_type, allowed_room_ids, children_state] children: description: |- A summary of the space's children. Rooms which the requesting server cannot peek/join will be excluded. allOf: - $ref: "../client-server/definitions/public_rooms_chunk.yaml" - type: object properties: room_type: type: string description: |- The `type` of room (from [`m.room.create`](/client-server-api/#mroomcreate)), if any. allowed_room_ids: type: array items: type: string description: |- If the room is a [restricted room](#restricted-rooms), these are the room IDs which are specified by the join rules. Empty or omitted otherwise. required: [room_type, allowed_room_ids, children_state] inaccessible_children: type: array items: type: string description: |- The list of room IDs the requesting server doesn't have a viable way to peek/join. Rooms which the responding server cannot provide details on will be outright excluded from the response instead. Assuming both the requesting and responding server are well behaved, the requesting server should consider these room IDs as not accessible from anywhere. They should not be re-requested. required: [room, children, inaccessible_children] 404: description: |- The room is not known to the server or the requesting server is unable to peek/join it (if it were to attempt this). examples: application/json: { "errcode": "M_NOT_FOUND", "error": "Room does not exist." } schema: "$ref": "../client-server/definitions/errors/error.yaml" tags: - Spaces