Product

Museum shop product.

Art And DesignMuseumOpen DataCultural HeritageIIIFPublic APIsOpen Source

Properties

Name Type Description
id integer
api_model string
api_link string
title string
description stringnull
external_sku stringnull
image_url stringnull
web_url stringnull
min_current_price numbernull
max_current_price numbernull
min_compare_at_price numbernull
max_compare_at_price numbernull
price_display stringnull
artist_ids array
artwork_ids array
exhibition_ids array
source_updated_at string
updated_at string
timestamp string
View JSON Schema on GitHub

JSON Schema

art-institute-of-chicago-product-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.artic.edu/schemas/product.schema.json",
  "title": "Product",
  "type": "object",
  "description": "Museum shop product.",
  "properties": {
    "id": {
      "type": "integer"
    },
    "api_model": {
      "type": "string"
    },
    "api_link": {
      "type": "string",
      "format": "uri"
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": [
        "string",
        "null"
      ]
    },
    "external_sku": {
      "type": [
        "string",
        "null"
      ]
    },
    "image_url": {
      "type": [
        "string",
        "null"
      ],
      "format": "uri"
    },
    "web_url": {
      "type": [
        "string",
        "null"
      ],
      "format": "uri"
    },
    "min_current_price": {
      "type": [
        "number",
        "null"
      ]
    },
    "max_current_price": {
      "type": [
        "number",
        "null"
      ]
    },
    "min_compare_at_price": {
      "type": [
        "number",
        "null"
      ]
    },
    "max_compare_at_price": {
      "type": [
        "number",
        "null"
      ]
    },
    "price_display": {
      "type": [
        "string",
        "null"
      ]
    },
    "artist_ids": {
      "type": "array",
      "items": {
        "type": "integer"
      }
    },
    "artwork_ids": {
      "type": "array",
      "items": {
        "type": "integer"
      }
    },
    "exhibition_ids": {
      "type": "array",
      "items": {
        "type": "integer"
      }
    },
    "source_updated_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "id",
    "title",
    "api_model",
    "api_link"
  ]
}