Response

Defines a response. All schemas that could be returned at the root of a response should inherit from this

APIs.ioEngineeringPlatform

Properties

Name Type Description
webSearchUrl string The URL To Bing's search result for this item.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Response",
  "title": "Response",
  "properties": {
    "webSearchUrl": {
      "type": "string",
      "description": "The URL To Bing's search result for this item.",
      "readOnly": true
    }
  },
  "description": "Defines a response. All schemas that could be returned at the root of a response should inherit from this",
  "allOf": [
    {
      "$ref": "#/components/schemas/Identifiable"
    }
  ]
}