Misskey · Schema

App

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

Name Type Description
id string
name string
callbackUrl stringnull
permission array
secret string
isAuthorized boolean
View JSON Schema on GitHub

JSON Schema

misskey-app-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://misskey.io/schemas/App",
  "title": "App",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "callbackUrl": {
      "type": [
        "string",
        "null"
      ]
    },
    "permission": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "secret": {
      "type": "string"
    },
    "isAuthorized": {
      "type": "boolean"
    }
  },
  "required": [
    "id",
    "name",
    "callbackUrl",
    "permission"
  ]
}