changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": {},
+ "properties": {
+ "tracker": {
+ "anyOf": [
+ {
+ "additionalProperties": {},
+ "properties": {
+ "clientTrackerId": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Your own tracker identifier, usable with searchBy=clientTrackerId."
+ },
+ "courierCode": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "string"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Courier code(s) pinned on this tracker."
+ },
+ "createdAt": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "When the tracker was created."
+ },
+ "isSubscribed": {
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "False means the tracker is archived and no longer used for tracking."
+ },
+ "isTracked": {
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "False means tracking stopped (delivered, inactive or unsubscribed); existing results remain."
+ },
+ "shipmentReference": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Your own shipment reference, as supplied at creation."
+ },
+ "trackerId": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Ship24 tracker identifier; pass this to get_tracking_results."
+ },
+ "trackingNumber": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Tracking number this tracker follows."
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "The tracker."
+ }
+ },
+ "required": [
+ "tracker"
+ ],
+ "type": "object"
+}