TM Forum · Schema

ProductOrderErrorMessage_MVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-productordererrormessage-mvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProductOrderErrorMessage_MVO",
  "title": "ProductOrderErrorMessage_MVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/ErrorMessage_MVO"
    },
    {
      "$ref": "#/components/schemas/Extensible"
    },
    {
      "type": "object",
      "description": "A ProductOrderErrorMessage represents an error that causes a status change in a product order.",
      "properties": {
        "timestamp": {
          "type": "string",
          "format": "date-time",
          "description": "Date when the error happened"
        },
        "productOrderItem": {
          "type": "array",
          "description": "A list of order item references corresponded to this error",
          "items": {
            "$ref": "#/components/schemas/ProductOrderItemRef_MVO"
          }
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "ProductOrderErrorMessage": "#/components/schemas/ProductOrderErrorMessage_MVO"
    }
  }
}