All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rd-connectors.socialcast-connector.1.0.0.source-code.messagethread-schema.json Maven / Gradle / Ivy

The newest version!
{
  "$schema": "http://json-schema.org/schema#",
  "title": "Schema for incoming MessageThread objects for Roswell Socialcast connector",

  "type": "object",
  "properties": {
    "messages": {"type": "array", "items": {"$ref": "#/definitions/MESSAGE"}}
  },
  "additionalProperties": false,

  "definitions": {
    "MESSAGE": {
      "type": "object",
      "properties": {
        "sender":     {"$ref": "#/definitions/PARTICIPANT"},
        "recipients": {"type": "array",
                       "items": {"$ref": "#/definitions/PARTICIPANT"}},
        "date":       {"type": "string",
                       "format": "date-time"},
        "text":       {"type": "string"},
        "subject":    {"type": "string"}
      },
      "additionalProperties": false
    },

    "PARTICIPANT": {
      "type": "object",
      "properties": {
        "name": {"type": "string"},
        "email": {"type": "string",
                  "format": "email"}
      },
      "required": ["email"]
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy