{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://example.com/hft71/schemas/stock-available-response.schema.json",
  "title": "HFT71 Stock Available Response",
  "description": "Expected item shape returned by GET /stock/available and consumed by stock sync.",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "sku"
    ],
    "properties": {
      "sku": {
        "type": "string",
        "minLength": 1
      },
      "stock": {
        "type": "integer",
        "minimum": 0
      }
    },
    "additionalProperties": true
  }
}

