-
Notifications
You must be signed in to change notification settings - Fork 4
/
microblogging.xml
114 lines (93 loc) · 3.01 KB
/
microblogging.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<alps>
<doc>
The example profile here contains details on customizing any representation media type for a specific
application domain: Micro-blogging. It contains descriptions of valid data and transition values that
can appear within resource representations. This document is presented as a complete blueprint for
implementing a compliant client or server that supports the basic features of the target application
domain (Micro-blogging).
</doc>
<link rel="help" href="http://amundsen.com/hypermedia/profiles/" />
<!-- data elements -->
<descriptor id="date-time" type="semantic">
<doc>
Contains the UTC date-time the message was posted. When present, it SHOULD be valid per RFC3339.
</doc>
</descriptor>
<descriptor id="description" type="semantic">
<doc>
Contains the text description of a user.
</doc>
</descriptor>
<descriptor id="xx" type="semantic">
<doc>
</doc>
</descriptor>
<!-- containers -->
<descriptor id="all" type="semantic">
<doc>
A list representation of unfiltered results.
</doc>
<descriptor href="#users" />
<descriptor href="#messages" />
</descriptor>
<descriptor id="friends" type="semantic">
<doc>
A list representation.
</doc>
<descriptor href="#users" />
<descriptor href="#messages" />
</descriptor>
<descriptor id="followers" type="semantic">
<doc>
A list representation of all the users from the designated user's friends list.
</doc>
<descriptor href="#users" />
</descriptor>
<descriptor id="me" type="semantic">
<doc>
Contains the list of messages posted by the designated user or contains
the designated user's profile.
</doc>
<descriptor href="#users" />
<descriptor href="#messages" />
</descriptor>
<descriptor id="mentions" type="semantic">
<doc>
A list representation of all the messages that mention the designated user
</doc>
<descriptor href="#messages" />
</descriptor>
<descriptor id="message" type="semantic">
<doc>
A representation of a single message.
</doc>
<descriptor href="#user-text" />
<descriptor href="#user-link" />
<descriptor href="#message-text" />
<descriptor href="#message-link" />
<descriptor href="#user-image" />
<descriptor href="#date-time" />
</descriptor>
<!-- transitions -->
<descriptor id="message-post" type="unsafe">
<doc>
A link template to add a new message to the system by the designated (logged-in) user.
</doc>
<descriptor href="#message-text" />
</descriptor>
<descriptor id="message-reply" type="unsafe">
<doc>
A link template to reply to an existing message.
</doc>
<descriptor href="#user-text" name="user">
<doc>
the author of the post to be replied-to
</doc>
</descriptor>
<descriptor href="#message-text" name="message"/>
</descriptor>
<descriptor id="xx" type="semantic">
<doc>
</doc>
</descriptor>
</alps>