{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/Fujio-Turner/mobile_field_service/docs/schema/inventory.json",
  "title": "field.inventory",
  "oneOf": [
    { "$ref": "#/$defs/stock" },
    { "$ref": "#/$defs/movement" }
  ],
  "$defs": {
    "unixSeconds": { "type": "integer", "minimum": 0 },
    "auditStamp": {
      "type": "object",
      "additionalProperties": false,
      "required": ["dt", "ver", "by"],
      "properties": {
        "dt": { "$ref": "#/$defs/unixSeconds" },
        "ver": { "type": "string" },
        "by": { "type": "string" }
      }
    },
    "audit": {
      "type": "object",
      "additionalProperties": false,
      "required": ["cr", "up"],
      "properties": {
        "cr": { "$ref": "#/$defs/auditStamp" },
        "up": { "$ref": "#/$defs/auditStamp" }
      }
    },
    "historyChange": {
      "type": "object",
      "additionalProperties": false,
      "required": ["path"],
      "properties": { "path": { "type": "string" }, "from": true, "to": true }
    },
    "historyEntry": {
      "type": "object",
      "additionalProperties": false,
      "required": ["dt", "by", "ver", "op"],
      "properties": {
        "dt": { "$ref": "#/$defs/unixSeconds" },
        "lat": { "type": "number" },
        "lon": { "type": "number" },
        "accuracyM": { "type": "number" },
        "by": { "type": "string" },
        "ver": { "type": "string" },
        "op": { "type": "string" },
        "changes": { "type": "array", "items": { "$ref": "#/$defs/historyChange" } }
      }
    },
    "stock": {
      "type": "object",
      "additionalProperties": true,
      "required": ["type", "audit", "productId", "sku", "locationId", "locationType", "qtyOnHand", "uom"],
      "properties": {
        "type": { "const": "inventory" },
        "audit": { "$ref": "#/$defs/audit" },
        "productId": { "type": "string" },
        "sku": { "type": "string" },
        "locationId": { "type": "string" },
        "locationType": { "type": "string" },
        "qtyOnHand": { "type": "number" },
        "uom": { "type": "string" }
      }
    },
    "movement": {
      "type": "object",
      "additionalProperties": true,
      "required": ["type", "audit", "history", "productId", "locationId", "qtyDelta", "reason"],
      "properties": {
        "type": { "const": "inventory_tx" },
        "audit": { "$ref": "#/$defs/audit" },
        "history": {
          "type": "array",
          "maxItems": 100,
          "items": { "$ref": "#/$defs/historyEntry" }
        },
        "productId": { "type": "string" },
        "locationId": { "type": "string" },
        "qtyDelta": { "type": "number" },
        "reason": { "type": "string" },
        "workOrderOutId": { "type": "string" },
        "orderId": { "type": "string" },
        "sku": { "type": "string" },
        "readyToPush": { "type": "boolean" },
        "appliedToWo": { "type": "boolean" }
      },
      "anyOf": [
        { "required": ["workOrderOutId"] },
        { "required": ["orderId"] }
      ]
    }
  }
}
