{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://example.com/hft71/schemas/customer-status-response.schema.json",
  "title": "HFT71 Customer Status Response",
  "description": "Expected response shape from GET /order/{orderId}/customer-status.",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "sku",
      "status"
    ],
    "properties": {
      "sku": {
        "type": "string",
        "minLength": 1
      },
      "status": {
        "type": "string",
        "minLength": 1
      }
    },
    "additionalProperties": true
  }
}

