Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| author | string | |
| x | integer | |
| y | integer | |
| w | integer | |
| h | integer | |
| _content | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flickr/refs/heads/main/json-schema/flickr-note-schema.json",
"title": "Note",
"description": "Note schema from Flickr API",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "52345678901"
},
"author": {
"type": "string",
"example": "12345678@N00"
},
"x": {
"type": "integer",
"example": 320
},
"y": {
"type": "integer",
"example": 240
},
"w": {
"type": "integer",
"example": 100
},
"h": {
"type": "integer",
"example": 100
},
"_content": {
"type": "string",
"example": "100"
}
}
}