Skip to main content
Version: Next

ContractNegotiationTerminationMessageSchema

@typestringrequired
Example: ContractNegotiationTerminationMessage
consumerPidstringrequired
Example: urn:example:consumerPid
providerPidstringrequired
Example: urn:example:providerPid
codestring
Example: USER_CANCELLED
reason object[]required
  • Array [
  • @valuestringrequired
    Example: This is a sentence.
    @languagestringrequired
    Example: en
  • ]
  • ContractNegotiationTerminationMessageSchema
    {
    "@type": "ContractNegotiationTerminationMessage",
    "consumerPid": "urn:example:consumerPid",
    "providerPid": "urn:example:providerPid",
    "code": "USER_CANCELLED",
    "reason": [
    {
    "language": "en",
    "text": "User cancelled negotiation."
    },
    {
    "language": "nl",
    "text": "Gebruiker heeft de onderhandeling geannuleerd."
    }
    ]
    }