Misskey · Schema

Signin

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

Name Type Description
id string
createdAt string
ip string
headers object
success boolean
View JSON Schema on GitHub

JSON Schema

misskey-signin-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://misskey.io/schemas/Signin",
  "title": "Signin",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "ip": {
      "type": "string"
    },
    "headers": {
      "type": "object"
    },
    "success": {
      "type": "boolean"
    }
  },
  "required": [
    "id",
    "createdAt",
    "ip",
    "headers",
    "success"
  ]
}