Misskey · Schema

RoleCondFormulaFollowersOrFollowingOrNotes

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

Name Type Description
id string
type string
value number
View JSON Schema on GitHub

JSON Schema

misskey-rolecondformulafollowersorfollowingornotes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://misskey.io/schemas/RoleCondFormulaFollowersOrFollowingOrNotes",
  "title": "RoleCondFormulaFollowersOrFollowingOrNotes",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "followersLessThanOrEq",
        "followersMoreThanOrEq",
        "followingLessThanOrEq",
        "followingMoreThanOrEq",
        "notesLessThanOrEq",
        "notesMoreThanOrEq"
      ]
    },
    "value": {
      "type": "number"
    }
  },
  "required": [
    "id",
    "type",
    "value"
  ]
}