Thing

Defines a thing.

APIs.ioEngineeringPlatform

Properties

Name Type Description
alternateName string An alias for the item
bingId string An ID that uniquely identifies this item.
description string A short description of the item.
image object
name string The name of the thing represented by this object.
url string The URL to get more information about the thing represented by this object.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-thing-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Thing",
  "title": "Thing",
  "properties": {
    "alternateName": {
      "type": "string",
      "description": "An alias for the item",
      "readOnly": true
    },
    "bingId": {
      "type": "string",
      "description": "An ID that uniquely identifies this item.",
      "readOnly": true
    },
    "description": {
      "type": "string",
      "description": "A short description of the item.",
      "readOnly": true
    },
    "image": {
      "$ref": "#/components/schemas/ImageObject"
    },
    "name": {
      "type": "string",
      "description": "The name of the thing represented by this object.",
      "readOnly": true
    },
    "url": {
      "type": "string",
      "description": "The URL to get more information about the thing represented by this object.",
      "readOnly": true
    }
  },
  "description": "Defines a thing.",
  "allOf": [
    {
      "$ref": "#/components/schemas/Response"
    }
  ]
}