{
   "class" : {
      "rdf:type" : "rdfs:Class",
      "rdfs:comment" : "A music recording (track), usually a single song.",
      "rdfs:label" : "MusicRecording",
      "rdfs:subClassOf" : "schema:CreativeWork"
   },
   "properties" : {
      "schema:byArtist" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The artist that performed this album or recording.",
         "rdfs:label" : "byArtist",
         "schema:domainIncludes" : [
            "schema:MusicRecording",
            "schema:MusicAlbum"
         ],
         "schema:rangeIncludes" : [
            "schema:MusicGroup",
            "schema:Person"
         ]
      },
      "schema:duration" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).",
         "rdfs:label" : "duration",
         "schema:domainIncludes" : [
            "schema:Audiobook",
            "schema:MediaObject",
            "schema:MusicRecording",
            "schema:Event",
            "schema:Episode",
            "schema:Schedule",
            "schema:QuantitativeValueDistribution",
            "schema:Movie",
            "schema:MusicRelease"
         ],
         "schema:rangeIncludes" : "schema:Duration",
         "schema:source" : [
            "https://github.com/schemaorg/schemaorg/issues/1698",
            "https://github.com/schemaorg/schemaorg/issues/1457"
         ]
      },
      "schema:inAlbum" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The album to which this recording belongs.",
         "rdfs:label" : "inAlbum",
         "schema:domainIncludes" : "schema:MusicRecording",
         "schema:rangeIncludes" : "schema:MusicAlbum"
      },
      "schema:inPlaylist" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The playlist to which this recording belongs.",
         "rdfs:label" : "inPlaylist",
         "schema:domainIncludes" : "schema:MusicRecording",
         "schema:rangeIncludes" : "schema:MusicPlaylist"
      },
      "schema:isrcCode" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The International Standard Recording Code for the recording.",
         "rdfs:label" : "isrcCode",
         "schema:contributor" : "collab:MBZ",
         "schema:domainIncludes" : "schema:MusicRecording",
         "schema:rangeIncludes" : "schema:Text"
      },
      "schema:recordingOf" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "The composition this track is a recording of.",
         "rdfs:label" : "recordingOf",
         "schema:contributor" : "collab:MBZ",
         "schema:domainIncludes" : "schema:MusicRecording",
         "schema:inverseOf" : "schema:recordedAs",
         "schema:rangeIncludes" : "schema:MusicComposition"
      }
   }
}