Ordoro · Schema

Comment Schema

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
user string
date string
text string
View JSON Schema on GitHub

JSON Schema

ordoro-comment-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-comment-schema.json",
  "title": "Comment Schema",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "user": {
      "type": "string"
    },
    "date": {
      "type": "string",
      "format": "date-time"
    },
    "text": {
      "type": "string"
    }
  }
}