Key

Key

APIs.ioEngineeringPlatform

Properties

Name Type Description
key string
id integer
url string
title string
created_at string
verified boolean
read_only boolean
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-key-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/key",
  "title": "Key",
  "description": "Key",
  "type": "object",
  "properties": {
    "key": {
      "type": "string"
    },
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "url": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "verified": {
      "type": "boolean"
    },
    "read_only": {
      "type": "boolean"
    }
  },
  "required": [
    "key",
    "id",
    "url",
    "title",
    "created_at",
    "verified",
    "read_only"
  ]
}