Product Structure

An industrial product distributed by Applied Industrial Technologies

Type: record Properties: 0
Industrial DistributionBearingsPower TransmissionFluid PowerSupply ChainFortune 1000

Product Structure is a JSON Structure definition published by Applied Industrial Technologies. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/applied-industrial-technologies/main/json-structure/product-structure.json",
  "title": "Product",
  "description": "An industrial product distributed by Applied Industrial Technologies",
  "type": "record",
  "fields": [
    {
      "name": "productId",
      "type": "string",
      "description": "Unique product identifier"
    },
    {
      "name": "partNumber",
      "type": "string",
      "description": "Manufacturer part number"
    },
    {
      "name": "name",
      "type": "string",
      "description": "Product name"
    },
    {
      "name": "description",
      "type": "string",
      "description": "Product description"
    },
    {
      "name": "category",
      "type": "string",
      "description": "Product category"
    },
    {
      "name": "manufacturer",
      "type": "string",
      "description": "Product manufacturer"
    },
    {
      "name": "price",
      "type": "float64",
      "description": "Unit price in USD"
    },
    {
      "name": "inStock",
      "type": "boolean",
      "description": "Whether the product is in stock"
    },
    {
      "name": "leadTimeDays",
      "type": "int32",
      "description": "Lead time in days if not in stock"
    }
  ]
}