Verification

APIs.ioEngineeringPlatform

Properties

Name Type Description
verified boolean
reason string
payload string
signature string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-verification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/verification",
  "title": "Verification",
  "type": "object",
  "properties": {
    "verified": {
      "type": "boolean"
    },
    "reason": {
      "type": "string"
    },
    "payload": {
      "type": "string",
      "nullable": true
    },
    "signature": {
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "verified",
    "reason",
    "payload",
    "signature"
  ]
}