La Poste · Schema

MessageRest

PostalParcel TrackingAddress ValidationGeolocationShippingOpen DataFrance

Properties

Name Type Description
id string
type string
messageContent string
replacementValues array
View JSON Schema on GitHub

JSON Schema

messagerest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/la-poste/main/json-schema/messagerest.json",
  "title": "MessageRest",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "messageContent": {
      "type": "string"
    },
    "replacementValues": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ReplacementValue"
      }
    }
  }
}