Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bonustrack/steemscript
An open JSON standard for Steem based apps.
https://github.com/bonustrack/steemscript
metadata steem
Last synced: 15 days ago
JSON representation
An open JSON standard for Steem based apps.
- Host: GitHub
- URL: https://github.com/bonustrack/steemscript
- Owner: bonustrack
- Created: 2016-08-29T15:02:04.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-04-18T13:51:14.000Z (almost 5 years ago)
- Last Synced: 2024-10-18T07:23:45.554Z (3 months ago)
- Topics: metadata, steem
- Homepage:
- Size: 37.1 KB
- Stars: 16
- Watchers: 4
- Forks: 21
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# steemscript
An open JSON standard for Steem based apps.
### Account json_metadata
- `name`: max. length 20 chars.
- `about`: max. length 160 chars.
- `location`: max. length 30 chars.
- `website`: valid `https://` URL with max. length 100 chars.
- `profile_image`: avatar image URL, preferably square-cropped with a minimum size of 230 x 230 pixels.
- `cover_image`: cover image URL.```json
{
"profile": {
"name": "Ned Scott",
"about": "CEO and co-founder at Steemit",
"location": "New York",
"website": "https://steem.io/",
"profile_image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTgUknIiTNArR2xcz4XCyIMDRdmjAJV3JdJb0VspRuVfyYwbjb7",
"cover_image": "https://steemit.com/images/steemit.png"
}
}
```