{
  "$id": "https://schema.nfh.global/SupportRequest/v2.0",
  "x-iri": "https://schema.nfh.global/SupportRequest/v2.0",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "description": "Support request by a user. If no field is set, the user can expect a public support contact info",
  "title": "SupportRequest",
  "type": "object",
  "properties": {
    "orderId": {
      "description": "The order against which support is required",
      "type": "string"
    },
    "ticketIds": {
      "description": "IDs of support ticket if open",
      "type": "array",
      "items": {
        "$ref": "https://schema.nfh.global/SupportTicket/v2.0/schema.json"
      }
    },
    "callbackPhone": {
      "description": "Telephone number of the user for callback.",
      "type": "string"
    }
  },
  "required": [],
  "additionalProperties": false,
  "x-tags": [
    "common"
  ]
}
