All Projects → reelyactive → Json Silo

reelyactive / Json Silo

Licence: mit
Contextual data silo for the IoT and Smart Spaces. We believe in an open Internet of Things.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Json Silo

Jsonld
JSON-LD processor for PHP
Stars: ✭ 280 (+2700%)
Mutual labels:  schema-org, json-ld
Schema Generator
PHP Model Scaffolding from Schema.org and other RDF vocabularies
Stars: ✭ 379 (+3690%)
Mutual labels:  schema-org, json-ld
React Structured Data
React Structured Data provides an easy way to add structured data to your React apps
Stars: ✭ 120 (+1100%)
Mutual labels:  schema-org, json-ld
schema-dot-org
Validated structured data for websites
Stars: ✭ 42 (+320%)
Mutual labels:  schema-org, json-ld
schemaorg-jsd
JSON Schema validation for JSON-LD files using Schema.org vocabulary.
Stars: ✭ 16 (+60%)
Mutual labels:  schema-org, json-ld
Structured Data Testing Tool
A library and command line tool to help inspect and test for Structured Data.
Stars: ✭ 34 (+240%)
Mutual labels:  schema-org, json-ld
ddi-xslt
XSLT transformations for DDI XML-files to other formats
Stars: ✭ 21 (+110%)
Mutual labels:  schema-org, json-ld
Schema.net
Schema.org objects turned into strongly typed C# POCO classes for use in .NET. All classes can be serialized into JSON/JSON-LD and XML, typically used to represent structured data in the head section of html page.
Stars: ✭ 336 (+3260%)
Mutual labels:  schema-org, json-ld
php-schema.org-mapping
A fluent interface to create mappings using Schema.org for Microdata and JSON-LD.
Stars: ✭ 31 (+210%)
Mutual labels:  schema-org, json-ld
seomate
SEO, mate! It's important. That's why SEOMate provides the tools you need to craft all the meta tags, sitemaps and JSON-LD microdata you need - in one highly configurable, open and friendly package - with a super-light footprint.
Stars: ✭ 31 (+210%)
Mutual labels:  schema-org, json-ld
ngx-json-ld
📝 A small component to easily bind JSON-LD schema to Angular templates.
Stars: ✭ 29 (+190%)
Mutual labels:  schema-org, json-ld
Schema Dts
JSON-LD TypeScript types for Schema.org vocabulary
Stars: ✭ 338 (+3280%)
Mutual labels:  schema-org, json-ld
WG3-MetadataSpecifications
WG3 Metadata Specification
Stars: ✭ 25 (+150%)
Mutual labels:  schema-org, json-ld
React Schemaorg
Type-checked Schema.org JSON-LD for React
Stars: ✭ 262 (+2520%)
Mutual labels:  schema-org, json-ld
Hugo Theme Meme
You can’t spell aWEsoME without MEME! 😝
Stars: ✭ 459 (+4490%)
Mutual labels:  json-ld
Admin
A beautiful and fully-featured administration interface builder for hypermedia APIs
Stars: ✭ 335 (+3250%)
Mutual labels:  json-ld
Api Platform
Create REST and GraphQL APIs, scaffold Jamstack webapps, stream changes in real-time.
Stars: ✭ 7,144 (+71340%)
Mutual labels:  json-ld
Schemaorg
Schema.org - schemas and supporting software
Stars: ✭ 4,372 (+43620%)
Mutual labels:  json-ld
The Seo Framework
The SEO Framework WordPress plugin.
Stars: ✭ 329 (+3190%)
Mutual labels:  schema-org
Ultimate Metatags
A large snippet for your page's <head> that includes all the meta tags you'll need for OPTIMAL sharing and SEO. Extensive work has been put into ensuring you have the optimal images for the most important social media platforms.
Stars: ✭ 24 (+140%)
Mutual labels:  schema-org

json-silo

Installation

npm install json-silo

Hello json-silo!

npm start

Browse to localhost:3000/json-silo/ for the story creation page.

REST API

GET /stories/{id}

Retrieve the story with the given id.

Example request

Method Route Content-Type
GET /stories/barnowl application/json

Example response

{
  "_meta": {
    "message": "ok",
    "statusCode": 200
  },
  "_links": {
    "self": {
      "href": "http://localhost:3000/stories/barnowl"
    }
  },
  "stories": {
    "barnowl": {
      "@context": {
        "schema": "https://schema.org/"
      },
      "@graph": [
        {
          "@id": "person",
          "@type": "schema:Person",
          "schema:givenName": "barnowl"
        }
      ]
    }
  }
}

POST /stories

Create a story.

Example request

Method Route Content-Type
POST /stories application/json
{
  "@context": {
    "schema": "https://schema.org/"
  },
  "@graph": [
    {
      "@id": "person",
      "@type": "schema:Person",
      "schema:givenName": "barnowl"
    }
  ]
}

Example response

{
  "_meta": {
    "message": "ok",
    "statusCode": 200
  },
  "_links": {
    "self": {
      "href": "http://localhost:3000/stories"
    }
  },
  "stories": {
    "barnowl": {
      "@context": {
        "schema": "https://schema.org/"
      },
      "@graph": [
        {
          "@id": "person",
          "@type": "schema:Person",
          "schema:givenName": "barnowl"
        }
      ]
    }
  }
}

What's in a name?

The json-silo is exactly that: a data silo for JSON! Simple enough, right? So why does it have a grain silo with a hockey mask for a mascot?

At reelyActive we've always been outspoken about the need for an open Internet of Things as opposed to a bunch of siloed applications. In 2013, on social media we recycled the "More cowbell" meme with an image of Will Ferrell banging on a grain silo with the caption "The Internet of Things does not need More Silo". When it came time to create a mascot for the json-silo, we decided to start with that grain silo.

Now, how do you visually represent JSON in association with a grain silo? Sure, we could have slapped the official JSON logo on that silo, but where's the fun in that? Instead, for those of us who grew up in the eighties, hearing "JSON" out of context (pun intended) evokes the image of Jason Voorhees from the Friday the 13th series of films, specifically the iconic hockey goaltender mask he wore. Not only does that "Jason" mask make for a silly visual pun, it also gives a nod to our hometown heritage, where Jacques Plante of the Montreal Canadiens was the first goaltender to wear such a mask full-time, which would later become standard practice. We'd be pleased to see the use of personal data lockers become standard practice too.

json-silo logo

What's next?

json-silo v1.0.0 was released in August 2019, superseding all earlier versions, the latest of which remains available in the release-0.5 branch and as [email protected] on npm.

This is an active work in progress. Expect regular changes and updates, as well as improved documentation! If you're developing with json-silo check out:

License

MIT License

Copyright (c) 2014-2019 reelyActive

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].