SHARE
TWEET
Untitled
a guest
Jan 13th, 2016
49
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- {
- "title": "Written Article",
- "type": "object",
- "properties": {
- "id": {
- "title": "Article Identifier",
- "type": "id"
- },
- "title": {
- "title": "Article Title",
- "type": "field"
- },
- "authorId": {
- "type": "field"
- },
- "imgData": {
- "title": "Article Illustration (small)",
- "type": "image",
- "media": {
- "binaryEncoding": "base64",
- "type": "image/png"
- }
- }
- },
- "required" : ["id", "title", "authorId"],
- "links": [
- {
- "rel": "full",
- "href": "{id}"
- },
- {
- "rel": "author",
- "href": "/user?id={authorId}"
- }
- ]
- }
- ############################## OR THIS ##################################
- {
- "title": "News post",
- ...
- "links": [
- {
- "rel": "comments",
- "href": "/{id}/comments"
- },
- {
- "rel": "search",
- "href": "/{id}/comments",
- "schema": {
- "type": "object",
- "properties": {
- "searchTerm": {
- "type": "string"
- },
- "itemsPerPage": {
- "type": "integer",
- "minimum": 10,
- "multipleOf": 10,
- "default": 20
- }
- },
- "required": ["searchTerm"]
- }
- },
- {
- "title": "Post a comment",
- "rel": "create",
- "href": "/{id}/comments",
- "method": "POST",
- "schema": {
- "type": "object",
- "properties": {
- "message": {
- "type": "string"
- }
- },
- "required": ["message"]
- }
- }
- ]
- }
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.
