Kendo-angular: [Scheduler] timezone of Event is correct in Day and week view but shifted to the next day for Month view

Created on 28 Nov 2018  路  8Comments  路  Source: telerik/kendo-angular

I'm submitting a...

  • Regression report
  • Bug report
  • Suggestion for improvement
  • Documentation issue

Current behavior

Expected behavior

Minimal reproduction of the problem with instructions

Environment

Package versions:


Browser:

  • Chrome (desktop) version XX
  • Chrome (Android) version XX
  • Chrome (iOS) version XX
  • Firefox version XX
  • Safari (desktop) version XX
  • Safari (iOS) version XX
  • IE version XX
  • Edge version XX

System:

  • TypeScript version: XX
  • Node version: XX
  • Platform:

Bug scheduler

All 8 comments

Please follow the issue template and provide a runnable sample that demonstrates the problem or sufficient information to replicate it.

Please follow the issue template and provide a runnable sample that demonstrates the problem or sufficient information to replicate it.
HTML FILE
[kendoSchedulerReactiveEditing]="schedulerService.createFormGroup"
style="height: 600px;">

        <kendo-scheduler-week-view [startTime]="startTime">
        </kendo-scheduler-week-view>

        <kendo-scheduler-month-view>
        </kendo-scheduler-month-view>

        <kendo-scheduler-timeline-view>
        </kendo-scheduler-timeline-view>

        <kendo-scheduler-agenda-view>
        </kendo-scheduler-agenda-view>

    </kendo-scheduler>

Component Of Scheduler is :

import { Component, OnInit, EventEmitter, Output } from '@angular/core';
import { Router, ActivatedRoute } from '@angular/router';
import { SchedulerEvent } from '@progress/kendo-angular-scheduler';
import { SchedulerService } from './scheduler.service';

@Component({
selector: 'app-scheduler',
templateUrl: 'scheduler.component.html'
})

export class SchedulerComponent implements OnInit {
public eventList: any;
sampleData: any = '';
events: SchedulerEvent[] = [];
constructor(private schedulerService: SchedulerService) {
}
public selectedDate: Date = new Date();
@Output() open: EventEmitter = new EventEmitter();
@Output() CancelEvent: EventEmitter = new EventEmitter();

ngOnInit() {
this.schedulerService.fetchEventList()
.subscribe(data => {
});
}
}

Service Used for the Data and binding is
import { Injectable } from '@angular/core';
import { HttpClient, HttpHeaders, HttpParams } from '@angular/common/http';
import { map } from 'rxjs/operators';
import { SchedulerEvent } from '@progress/kendo-angular-scheduler';
import { environment } from '../../environments/environment';
import { FormGroup, FormBuilder, Validators } from '@angular/forms';

@Injectable()
export class SchedulerService {
eventList: any = '';
events: SchedulerEvent[] = [];
public formGroup: FormGroup;

public selectedDate: Date = new Date();

constructor(private http: HttpClient,
private formBuilder: FormBuilder) {
this.createFormGroup = this.createFormGroup.bind(this);

}
// (args: CreateFormGroupArgs) => FormGroup
public createFormGroup(args: any): FormGroup {
const ev = args.event;
this.formGroup = this.formBuilder.group({
'id': args.isNew ? this.getNextId() : ev.id,
'start': [ev.start, Validators.required],
'end': [ev.end, Validators.required],
'startTimezone': [ev.startTimezone],
'endTimezone': [ev.endTimezone],
'isAllDay': ev.isAllDay,
'title': ev.title,
'description': ev.description,
'recurrenceRule': ev.recurrenceRule
});

return this.formGroup;

}
public getNextId(): number {
return this.events[this.events.length - 1].id + 1;
}
fetchEventList() {
const date = '11/19/2018';
const params = new HttpParams()
.set('filterByPersonalEvent', '')
.set('filterBySignUpRequired', '')
.set('filterByPaidOrFree', '')
.set('filterByEventStatus', '')
.set('filterByEventType', '')
.set('selectedTeam', '')
.set('SeasonTeamIds', '')
.set('filterByStartDate', date)
.set('filterByEndDate', '12/19/2018')
.set('SignedupEventOnly', '')
.set('OrgId', '10')
.set('UserTimezone', '345')
.set('IsMyAgenda', 'false')
.set('ProgramType', '')
.set('SeasonIds', '104')
.set('SportsId', '3')
.set('UserId', '0');

return this.http.get(`${environment.apiUrl}/api/Scheduler/GetEventList`, { params })
  .pipe(
    map(data => {
      this.eventList = data;
      // return this.eventList;
      const parseAdjust = (eventDate: string): Date => {
        const eventdate = new Date(eventDate);
        const userdate = eventdate;
        const timezone = userdate.getTimezoneOffset();
        const serverdate = new Date(userdate.setMinutes(userdate.getMinutes() + parseInt(timezone.toString(), 10)));
        return serverdate;
      };

      this.events = this.eventList.map(dataItem => (
        <SchedulerEvent>{
          id: dataItem.EventMetaId,
          startTimezone: null,
          start: parseAdjust(dataItem.StartDate),
          end: parseAdjust(dataItem.EndDate),
          endTimezone: null,
          isAllDay: dataItem.AllDayFlag,
          title: dataItem.EventTitle,
          eventMetaId: dataItem.EventMetaId,
          ownerOrganizationId: dataItem.OwnerOrganizationId,
          eventTitle: dataItem.EventTitle,
          eventStatusId: dataItem.EventStatusId,
          eventStatusName: dataItem.EventStatusName,
          eventTypeId: dataItem.EventTypeId,
          eventType: dataItem.EventType,
          eventTypeLookUpName: dataItem.EventTypeLookUpName,
          startDate: parseAdjust(dataItem.StartDate),
          endDate: parseAdjust(dataItem.EndDate),
          location: dataItem.Location,
          color: dataItem.Color,
          allDayFlag: dataItem.AllDayFlag,
          hasInvitees: dataItem.HasInvitees,
          ownerUserID: dataItem.OwnerUserID,
          recurrenceID: dataItem.RecurrenceID,
          recurrenceRule: dataItem.RecurrenceRule,
          recurrenceException: dataItem.RecurrenceException,
          allowAddEdit: dataItem.AllowAddEdit,
          eventMetaGuid: dataItem.EventMetaGuid,
          seasonTeamId: dataItem.SeasonTeamId,
          joinedCount: dataItem.JoinedCount,
          isPrivate: dataItem.IsPrivate,
          importanceLevel: dataItem.ImportanceLevel,
          teamRosterStatus: dataItem.TeamRosterStatus,
          seasonTeamName: dataItem.SeasonTeamName,
          feeAmount: dataItem.FeeAmount,
          isSignUpRequired: dataItem.IsSignUpRequired,
          opponent: dataItem.Opponent,
          gameScore: dataItem.GameScore,
          eventImage: dataItem.EventImage,
          isSeriesIndividual: dataItem.IsSeriesIndividual,
          seatsAvailable: dataItem.SeatsAvailable,
          isPublicEvent: dataItem.IsPublicEvent,
          maxMemberAllowed: dataItem.MaxMemberAllowed,
          signupedCount: dataItem.SignupedCount,
          isInvited: dataItem.IsInvited,
          organizationName: dataItem.OrganizationName,
          seasonName: dataItem.SeasonName,
          programTemplateId: dataItem.ProgramTemplateId,
          gameRosterStatus: dataItem.GameRosterStatus,
          seasonTeamLogo: dataItem.SeasonTeamLogo,
          startDateWithTimeZone: dataItem.StartDateWithTimeZone,
          endDateWithTimeZone: dataItem.EndDateWithTimeZone,
          eventTimeZone: dataItem.EventTimeZone,
          timeZoneDisplayName: dataItem.TimeZoneDisplayName,
          timeZoneShortName: dataItem.TimeZoneShortName,
          locationForMap: dataItem.LocationForMap,
          recurrenceDates: dataItem.RecurrenceDates
        }
      ));
    })
  );

}
}

The provided information is still not sufficient. Please provide some sample data that we can test with and specify the timezone. If the information cannot be shared here you can open a support ticket.

The provided information is still not sufficient. Please provide some sample data that we can test with and specify the timezone. If the information cannot be shared here you can open a support ticket.

SAMPLE DATA
[{
"EventMetaId" : 404248,
"OwnerOrganizationId" : 10,
"EventTitle" : "rec wed 5 times this is long name yes this is long",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 12,
"EventType" : "Game",
"EventTypeLookUpName" : null,
"StartDate" : "2018-10-24T18:45:00.000Z",
"EndDate" : "2018-10-24T19:45:00.000Z",
"Location" : null,
"Color" : "#880099",
"AllDayFlag" : false,
"HasInvitees" : false,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "FREQ=WEEKLY;COUNT=5;BYDAY=WE",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "1a203717-6820-44b0-b969-b3310f15ebb5",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404249,
"OwnerOrganizationId" : 10,
"EventTitle" : "profession team WEEKLY",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-10-31T18:45:00.000Z",
"EndDate" : "2018-10-31T19:45:00.000Z",
"Location" : "Florida (Miami, Florida)",
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "FREQ=WEEKLY;COUNT=5;BYDAY=WE",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "ab33f7dd-b241-4ed1-9fb0-d8a3c44d103a",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "https://somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404254,
"OwnerOrganizationId" : 10,
"EventTitle" : "Prof Year Type1",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-01T18:45:00.000Z",
"EndDate" : "2018-11-01T19:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "FREQ=YEARLY;COUNT=2;BYMONTH=11;BYMONTHDAY=1",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "d49c9b6b-f3c3-43fd-afa9-ad74a45fdbee",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "https://
somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404259,
"OwnerOrganizationId" : 10,
"EventTitle" : "Prof Week Type 2",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-01T18:45:00.000Z",
"EndDate" : "2018-11-01T19:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "FREQ=WEEKLY;COUNT=5;BYDAY=TH;WKST=SU",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "d7e7dc9f-0ccf-43e2-9336-a854ff64be46",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 25,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404319,
"OwnerOrganizationId" : 10,
"EventTitle" : "Mob Take Attend Filter1",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 5,
"EventType" : "Program",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-20T19:45:00.000Z",
"EndDate" : "2018-11-20T20:45:00.000Z",
"Location" : null,
"Color" : "#339999",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "d43cb16b-355f-4d56-b13b-9cb7acfc3551",
"SeasonTeamId" : null,
"JoinedCount" : 34,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "BenchMark",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 25,
"SignupedCount" : 41,
"IsInvited" : true,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 20375,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404320,
"OwnerOrganizationId" : 10,
"EventTitle" : "Take Attendance",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 5,
"EventType" : "Program",
"EventTypeLookUpName" : null,
"StartDate" : "2018-12-01T19:45:00.000Z",
"EndDate" : "2018-12-01T20:45:00.000Z",
"Location" : "Baneshwor Conference (Alabama)",
"Color" : "#339999",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "8ed430ec-b5df-4e08-ad10-0f6a4977b246",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "BenchMark",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : true,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404380,
"OwnerOrganizationId" : 10,
"EventTitle" : "Test Push iosx8vcdd",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-24T19:45:00.000Z",
"EndDate" : "2018-11-24T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "8923a0b0-df1e-4bb2-8a67-b138a3b5562b",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404382,
"OwnerOrganizationId" : 10,
"EventTitle" : "1title changed using postman",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-12-02T05:45:00.000Z",
"EndDate" : "2018-12-02T06:45:00.000Z",
"Location" : "Emirates Stadium (Buffalo, New York)",
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "ba1530bb-2f03-4f02-a107-4b5e599e02f1",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404383,
"OwnerOrganizationId" : 10,
"EventTitle" : "10_changed_mb_Event_edit_check",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-25T19:45:00.000Z",
"EndDate" : "2018-11-25T21:45:00.000Z",
"Location" : "Lalitpur Party Venue (Saskatchewan)",
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "f66d3242-0fda-41b2-91a5-8c45084f0b35",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404405,
"OwnerOrganizationId" : 10,
"EventTitle" : "prog 1a",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 5,
"EventType" : "Program",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-19T19:45:00.000Z",
"EndDate" : "2018-11-19T20:45:00.000Z",
"Location" : "Baneshwor Conference (Alabama)",
"Color" : "#339999",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "17fdb274-5f25-4da8-abaa-e26701b83531",
"SeasonTeamId" : null,
"JoinedCount" : 8,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "Evaluation",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 10,
"IsInvited" : true,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 20375,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404407,
"OwnerOrganizationId" : 10,
"EventTitle" : "cash check",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-19T19:45:00.000Z",
"EndDate" : "2018-11-19T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "4e444e7b-3801-46a7-863f-dbf8a21bb87d",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 1,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404408,
"OwnerOrganizationId" : 10,
"EventTitle" : "Nov 23 credit card",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-23T19:45:00.000Z",
"EndDate" : "2018-11-23T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "a35e4e81-67d8-4936-a43d-fd658326ee48",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 1,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404409,
"OwnerOrganizationId" : 10,
"EventTitle" : "nov 23 ref and set",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-23T19:45:00.000Z",
"EndDate" : "2018-11-23T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "698c5db5-6862-4549-bc66-db7b89f7dc39",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 1,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404416,
"OwnerOrganizationId" : 10,
"EventTitle" : "cc - r and s",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-30T19:45:00.000Z",
"EndDate" : "2018-11-30T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "92dc038b-bec8-462b-ba99-94c087165336",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 1,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404419,
"OwnerOrganizationId" : 10,
"EventTitle" : "cc - s and r",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-30T19:45:00.000Z",
"EndDate" : "2018-11-30T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "74cb556f-618b-46a7-a196-fe120f89d82d",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 1,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404420,
"OwnerOrganizationId" : 10,
"EventTitle" : "pay test mobile",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-19T19:45:00.000Z",
"EndDate" : "2018-11-19T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "e2b4e136-575c-48fd-bb26-425baef080db",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 2,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404421,
"OwnerOrganizationId" : 10,
"EventTitle" : "pay2",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-19T19:45:00.000Z",
"EndDate" : "2018-11-19T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "2c76f732-7ffe-4d4e-a5f1-6fa8878b4db7",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 1,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404423,
"OwnerOrganizationId" : 10,
"EventTitle" : "ttt",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-21T19:45:00.000Z",
"EndDate" : "2018-11-21T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "23d330b8-f14a-445c-80ff-2aa4cdb09a33",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404424,
"OwnerOrganizationId" : 10,
"EventTitle" : "zzzzz",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-21T19:45:00.000Z",
"EndDate" : "2018-11-21T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "f3495e1f-3c74-47b1-9ee3-30f06e3ca271",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404426,
"OwnerOrganizationId" : 10,
"EventTitle" : "cash",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-27T19:45:00.000Z",
"EndDate" : "2018-11-27T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "e59c7ddc-5132-47ad-b46f-697c4f4ac64c",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 1,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404427,
"OwnerOrganizationId" : 10,
"EventTitle" : "yyyyy",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-20T19:45:00.000Z",
"EndDate" : "2018-11-20T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "4d1be478-06b3-40c0-aa14-96d88f3f71ca",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404428,
"OwnerOrganizationId" : 10,
"EventTitle" : "Team ev 91",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-22T19:45:00.000Z",
"EndDate" : "2018-11-22T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "ed50f3ae-6a72-40ce-901e-5a2cda409d82",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "op91",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 27,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 20375,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "https://somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404429,
"OwnerOrganizationId" : 10,
"EventTitle" : "Team ev 91 b",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-22T19:45:00.000Z",
"EndDate" : "2018-11-22T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "db28f3ee-8148-4311-be45-81f2da2a3c65",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404496,
"OwnerOrganizationId" : 10,
"EventTitle" : "Pres Cup 75",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 12,
"EventType" : "Game",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-22T19:45:00.000Z",
"EndDate" : "2018-11-22T20:45:00.000Z",
"Location" : null,
"Color" : "#880099",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "4b9096f2-12ae-4260-85d1-1cd11fc016b0",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : false,
"ProgramTypeName" : "",
"Opponent" : "O11",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : "Approved",
"SeasonTeamLogo" : "https://
somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404497,
"OwnerOrganizationId" : 10,
"EventTitle" : "RP cup 2",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 12,
"EventType" : "Game",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-22T19:45:00.000Z",
"EndDate" : "2018-11-22T20:45:00.000Z",
"Location" : null,
"Color" : "#880099",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "01f5cd5a-62b9-4e60-ba14-4881d40d7aa8",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : false,
"ProgramTypeName" : "",
"Opponent" : "BKT",
"GameScore" : "10 - 0",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : "Approved",
"SeasonTeamLogo" : "https://somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404502,
"OwnerOrganizationId" : 10,
"EventTitle" : "test game event",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 12,
"EventType" : "Game",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-23T19:45:00.000Z",
"EndDate" : "2018-11-23T20:45:00.000Z",
"Location" : null,
"Color" : "#880099",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "51f2963c-7636-48a1-8950-7d4857eed79b",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : false,
"ProgramTypeName" : "",
"Opponent" : "atlanta",
"GameScore" : "7 - 0",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : "Approved",
"SeasonTeamLogo" : "https://
somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404505,
"OwnerOrganizationId" : 10,
"EventTitle" : "new event 2",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 12,
"EventType" : "Game",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-23T19:45:00.000Z",
"EndDate" : "2018-11-23T20:45:00.000Z",
"Location" : null,
"Color" : "#880099",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "57ceecec-6ed1-4b52-aeb8-9722ca9b85b1",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : false,
"ProgramTypeName" : "",
"Opponent" : "testo",
"GameScore" : "5 - 0",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : "Saved",
"SeasonTeamLogo" : "https://somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404509,
"OwnerOrganizationId" : 10,
"EventTitle" : "new event 4",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 12,
"EventType" : "Game",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-23T19:45:00.000Z",
"EndDate" : "2018-11-23T20:45:00.000Z",
"Location" : null,
"Color" : "#880099",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "9f646c17-a841-440e-a47b-a2eac2a6a06e",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : false,
"ProgramTypeName" : "",
"Opponent" : "op 4",
"GameScore" : "10 - 0",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : "Approved",
"SeasonTeamLogo" : "https://
somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404514,
"OwnerOrganizationId" : 10,
"EventTitle" : "new 5",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 12,
"EventType" : "Game",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-23T19:45:00.000Z",
"EndDate" : "2018-11-23T20:45:00.000Z",
"Location" : null,
"Color" : "#880099",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "558c3555-de19-4625-a9b3-eeb1832dd39f",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : false,
"ProgramTypeName" : "",
"Opponent" : "o5",
"GameScore" : "10 - 0",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : "Approved",
"SeasonTeamLogo" : "https://somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404515,
"OwnerOrganizationId" : 10,
"EventTitle" : "new 6",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 12,
"EventType" : "Game",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-23T19:45:00.000Z",
"EndDate" : "2018-11-23T20:45:00.000Z",
"Location" : null,
"Color" : "#880099",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "e7e726c8-a2c3-4c71-a85b-e18e119277bd",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : false,
"ProgramTypeName" : "",
"Opponent" : "o6",
"GameScore" : "15 - 0",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : "Approved",
"SeasonTeamLogo" : "https://
somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404516,
"OwnerOrganizationId" : 10,
"EventTitle" : "new 7",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 12,
"EventType" : "Game",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-23T19:45:00.000Z",
"EndDate" : "2018-11-23T20:45:00.000Z",
"Location" : null,
"Color" : "#880099",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "63322309-ac7b-4abb-be05-ae6efa013d8b",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : false,
"ProgramTypeName" : "",
"Opponent" : "o7",
"GameScore" : "15 - 0",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : "Approved",
"SeasonTeamLogo" : "https://somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404517,
"OwnerOrganizationId" : 10,
"EventTitle" : "new 8",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 12,
"EventType" : "Game",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-23T19:45:00.000Z",
"EndDate" : "2018-11-23T20:45:00.000Z",
"Location" : null,
"Color" : "#880099",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "19f13ee6-9146-40a9-9622-02bcbc2ab76b",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : false,
"ProgramTypeName" : "",
"Opponent" : "o8",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : "Approved",
"SeasonTeamLogo" : "https://
somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404518,
"OwnerOrganizationId" : 10,
"EventTitle" : "new 9",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 12,
"EventType" : "Game",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-23T19:45:00.000Z",
"EndDate" : "2018-11-23T20:45:00.000Z",
"Location" : null,
"Color" : "#880099",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "e0615f2f-a3e0-4018-9951-58caadc5b3fc",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : false,
"ProgramTypeName" : "",
"Opponent" : "o9",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : "Approved",
"SeasonTeamLogo" : "https://somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 404519,
"OwnerOrganizationId" : 10,
"EventTitle" : "new 10",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 12,
"EventType" : "Game",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-23T19:45:00.000Z",
"EndDate" : "2018-11-23T20:45:00.000Z",
"Location" : null,
"Color" : "#880099",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "b568141f-e2a8-4a27-b038-d270f804e883",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : false,
"ProgramTypeName" : "",
"Opponent" : "o10",
"GameScore" : "15 - 0",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : "Approved",
"SeasonTeamLogo" : "https://
somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 414527,
"OwnerOrganizationId" : 10,
"EventTitle" : "test",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-27T19:45:00.000Z",
"EndDate" : "2018-11-27T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : false,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : null,
"RecurrenceException" : null,
"AllowAddEdit" : true,
"EventMetaGuid" : "30a7154f-a7f6-4185-b805-881c957c2e89",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 414528,
"OwnerOrganizationId" : 10,
"EventTitle" : "testtt",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-27T19:45:00.000Z",
"EndDate" : "2018-11-27T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : false,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "FREQ=WEEKLY;INTERVAL=2;BYDAY=TU",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "aa309934-8e50-47c6-81b5-03c0c238734d",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 415527,
"OwnerOrganizationId" : 10,
"EventTitle" : "survey 4",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-27T19:45:00.000Z",
"EndDate" : "2018-11-27T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "3f4978d5-8ec7-4ba0-9aa5-15d5d9c89ce3",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 415528,
"OwnerOrganizationId" : 10,
"EventTitle" : "survey 3",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-27T19:45:00.000Z",
"EndDate" : "2018-11-27T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "a92c2bf2-10f1-4b8e-89a1-9003110abc27",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 1,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 415540,
"OwnerOrganizationId" : 10,
"EventTitle" : "Location events",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-28T19:45:00.000Z",
"EndDate" : "2018-11-28T20:45:00.000Z",
"Location" : "Dashrath Stadium (Kathmandu, Alabama)",
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : false,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "89a04377-5bfd-4d8f-ba2d-570ca71ef63b",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 415541,
"OwnerOrganizationId" : 10,
"EventTitle" : "kpm prog 1",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 5,
"EventType" : "Program",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-28T19:45:00.000Z",
"EndDate" : "2018-11-28T20:45:00.000Z",
"Location" : null,
"Color" : "#339999",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "93ef5fa8-b613-41a6-a1f8-5c364404b951",
"SeasonTeamId" : null,
"JoinedCount" : 8,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "BenchMark",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 10,
"IsInvited" : true,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 23417,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 415542,
"OwnerOrganizationId" : 10,
"EventTitle" : "hello prog kpm1",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 5,
"EventType" : "Program",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-28T19:45:00.000Z",
"EndDate" : "2018-11-28T20:45:00.000Z",
"Location" : null,
"Color" : "#339999",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "ea5d3323-b6d5-43ac-a1fd-74a8e638cd5e",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "BenchMark",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : true,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 23418,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 415544,
"OwnerOrganizationId" : 10,
"EventTitle" : "normal team e1",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-26T19:45:00.000Z",
"EndDate" : "2018-11-26T20:45:00.000Z",
"Location" : "Baneshwor Conference (Alabama)",
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "9d45316e-2afd-43a5-bb36-42c33837d213",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "https://somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 415545,
"OwnerOrganizationId" : 10,
"EventTitle" : "rec week t1",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-26T19:45:00.000Z",
"EndDate" : "2018-11-26T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "FREQ=WEEKLY;COUNT=2;BYDAY=MO",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "d40436c0-df7d-4185-9279-f666b2baee2e",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "https://
somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 415546,
"OwnerOrganizationId" : 10,
"EventTitle" : "new 11",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 12,
"EventType" : "Game",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-28T19:45:00.000Z",
"EndDate" : "2018-11-28T20:45:00.000Z",
"Location" : null,
"Color" : "#880099",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "8c19be76-933a-44bf-9624-76134b9e9b51",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : false,
"ProgramTypeName" : "",
"Opponent" : "o11",
"GameScore" : "12 - 0",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : "Approved",
"SeasonTeamLogo" : "https://somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 415547,
"OwnerOrganizationId" : 10,
"EventTitle" : "rec week t1b",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-26T19:45:00.000Z",
"EndDate" : "2018-11-26T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "FREQ=WEEKLY;COUNT=2;BYDAY=MO",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "353dd893-cad9-4588-84b3-990d3ca405b5",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 425516,
"OwnerOrganizationId" : 10,
"EventTitle" : "e5",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-29T19:45:00.000Z",
"EndDate" : "2018-11-29T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "f3b1e351-2bd6-4e75-b481-b2340d85dfff",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 25,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "https://
somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 425517,
"OwnerOrganizationId" : 10,
"EventTitle" : "e6",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-29T19:45:00.000Z",
"EndDate" : "2018-11-29T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "c5feeafc-020b-4983-bc6c-98cfd8563522",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 25,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "https://somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 425518,
"OwnerOrganizationId" : 10,
"EventTitle" : "e7",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-28T19:45:00.000Z",
"EndDate" : "2018-11-28T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "1add1081-98dc-4cad-8d51-b7cf4f755da8",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 0,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "https://
somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 425521,
"OwnerOrganizationId" : 10,
"EventTitle" : "E12",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-29T19:45:00.000Z",
"EndDate" : "2018-11-29T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "462ac21c-59f9-4567-a64e-df6b19fda81b",
"SeasonTeamId" : 215,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : "A",
"SeasonTeamName" : "A Professional Team",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 25,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "https://**somesite.com/SeasonTeam/215/roster.jpg",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}, {
"EventMetaId" : 425522,
"OwnerOrganizationId" : 10,
"EventTitle" : "d11",
"EventStatusId" : 1,
"EventStatusName" : "Scheduled",
"EventTypeId" : 4,
"EventType" : "Class",
"EventTypeLookUpName" : null,
"StartDate" : "2018-11-30T19:45:00.000Z",
"EndDate" : "2018-11-30T20:45:00.000Z",
"Location" : null,
"Color" : "#ff0000",
"AllDayFlag" : false,
"HasInvitees" : true,
"OwnerUserID" : 1517,
"RecurrenceID" : 0,
"RecurrenceRule" : "",
"RecurrenceException" : "",
"AllowAddEdit" : true,
"EventMetaGuid" : "d1aff094-de9f-4b40-ab8e-38699f576add",
"SeasonTeamId" : null,
"JoinedCount" : 0,
"IsPrivate" : false,
"ImportanceLevel" : " ",
"TeamRosterStatus" : " ",
"SeasonTeamName" : "",
"FeeAmount" : null,
"IsSignUpRequired" : true,
"ProgramTypeName" : "",
"Opponent" : "",
"GameScore" : " - ",
"EventImage" : null,
"IsSeriesIndividual" : false,
"SeatsAvailable" : null,
"IsPublicEvent" : false,
"MaxMemberAllowed" : 100,
"SignupedCount" : 10,
"IsInvited" : false,
"OrganizationName" : "FC DALLAS",
"SeasonName" : "ACADEMY 2017-2018",
"ProgramTemplateId" : 0,
"GameRosterStatus" : null,
"SeasonTeamLogo" : "",
"StartDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EndDateWithTimeZone" : "0001-01-01T00:00:00.000Z",
"EventTimeZone" : "Central Standard Time",
"TimeZoneDisplayName" : null,
"TimeZoneShortName" : null,
"LocationForMap" : null,
"RecurrenceDates" : null
}
]

I am still unable to replicate the problem. Please check this example and let me know if the problem can be reproduced on your side. If yes, specify for which events and in which timezone is the scheduler used. If not, modify the sample to demonstrate the problem.

not

dayview
in this day view the eventTitle =cc - r and s has been shown in current time 7:45 to 8:45 on date 11/30/2018
monthview
in this moth view the eventTitle =cc - r and s has been shown on date 12/1/2018 next day
my current TimeZone is : UTC +5:45

Thanks for clarifying. I was able to replicate the problem with the specified timezone. We will look into it.

Was this page helpful?
0 / 5 - 0 ratings