Sha256: 5d54b0640d1f83296134b2de0569e668272dd2ba0dd2cfe3ebf648ac6c453af4
Contents?: true
Size: 746 Bytes
Versions: 3
Compression:
Stored size: 746 Bytes
Contents
Feature: Translate facebook to schema.org/Person/User + getfetcher.net/Item In order to send a standardized-properties form of the facebook information As a developer I want to be able to convert from Facebook API to schema.org based vocabulary Scenario: Converting a json facebook user into a json schema Given the facebook user: """ { "name": "Tomás Mehdi", "id": "735576666" } """ When I convert it into schema.org/Person/User Then I should have user: """ { "type": [ "http://schema.org/Person/User" ], "properties": { "additionalType": [ "http://getfetcher.net/Item" ], "Item#id": [ "735576666" ], "name": [ "Tomás Mehdi" ] } } """
Version data entries
3 entries across 3 versions & 1 rubygems