Market Vendor

Description

A market vendor.

Properties

Property Description
description

A description of this market vendor.

id

The identifier for this market vendor.

links required read-only

Each property defines a hypertext link relationship as indicated by a link object or array of link objects. The target URL of each hypertext link relationship is related to the current resource according to the defined semantics of the link relationship property name.

name

The name of this market vendor.

photo

An image for this this market vendor.

Property Description
url

The URL for the market vendor photo.

type

The type of object represented.

website

A URL for the website of this market vendor.

OpenAPI Schema

The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.

{
  "description": "A market vendor.",
  "properties": {
    "description": {
      "description": "A description of this market vendor.",
      "type": "string"
    },
    "id": {
      "description": "The identifier for this market vendor.",
      "type": "integer"
    },
    "links": {
      "$ref": "#/components/schemas/Links"
    },
    "name": {
      "description": "The name of this market vendor.",
      "type": "string"
    },
    "photo": {
      "description": "An image for this this market vendor.",
      "properties": {
        "url": {
          "description": "The URL for the market vendor photo.",
          "format": "uri",
          "type": "string"
        }
      },
      "type": "object"
    },
    "type": {
      "description": "The type of object represented.",
      "enum": [
        "market-vendor"
      ],
      "type": "string"
    },
    "website": {
      "description": "A URL for the website of this market vendor.",
      "format": "uri",
      "type": "string"
    }
  },
  "title": "Market Vendor",
  "type": "object"
}