Use the properties property of the stream attachment object. This takes a dictionary of key/value pairs, where the values can themselves be an object consisting of text and href properties. E.g. attach something like the following onto your stream attachment object in JavaScript:
var properties = {
"Rating" : {
"text" : "1797 points",
"href":"http://apps.facebook.com/yourappurl/"
},
"Leaderboard position":{
"text":"192nd",
"href":"http://apps.facebook.com/yourappurl/"
}
}
Will display the text "Rating: 1797 points" and "Leaderboard position : 192nd" on separate lines, with the "Rating" and Leaderboard position" text in light grey and the "1792 points" and "192nd" both as blue hyperlinks.
There are character of 50 characters max for the "key" part (i.e. the "Leaderboard position" segment) and 70 characters for the "value" part.