{
  "$id": "https://schema.nfh.global/LostAndFoundItem/v2.0",
  "x-iri": "https://schema.nfh.global/LostAndFoundItem/v2.0",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LostAndFoundItem",
  "type": "object",
  "description": "An item that has been reported lost or found in connection with a transport service.",
  "properties": {
    "itemType": {
      "description": "Type of the lost/found item (e.g. BAG, PHONE, WALLET)",
      "type": "string"
    },
    "itemDescription": {
      "description": "Detailed description of the item",
      "type": "string"
    },
    "foundAt": {
      "description": "Date and time the item was found",
      "type": "string",
      "format": "date-time"
    },
    "lostAt": {
      "description": "Date and time the item was lost",
      "type": "string",
      "format": "date-time"
    },
    "vehicleRef": {
      "description": "Vehicle on which the item was found or lost",
      "$ref": "https://schema.nfh.global/Vehicle/v2.0/schema.json"
    },
    "orderId": {
      "description": "Identifier of the contract/order against which support is required",
      "type": "string"
    },
    "ticketIds": {
      "description": "Identifiers of any open support tickets",
      "$ref": "https://schema.nfh.global/SupportTicket/v2.0/schema.json"
    },
    "callbackPhone": {
      "description": "Telephone number for callback support",
      "type": "string"
    }
  },
  "additionalProperties": false,
  "x-tags": [
    "mobility",
    "ride-hailing"
  ]
}
