mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-23 17:29:06 +01:00
34 lines
519 B
Plaintext
34 lines
519 B
Plaintext
{
|
|
summary: 'サーバーの詳細を取得します。',
|
|
description: 'サーバーの詳細を取得します。',
|
|
tags: [
|
|
'federation',
|
|
],
|
|
requireCredential: false,
|
|
req: {
|
|
type: 'object',
|
|
properties: {
|
|
host: {
|
|
type: 'string',
|
|
description: 'サーバーのホスト名。',
|
|
},
|
|
},
|
|
required: [
|
|
'host',
|
|
],
|
|
},
|
|
res: {
|
|
oneOf: [
|
|
{
|
|
type: 'object',
|
|
ref: 'FederationInstance',
|
|
$ref: 'misskey://FederationInstance',
|
|
},
|
|
{
|
|
type: 'null',
|
|
},
|
|
],
|
|
},
|
|
errors: {},
|
|
}
|