Misskey · Schema

RoleCondFormulaValueCreated

Open-SourceSocial NetworksFediverseActivityPubDecentralized

Properties

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

JSON Schema

misskey-rolecondformulavaluecreated-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://misskey.io/schemas/RoleCondFormulaValueCreated",
  "title": "RoleCondFormulaValueCreated",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "createdLessThan",
        "createdMoreThan"
      ]
    },
    "sec": {
      "type": "number"
    }
  },
  "required": [
    "id",
    "type",
    "sec"
  ]
}