| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Report | Report | SpaceModule | TwitterX |
| (2) Space | Space | SpaceModule | TwitterX |
| (3) SpaceParticipant | SpaceParticipant | SpaceModule | TwitterX |
| (4) Tweet | Tweet | TweetModule | TwitterX |
| (5) UserAccount | UserAccount | UserAccountModule | TwitterX |
| Report | SpaceModule | TwitterX |
| Property | Type | Entity | Reference | Module |
| (1) Category | STRING | Report | ||
| (2) CreatedAt | STRING | Report | ||
| (3) Description | STRING | Report | ||
| (4) ReportedTweet | LONG | Report | Tweet | TweetModule |
| (5) ReportedUser | LONG | Report | UserAccount | UserAccountModule |
| (6) ReporterUser | LONG | Report | UserAccount | UserAccountModule |
| (7) ResolvedAt | STRING | Report | ||
| (8) ResolverUser | LONG | Report | UserAccount | UserAccountModule |
| (9) Status | STRING | Report |
Example:
final Report report = (Report) invokeModule(SPACE_MODULE + "/report/" + id, Report.class);| Space | SpaceModule | TwitterX |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | STRING | Space | ||
| (2) CreatorUser | LONG | Space | UserAccount | UserAccountModule |
| (3) Description | STRING | Space | ||
| (4) EndedAt | STRING | Space | ||
| (5) IsRecorded | BOOL | Space | ||
| (6) Language | STRING | Space | ||
| (7) ScheduledStart | STRING | Space | ||
| (8) StartedAt | STRING | Space | ||
| (9) Title | STRING | Space |
Example:
final Space space = (Space) invokeModule(SPACE_MODULE + "/space/" + id, Space.class);| SpaceParticipant | SpaceModule | TwitterX |
| Property | Type | Entity | Reference | Module |
| (1) JoinedAt | STRING | SpaceParticipant | ||
| (2) LeftAt | STRING | SpaceParticipant | ||
| (3) Role | STRING | SpaceParticipant | ||
| (4) Space | LONG | SpaceParticipant | Space | SpaceModule |
| (5) User | LONG | SpaceParticipant | UserAccount | UserAccountModule |
Example:
final SpaceParticipant spaceparticipant = (SpaceParticipant) invokeModule(SPACE_MODULE + "/spaceparticipant/" + id, SpaceParticipant.class);| Contact | Donate | Imprint |