Apache OpenMeetings · JSON Structure

Apache Openmeetings Invitation Dto Structure

InvitationDTO schema from Apache OpenMeetings REST API

Type: object Properties: 12
CollaborationVideo ConferencingWeb ConferencingWhiteboardApacheOpen SourceConferencing

InvitationDTO is a JSON Structure definition published by Apache OpenMeetings, describing 12 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

email firstname lastname message subject roomId passwordProtected password valid validFrom validTo languageId

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-openmeetings/refs/heads/main/json-structure/apache-openmeetings-invitation-dto-structure.json",
  "description": "InvitationDTO schema from Apache OpenMeetings REST API",
  "type": "object",
  "properties": {
    "email": {
      "type": "string"
    },
    "firstname": {
      "type": "string"
    },
    "lastname": {
      "type": "string"
    },
    "message": {
      "type": "string"
    },
    "subject": {
      "type": "string"
    },
    "roomId": {
      "type": "int64"
    },
    "passwordProtected": {
      "type": "boolean"
    },
    "password": {
      "type": "string"
    },
    "valid": {
      "type": "string",
      "enum": [
        "ONE_TIME",
        "PERIOD",
        "ENDLESS"
      ]
    },
    "validFrom": {
      "type": "string"
    },
    "validTo": {
      "type": "string"
    },
    "languageId": {
      "type": "int64"
    }
  },
  "name": "InvitationDTO"
}