Fachschaft07 / fs-rest

REST interface for several services
6 stars 1 forks source link

Timetable Format #26

Closed FHellmann closed 8 years ago

FHellmann commented 9 years ago

See

FHellmann commented 9 years ago

The ZPA will get a Rest-API!

FHellmann commented 9 years ago

@jqbbq & @Reischi: What do you think about this? Did I forgot something or is something wrong?

JSON-Format from our Rest to the Client

groups & placements would be empty if there are no placements.

[
    {
        "module" : "Software Architektur",
        "moduleId" : "softwarearchitektur",
        "teacher" : {
            "id" : "nischwitzalfred",
            "lastName" : "Nischwitz",
            "firstName" : "Alfred",
            "title" : "Prof. Dr."
        },
        "groups" : [
            {
                "members" : [
                    "Max Mustermann",
                    "Susi Mustermann"
                ]
            },
            {
                ...
            }
        ],
        "lectures" : [
            {
                "hour" : 8,
                "minute" : 15,
                "day" : "MONDAY",
                "room" : "R0.007",
                "comment" : ""
            },
            {
                ...
            }
        ],
        "placement" : [
            {
                "hour" : 15,
                "minute" : 0,
                "day" : "WEDNESDAY",
                "room" : "R2.023",
                "comment" : "14 tägig"
            },
            {
                ...
            }
        ]
    },
    {
        ...
    }
]
lucaspataro commented 9 years ago

Looks good!