COALA IP.
Javascript implementation forInstall
This project is available through npm. To install run
> npm install coalaip --save
Linked Metadata
This project provides tools for structuring metadata, using schema definitions with the ability to set arbitrary properties on type instances. Metadata is translatable to linked-data formats (e.g. IPLD) for persistence to different databases/storage layers.
Module Overview
Core
This module contains the types outlined in the specification. Additional types have been included because types in the specification inherit from them or certain properties expect other types.
Music
This module extends the core
module with the following types: MusicAlbum
, MusicComposition
, MusicGroup
, MusicPlaylist
, MusicRecording
, and MusicRelease
.
Getting Started
Some code to get started structuring metadata. In order to persist to a storage layer, consider using Constellate.
Person
Create a const Person = Person const man = manmanmanman // or if the object is already structuredconst woman = givenName: 'Jane' familyName: 'Smith' email: 'janesmith@email.com' arbitrary: 'value' const person = person
Person
's data
Access the console // {// "@context": "http://schema.org",// "@type": "Person",// "givenName": "John",// "familyName": "Smith",// "email": "jsmith@email.com",// "arbitrary": "value"// } // or if you want the data canonically ordered... console // {// "@context": "http://schema.org",// "@type": "Person",// "arbitrary": "value",// "email": "jsmith@email.com",// "familyName": "Smith",// "givenName": "John"// }
Add/Set sub-instances
addProperty
for property that expects an array
setProperty
for property that expects a single value
const MusicComposition MusicGroup MusicRecording } = // 'member' expects an array of Partiesconst group = groupgroupgroupgrouppath = '<placeholder group path>' const composition = // 'composer' expects an array of Partiescompositioncompositionpath = '<placeholder composition path>' const recording = // 'byArtist' expects an array of MusicGroupsrecording// 'recordingOf' expects a MusicCompositionrecording console // { // "@context": "http://coalaip.org",// "@type": "MusicRecording",// "byArtist": [ // { // "@context": "http://schema.org",// "@type": "MusicGroup",// "name": "Beatles",// "description": "descriptive",// "member": [ // { // "@context": "http://schema.org",// "@type": "Person",// "givenName": "John",// "familyName": "Smith",// "email": "jsmith@email.com"// }// ]// }// ],// "recordingOf": { // "@context": "http://coalaip.org",// "@type": "MusicComposition",// "composer": [ // { // "@context": "http://schema.org",// "@type": "Person",// "givenName": "John",// "familyName": "Smith",// "email": "jsmith@email.com"// }// ]// }// } // and the ipld... console // { // "@context": "http://coalaip.org",// "@type": "MusicRecording",// "byArtist": [ // { // "/": "<placeholder group path>"// }// ],// "recordingOf": { // "/": "<placeholder composition path>"// }// }
Access sub-instances
instance.subInstances()
returns a flattened array with instance
and the unique instances nested within instance
. To ease handling of metadata in other programs, the instances are ordered based on the other instances they contain.
const metadata = recordingconsole // [man, group, composition, recording] // (1) man contains no other instances// (2,3) group and composition contain man// (4) recording contains composition and group