- Get started
- Structure
- Body Elements
- Objects
A Connected Web Source File is a JSON or JSONP encoded file which contains the information of the source of a Feed file. Hence it always requires to be linked from a Feed file.
It's necessary to deliver more accurate information about the source of a Feed file.
Optional parameters are indicated as "(Optional)"
Parameter | Meaning | Notes |
---|---|---|
type (string) | The type of file. |
|
cwversion (float) | The version of the Connected Web format. |
|
name (string) | The name of the source. |
|
description (string) (optional) | The description of the source. |
|
keywords (array) (optional) | A list of keywords which identifies the source. |
|
url (string) (optional) | The url of the homepage of the source. |
|
language (string) | The language of the source. |
|
img (image_object) (optional) | The logo / image of the source. |
|
cover (image_object) (optional) | The cover image of the source. |
|
{
"type": "source",
"cwversion": 1.1,
"name": "ConnectedWeb",
"description": "Connected Web is a web syndication format focused on high quality and cross device content sharing.",
"keywords": "connected, web, feed, rss, atom, syndication, format",
"url": "http://showcase.connectedweb.org",
"img": {
"url": "http://fbwcdn.com/image/main/connectedweb/logo.jpg",
"width": 2000,
"height": 2000,
"type": "image/jpeg"
},
"cover": {
"url": "http://fbwcdn.com/image/main/connectedweb/cover.jpg",
"width": 2000,
"height": 2000,
"type": "image/jpeg"
}
}