mirror of
https://github.com/BradNut/graphbrainz
synced 2025-09-08 17:40:32 +00:00
Fix browse by ISRC and artistCredits (#86)
* Fix browse by ISRC and artist-credits subqueries * Update test suite
This commit is contained in:
parent
fc6f1337b6
commit
50d3268366
542 changed files with 1653 additions and 2932 deletions
|
|
@ -44,7 +44,7 @@
|
|||
"test": "npm run lint && npm run test:coverage",
|
||||
"test:coverage": "cross-env NODE_ENV=test nyc npm run test:only",
|
||||
"test:only": "cross-env VCR_MODE=playback ava",
|
||||
"test:record": "cross-env VCR_MODE=record ava",
|
||||
"test:record": "cross-env VCR_MODE=record ava --concurrency 1",
|
||||
"test:record-new": "cross-env VCR_MODE=cache ava --concurrency 1",
|
||||
"test:watch": "npm run test:only -- --watch",
|
||||
"update-schema": "npm run -s print-schema:json > schema.json"
|
||||
|
|
|
|||
|
|
@ -97,17 +97,13 @@ export default class Client {
|
|||
}
|
||||
}
|
||||
|
||||
const url = `${options.baseUrl}${options.url}`
|
||||
|
||||
debug(`Sending request. url=${url} attempt=${info.currentAttempt}`)
|
||||
|
||||
request(options, (err, response, body) => {
|
||||
const req = request(options, (err, response, body) => {
|
||||
if (err) {
|
||||
debug(`Error: “${err}” url=${url}`)
|
||||
debug(`Error: “${err}” url=${req.uri.href}`)
|
||||
reject(err)
|
||||
} else if (response.statusCode >= 400) {
|
||||
const message = this.parseErrorMessage(response, body)
|
||||
debug(`Error: “${message}” url=${url}`)
|
||||
debug(`Error: “${message}” url=${req.uri.href}`)
|
||||
const ClientError = this.errorClass
|
||||
reject(new ClientError(message, response.statusCode))
|
||||
} else if (options.method === 'HEAD') {
|
||||
|
|
@ -116,6 +112,10 @@ export default class Client {
|
|||
resolve(body)
|
||||
}
|
||||
})
|
||||
|
||||
debug(
|
||||
`Sending request. url=${req.uri.href} attempt=${info.currentAttempt}`
|
||||
)
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -108,7 +108,12 @@ export function resolveBrowse(
|
|||
})
|
||||
}
|
||||
} else if (isrc) {
|
||||
request = loaders.lookup.load(['isrc', isrc, params])
|
||||
request = loaders.lookup.load(['isrc', isrc, params]).then(result => {
|
||||
result[pluralName].forEach(entity => {
|
||||
entity._type = singularName
|
||||
})
|
||||
return result
|
||||
})
|
||||
} else if (iswc) {
|
||||
request = loaders.lookup.load(['iswc', iswc, params])
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -220,7 +220,10 @@ alternate names or misspellings.`,
|
|||
export const artistCredits = {
|
||||
type: new GraphQLList(ArtistCredit),
|
||||
description: 'The main credited artist(s).',
|
||||
resolve: createSubqueryResolver({ key: 'artist-credit' })
|
||||
resolve: createSubqueryResolver({
|
||||
inc: 'artist-credits',
|
||||
key: 'artist-credit'
|
||||
})
|
||||
}
|
||||
|
||||
export const artistCredit = {
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -133,18 +133,18 @@ Generated by [AVA](https://ava.li).
|
|||
likeCount: 5,
|
||||
url: 'https://assets.fanart.tv/preview/music/5b11f4ce-a62d-471e-81fc-a69a8278c7da/hdmusiclogo/nirvana-518ada7d98805.png',
|
||||
},
|
||||
{
|
||||
fullSizeURL: 'https://assets.fanart.tv/fanart/music/5b11f4ce-a62d-471e-81fc-a69a8278c7da/hdmusiclogo/nirvana-561900ee87f11.png',
|
||||
imageID: '181150',
|
||||
likeCount: 4,
|
||||
url: 'https://assets.fanart.tv/preview/music/5b11f4ce-a62d-471e-81fc-a69a8278c7da/hdmusiclogo/nirvana-561900ee87f11.png',
|
||||
},
|
||||
{
|
||||
fullSizeURL: 'https://assets.fanart.tv/fanart/music/5b11f4ce-a62d-471e-81fc-a69a8278c7da/hdmusiclogo/nirvana-518a696c1ab0b.png',
|
||||
imageID: '81479',
|
||||
likeCount: 3,
|
||||
url: 'https://assets.fanart.tv/preview/music/5b11f4ce-a62d-471e-81fc-a69a8278c7da/hdmusiclogo/nirvana-518a696c1ab0b.png',
|
||||
},
|
||||
{
|
||||
fullSizeURL: 'https://assets.fanart.tv/fanart/music/5b11f4ce-a62d-471e-81fc-a69a8278c7da/hdmusiclogo/nirvana-561900ee87f11.png',
|
||||
imageID: '181150',
|
||||
likeCount: 3,
|
||||
url: 'https://assets.fanart.tv/preview/music/5b11f4ce-a62d-471e-81fc-a69a8278c7da/hdmusiclogo/nirvana-561900ee87f11.png',
|
||||
},
|
||||
{
|
||||
fullSizeURL: 'https://assets.fanart.tv/fanart/music/5b11f4ce-a62d-471e-81fc-a69a8278c7da/hdmusiclogo/nirvana-561900db6b999.png',
|
||||
imageID: '181149',
|
||||
|
|
@ -193,7 +193,7 @@ Generated by [AVA](https://ava.li).
|
|||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
## labels have a fanArt field and preview images
|
||||
|
||||
|
|
@ -421,4 +421,4 @@ Generated by [AVA](https://ava.li).
|
|||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
Binary file not shown.
|
|
@ -144,6 +144,9 @@ Generated by [AVA](https://ava.li).
|
|||
{
|
||||
mediaWikiImages: [],
|
||||
},
|
||||
{
|
||||
mediaWikiImages: [],
|
||||
},
|
||||
{
|
||||
mediaWikiImages: [
|
||||
{
|
||||
|
|
@ -250,9 +253,6 @@ Generated by [AVA](https://ava.li).
|
|||
{
|
||||
mediaWikiImages: [],
|
||||
},
|
||||
{
|
||||
mediaWikiImages: [],
|
||||
},
|
||||
{
|
||||
mediaWikiImages: [
|
||||
{
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -103,8 +103,8 @@ Generated by [AVA](https://ava.li).
|
|||
theAudioDB: {
|
||||
albumID: '2162908',
|
||||
artistID: '111492',
|
||||
backImage: null,
|
||||
backImagePreview: null,
|
||||
backImage: 'https://www.theaudiodb.com/images/media/album/thumbback/vyqvvx1535103595.jpg',
|
||||
backImagePreview: 'https://www.theaudiodb.com/images/media/album/thumbback/vyqvvx1535103595.jpg/preview',
|
||||
description: `Random Access Memories is the upcoming fourth studio album by French electronic music duo Daft Punk. It will be released by Daft Life under exclusive license to Columbia Records on May 17, 2013 in Australia, May 20, 2013 in the United Kingdom and on May 21, 2013 in the United States. Work started on the record concurrently with the Tron: Legacy score, without a clear plan as to what its structure would be. Shortly after Daft Punk signed with Columbia, a gradual promotional rollout began for the album including billboards, television advertising and a web series.␊
|
||||
Random Access Memories pays tribute to the late 1970s and early 80s era of music in the United States, particularly the sound of Los Angeles recordings of the period. Daft Punk recorded the album largely using live instrumentation with session musicians, and limited the use of electronics to drum machines, a modular synthesizer and vintage vocoders. The album also features collaborations with Panda Bear, Julian Casablancas, Todd Edwards, DJ Falcon, Chilly Gonzales, Giorgio Moroder, Nile Rodgers, Paul Williams and Pharrell Williams. Critical reception to the album has generally been positive.`,
|
||||
descriptionES: `Random Access Memories es el cuarto álbum de estudio del dúo francés Daft Punk. Fue lanzado oficialmente el 17 de mayo en Australia, lanzado después en el Reino Unido el 20 de mayo y para Estados Unidos el 21 de mayo de 2013, bajo licencia de Daft Life. El inicio de grabación de este disco inició cuando el dúo preparaba el soundtrack de la película Tron: Legacy, sin un plan claro en cuanto a lo que sería su estructura. Después de haber anunciado su nuevo contrato con Columbia Records, Daft Punk empezó a promocionar el nuevo álbum con cartéles, anuncios televisivos y series para internet.␊
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"statusCode": 307,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:21:11 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:22 GMT",
|
||||
"content-type": "text/plain; charset=utf-8",
|
||||
"content-length": "86",
|
||||
"connection": "keep-alive",
|
||||
|
|
@ -10,11 +10,11 @@
|
|||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://coverartarchive.org:80/release/76df3287-6cda-33eb-8e9a-044b5e15ffdd",
|
||||
"time": 353,
|
||||
"time": 414,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "coverartarchive.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
{"images":[{"edit":41326273,"back":false,"approved":true,"comment":"","types":["Front"],"thumbnails":{"small":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955061405-250.jpg","large":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955061405-500.jpg"},"front":true,"id":"14955061405","image":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955061405.jpg"},{"approved":true,"back":true,"edit":41326275,"id":"14955062822","front":false,"image":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955062822.jpg","thumbnails":{"small":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955062822-250.jpg","large":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955062822-500.jpg"},"comment":"","types":["Back","Spine"]},{"id":"14955064370","front":false,"image":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955064370.jpg","thumbnails":{"large":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955064370-500.jpg","small":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955064370-250.jpg"},"types":["Tray"],"comment":"","approved":true,"back":false,"edit":41326278},{"edit":41326288,"approved":true,"back":false,"thumbnails":{"large":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955066041-500.jpg","small":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955066041-250.jpg"},"comment":"","types":["Booklet"],"image":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955066041.jpg","id":"14955066041","front":false},{"edit":41326294,"back":false,"approved":true,"comment":"","types":["Booklet"],"thumbnails":{"small":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955068047-250.jpg","large":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955068047-500.jpg"},"image":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955068047.jpg","front":false,"id":"14955068047"},{"front":false,"id":"14955069655","image":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955069655.jpg","types":["Booklet"],"comment":"","thumbnails":{"large":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955069655-500.jpg","small":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955069655-250.jpg"},"back":false,"approved":true,"edit":41326297},{"approved":true,"back":false,"edit":41326303,"image":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955071842.jpg","id":"14955071842","front":false,"thumbnails":{"small":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955071842-250.jpg","large":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955071842-500.jpg"},"comment":"","types":["Booklet"]},{"types":["Booklet"],"comment":"","thumbnails":{"small":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955073836-250.jpg","large":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955073836-500.jpg"},"front":false,"id":"14955073836","image":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955073836.jpg","edit":41326306,"back":false,"approved":true},{"edit":41326325,"back":false,"approved":true,"comment":"","types":["Booklet"],"thumbnails":{"large":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955075724-500.jpg","small":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955075724-250.jpg"},"front":false,"id":"14955075724","image":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/14955075724.jpg"},{"edit":41538992,"approved":true,"back":false,"thumbnails":{"small":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/15067760321-250.jpg","large":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/15067760321-500.jpg"},"comment":"Sticker","types":["Sticker"],"image":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/15067760321.jpg","id":"15067760321","front":false},{"id":"15067761190","front":false,"image":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/15067761190.jpg","thumbnails":{"large":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/15067761190-500.jpg","small":"http://coverartarchive.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52/15067761190-250.jpg"},"comment":"CD","types":["Medium"],"approved":true,"back":false,"edit":41538996}],"release":"https://musicbrainz.org/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52"}
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"server": "nginx/1.4.6 (Ubuntu)",
|
||||
"date": "Sat, 04 Aug 2018 09:13:58 GMT",
|
||||
"content-type": "application/json",
|
||||
"content-length": "4829",
|
||||
"last-modified": "Fri, 04 Nov 2016 08:01:44 GMT",
|
||||
"connection": "keep-alive",
|
||||
"etag": "\"581c4068-12dd\"",
|
||||
"expires": "Sat, 04 Aug 2018 15:13:58 GMT",
|
||||
"cache-control": "max-age=21600",
|
||||
"access-control-allow-origin": "*",
|
||||
"accept-ranges": "bytes"
|
||||
},
|
||||
"url": "http://ia601203.us.archive.org:80/29/items/mbid-d5cdb7fd-c7e9-460a-9549-8a369655cc52/index.json",
|
||||
"time": 141,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json",
|
||||
"referer": "http://archive.org/download/mbid-d5cdb7fd-c7e9-460a-9549-8a369655cc52/index.json",
|
||||
"host": "ia601203.us.archive.org"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"statusCode": 307,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:21:07 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:18 GMT",
|
||||
"content-type": "text/plain; charset=utf-8",
|
||||
"content-length": "86",
|
||||
"connection": "keep-alive",
|
||||
|
|
@ -10,11 +10,11 @@
|
|||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://coverartarchive.org:80/release/dd15903e-0ee7-45ec-aba1-2fc7b3a44e19",
|
||||
"time": 372,
|
||||
"time": 348,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "coverartarchive.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"sort-name":"Sony Music Associated Records","life-span":{"begin":"2001-10-01","ended":false,"end":null},"name":"Sony Music Associated Records","area":{"disambiguation":"","iso-3166-1-codes":["JP"],"id":"2db42837-c832-3c27-b4a3-08198f75693c","name":"Japan","sort-name":"Japan"},"label-code":null,"type":"Imprint","relations":[{"type":"discogs","target-credit":"","direction":"forward","target-type":"url","type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207","url":{"resource":"https://www.discogs.com/label/150168","id":"76aa9dab-a56f-4593-a020-79ea9fb69b7c"},"attributes":[],"ended":false,"attribute-values":{},"begin":null,"source-credit":"","end":null},{"type":"discogs","target-credit":"","direction":"forward","target-type":"url","type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207","url":{"resource":"https://www.discogs.com/label/878626","id":"168bc19f-09ba-4ae9-a79c-6d76fa59ced9"},"ended":false,"attributes":[],"attribute-values":{},"begin":null,"source-credit":"","end":null},{"type":"logo","target-credit":"","target-type":"url","direction":"forward","type-id":"b35f7822-bf3c-4148-b306-fb723c63ee8b","url":{"resource":"https://web.archive.org/web/20150416023558/https://pbs.twimg.com/profile_images/555963422437670912/sq8xcmVX.jpeg","id":"ab9cdf18-a863-4ef2-96c8-1bcac3a48867"},"ended":false,"attributes":[],"attribute-values":{},"begin":null,"source-credit":"","end":null},{"type":"vgmdb","type-id":"8a2d3e55-d291-4b99-87a0-c59c6b121762","target-type":"url","direction":"forward","target-credit":"","attributes":[],"url":{"id":"1788933b-dd28-42c6-81c7-bb25c64a3a11","resource":"https://vgmdb.net/org/187"},"ended":false,"attribute-values":{},"source-credit":"","begin":null,"end":null},{"end":null,"begin":null,"source-credit":"","attribute-values":{},"url":{"resource":"https://www.wikidata.org/wiki/Q11315207","id":"3d5cacd7-b84f-41c5-a99b-32855ec61c1f"},"ended":false,"attributes":[],"target-credit":"","direction":"forward","target-type":"url","type-id":"75d87e83-d927-4580-ba63-44dc76256f98","type":"wikidata"}],"type-id":"b6285b2a-3514-3d43-80df-fcf528824ded","country":"JP","id":"d766cf2e-d31e-4fad-9511-b27013594d7e","ipis":[],"isnis":[],"disambiguation":"imprint \"A∫R\""}
|
||||
{"area":{"iso-3166-1-codes":["JP"],"name":"Japan","id":"2db42837-c832-3c27-b4a3-08198f75693c","disambiguation":"","sort-name":"Japan"},"disambiguation":"imprint \"A∫R\"","name":"Sony Music Associated Records","country":"JP","relations":[{"attributes":[],"url":{"id":"76aa9dab-a56f-4593-a020-79ea9fb69b7c","resource":"https://www.discogs.com/label/150168"},"target-type":"url","source-credit":"","end":null,"type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207","attribute-values":{},"begin":null,"direction":"forward","target-credit":"","type":"discogs","ended":false},{"attributes":[],"url":{"id":"168bc19f-09ba-4ae9-a79c-6d76fa59ced9","resource":"https://www.discogs.com/label/878626"},"source-credit":"","end":null,"target-type":"url","begin":null,"direction":"forward","type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207","attribute-values":{},"ended":false,"target-credit":"","type":"discogs"},{"target-type":"url","source-credit":"","end":null,"url":{"resource":"https://web.archive.org/web/20150416023558/https://pbs.twimg.com/profile_images/555963422437670912/sq8xcmVX.jpeg","id":"ab9cdf18-a863-4ef2-96c8-1bcac3a48867"},"target-credit":"","type":"logo","ended":false,"attribute-values":{},"type-id":"b35f7822-bf3c-4148-b306-fb723c63ee8b","direction":"forward","begin":null,"attributes":[]},{"ended":false,"type":"vgmdb","target-credit":"","direction":"forward","begin":null,"type-id":"8a2d3e55-d291-4b99-87a0-c59c6b121762","attribute-values":{},"end":null,"source-credit":"","target-type":"url","url":{"id":"1788933b-dd28-42c6-81c7-bb25c64a3a11","resource":"https://vgmdb.net/org/187"},"attributes":[]},{"attributes":[],"type":"wikidata","target-credit":"","ended":false,"type-id":"75d87e83-d927-4580-ba63-44dc76256f98","attribute-values":{},"direction":"forward","begin":null,"target-type":"url","source-credit":"","end":null,"url":{"id":"3d5cacd7-b84f-41c5-a99b-32855ec61c1f","resource":"https://www.wikidata.org/wiki/Q11315207"}}],"life-span":{"begin":"2001-10-01","ended":false,"end":null},"ipis":[],"label-code":null,"type":"Imprint","sort-name":"Sony Music Associated Records","type-id":"b6285b2a-3514-3d43-80df-fcf528824ded","id":"d766cf2e-d31e-4fad-9511-b27013594d7e","isnis":[]}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:01:01 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:58:56 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1048",
|
||||
"x-ratelimit-reset": "1533376863",
|
||||
"x-ratelimit-remaining": "779",
|
||||
"x-ratelimit-reset": "1537138736",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"4939ad82b59a75549e85f671b345aa13\"",
|
||||
"etag": "W/\"9d2dcac07a24b76b1b7e5746d5ae23f1\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/label/d766cf2e-d31e-4fad-9511-b27013594d7e?inc=url-rels&fmt=json",
|
||||
"time": 384,
|
||||
"time": 386,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:23:26 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:56:53 GMT",
|
||||
"content-type": "application/json",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1006",
|
||||
"x-ratelimit-reset": "1533374604",
|
||||
"last-modified": "Sat, 04 Aug 2018 09:21:17 GMT",
|
||||
"etag": "W/\"NDc5NDYwMDAwMDAwMDAwMFNvbHI=\"",
|
||||
"x-ratelimit-remaining": "941",
|
||||
"x-ratelimit-reset": "1537138611",
|
||||
"last-modified": "Sun, 16 Sep 2018 22:54:10 GMT",
|
||||
"etag": "W/\"ODFlOTUwMDAwMDAwMDAwMFNvbHI=\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/recording?query=Burn%20the%20Witch&fmt=json",
|
||||
"time": 2720,
|
||||
"time": 3267,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"title":"Devil Do","disambiguation":"","video":false,"length":213000,"id":"07649758-09c8-4d70-bc6f-5c37ab36334d","artist-credit":[{"joinphrase":"","name":"Holly Golightly & The Brokeoffs","artist":{"name":"Holly Golightly and The Brokeoffs","disambiguation":"","sort-name":"Golightly, Holly and Brokeoffs, The","id":"3f6c19a8-7ea8-4e6e-adb4-34dc97db8742"}}]}
|
||||
{"title":"Devil Do","video":false,"id":"07649758-09c8-4d70-bc6f-5c37ab36334d","artist-credit":[{"joinphrase":"","artist":{"id":"3f6c19a8-7ea8-4e6e-adb4-34dc97db8742","sort-name":"Golightly, Holly and Brokeoffs, The","disambiguation":"","name":"Holly Golightly and The Brokeoffs"},"name":"Holly Golightly & The Brokeoffs"}],"disambiguation":"","length":213000}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:23:56 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:57:29 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "842",
|
||||
"x-ratelimit-reset": "1533374636",
|
||||
"x-ratelimit-remaining": "831",
|
||||
"x-ratelimit-reset": "1537138649",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"7ae206227f52916215d6997409b6ad76\"",
|
||||
"etag": "W/\"884add3c13e8e50a7528b36a25331198\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/recording/07649758-09c8-4d70-bc6f-5c37ab36334d?inc=artist-credits&fmt=json",
|
||||
"time": 383,
|
||||
"time": 371,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -2,21 +2,21 @@
|
|||
"statusCode": 302,
|
||||
"headers": {
|
||||
"server": "nginx/1.4.6 (Ubuntu)",
|
||||
"date": "Sat, 04 Aug 2018 09:21:11 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:23 GMT",
|
||||
"content-type": "text/html; charset=UTF-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"access-control-allow-origin": "*",
|
||||
"accept-ranges": "bytes",
|
||||
"location": "http://ia802607.us.archive.org/32/items/mbid-76df3287-6cda-33eb-8e9a-044b5e15ffdd/index.json",
|
||||
"strict-transport-security": "max-age=604800"
|
||||
"location": "http://ia902607.us.archive.org/32/items/mbid-76df3287-6cda-33eb-8e9a-044b5e15ffdd/index.json",
|
||||
"strict-transport-security": "max-age=2592000"
|
||||
},
|
||||
"url": "http://archive.org:80/download/mbid-76df3287-6cda-33eb-8e9a-044b5e15ffdd/index.json",
|
||||
"time": 133,
|
||||
"time": 99,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json",
|
||||
"referer": "http://coverartarchive.org/release/76df3287-6cda-33eb-8e9a-044b5e15ffdd",
|
||||
|
|
|
|||
|
|
@ -2,21 +2,21 @@
|
|||
"statusCode": 302,
|
||||
"headers": {
|
||||
"server": "nginx/1.4.6 (Ubuntu)",
|
||||
"date": "Sat, 04 Aug 2018 09:21:08 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:21 GMT",
|
||||
"content-type": "text/html; charset=UTF-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"access-control-allow-origin": "*",
|
||||
"accept-ranges": "bytes",
|
||||
"location": "http://ia800509.us.archive.org/33/items/mbid-fb98043c-7ac8-4505-ba87-28576836a8d5/index.json",
|
||||
"strict-transport-security": "max-age=604800"
|
||||
"location": "http://ia600509.us.archive.org/33/items/mbid-fb98043c-7ac8-4505-ba87-28576836a8d5/index.json",
|
||||
"strict-transport-security": "max-age=2592000"
|
||||
},
|
||||
"url": "http://archive.org:80/download/mbid-fb98043c-7ac8-4505-ba87-28576836a8d5/index.json",
|
||||
"time": 109,
|
||||
"time": 94,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json",
|
||||
"referer": "http://coverartarchive.org/release/fb98043c-7ac8-4505-ba87-28576836a8d5",
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"type":"String instrument","relations":[{"type":"image","url":{"resource":"https://commons.wikimedia.org/wiki/File:2_Portuguese_guitars.jpg","id":"d3608d2a-870d-4c3a-9a32-6e91cc3b727f"},"source-credit":"","begin":null,"type-id":"f64eacbd-1ea1-381e-9886-2cfb552b7d90","target-credit":"","direction":"forward","ended":false,"attributes":[],"end":null,"attribute-values":{},"target-type":"url"},{"type":"wikidata","url":{"id":"bf33536d-3a71-4da5-8487-0b166a512c37","resource":"https://www.wikidata.org/wiki/Q585289"},"begin":null,"source-credit":"","type-id":"1486fccd-cf59-35e4-9399-b50e2b255877","target-credit":"","direction":"forward","attributes":[],"ended":false,"end":null,"attribute-values":{},"target-type":"url"}],"id":"ba4705aa-ff1d-48d5-ae80-7b2046fb451e","name":"Portuguese guitar","disambiguation":"","type-id":"cc00f97f-cf3d-3ae2-9163-041cb1a0d726","description":"The Portuguese guitar is a plucked string instrument associated with fado. It has twelve steel strings, strung in six courses."}
|
||||
{"id":"ba4705aa-ff1d-48d5-ae80-7b2046fb451e","name":"Portuguese guitar","description":"The Portuguese guitar is a plucked string instrument associated with fado. It has twelve steel strings, strung in six courses.","relations":[{"attributes":[],"url":{"resource":"https://commons.wikimedia.org/wiki/File:2_Portuguese_guitars.jpg","id":"d3608d2a-870d-4c3a-9a32-6e91cc3b727f"},"end":null,"source-credit":"","target-type":"url","begin":null,"direction":"forward","type-id":"f64eacbd-1ea1-381e-9886-2cfb552b7d90","attribute-values":{},"ended":false,"target-credit":"","type":"image"},{"attributes":[],"target-type":"url","end":null,"source-credit":"","url":{"id":"bf33536d-3a71-4da5-8487-0b166a512c37","resource":"https://www.wikidata.org/wiki/Q585289"},"type":"wikidata","target-credit":"","ended":false,"attribute-values":{},"type-id":"1486fccd-cf59-35e4-9399-b50e2b255877","direction":"forward","begin":null}],"type":"String instrument","type-id":"cc00f97f-cf3d-3ae2-9163-041cb1a0d726","disambiguation":""}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:00:06 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:57:06 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "812",
|
||||
"x-ratelimit-reset": "1533376806",
|
||||
"x-ratelimit-remaining": "1163",
|
||||
"x-ratelimit-reset": "1537138627",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"18f4b4e33f8c6592359deb1bee1ca584\"",
|
||||
"etag": "W/\"73482926bdcf016d43a9e54e1cfc55d8\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/instrument/ba4705aa-ff1d-48d5-ae80-7b2046fb451e?inc=url-rels&fmt=json",
|
||||
"time": 373,
|
||||
"time": 372,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"packaging-id":"8f931351-d2e2-310f-afc6-37b89ddba246","status":"Official","cover-art-archive":{"darkened":false,"front":true,"artwork":true,"count":11,"back":true},"country":"US","title":"You Want It Darker","asin":"B01KN6XDS6","status-id":"4e304316-386d-3409-af2e-78857eec5cfe","packaging":"Digipak","id":"d5cdb7fd-c7e9-460a-9549-8a369655cc52","quality":"normal","text-representation":{"script":"Latn","language":"eng"},"date":"2016-10-21","disambiguation":"","barcode":"889853650729","release-events":[{"date":"2016-10-21","area":{"iso-3166-1-codes":["US"],"sort-name":"United States","disambiguation":"","id":"489ce91b-6658-3307-9877-795b68554c98","name":"United States"}}]}
|
||||
{"date":"2016-10-21","cover-art-archive":{"front":true,"back":true,"darkened":false,"count":11,"artwork":true},"quality":"normal","country":"US","status":"Official","release-events":[{"area":{"sort-name":"United States","name":"United States","id":"489ce91b-6658-3307-9877-795b68554c98","disambiguation":"","iso-3166-1-codes":["US"]},"date":"2016-10-21"}],"packaging-id":"8f931351-d2e2-310f-afc6-37b89ddba246","asin":"B01KN6XDS6","barcode":"889853650729","id":"d5cdb7fd-c7e9-460a-9549-8a369655cc52","text-representation":{"script":"Latn","language":"eng"},"title":"You Want It Darker","packaging":"Digipak","disambiguation":"","status-id":"4e304316-386d-3409-af2e-78857eec5cfe"}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:23:55 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:57:29 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "918",
|
||||
"x-ratelimit-reset": "1533374636",
|
||||
"x-ratelimit-remaining": "834",
|
||||
"x-ratelimit-reset": "1537138649",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"8db00b0812d52fc6e6470f7a6d624a34\"",
|
||||
"etag": "W/\"0463adb5d6ccb3aeaef7e91fd496ff54\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/release/d5cdb7fd-c7e9-460a-9549-8a369655cc52?fmt=json",
|
||||
"time": 362,
|
||||
"time": 371,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:25:24 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "991",
|
||||
"x-ratelimit-reset": "1533374724",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"ae034eada19ed3fc539b67fceaedae31\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/discid/hcwQmxWsG3GdAQvfBa1SCpp4FuU-?fmt=json",
|
||||
"time": 435,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1 +1 @@
|
|||
{"id":"b5297256-8482-4cba-968a-25db61563faf","name":"Paramount Theatre","address":"901 Pine Street, Seattle, Washington 98101","type-id":"cd92781a-a73f-30e8-a430-55d7521338db","coordinates":{"longitude":"-122.331342","latitude":"47.613228"},"disambiguation":"","type":"Venue","area":{"disambiguation":"","sort-name":"Seattle","name":"Seattle","id":"10adc6b5-63bf-4b4e-993e-ed83b05c22fc"},"life-span":{"ended":false,"end":null,"begin":"1928-03-01"}}
|
||||
{"address":"901 Pine Street, Seattle, Washington 98101","coordinates":{"latitude":"47.613228","longitude":"-122.331342"},"life-span":{"end":null,"ended":false,"begin":"1928-03-01"},"type-id":"cd92781a-a73f-30e8-a430-55d7521338db","type":"Venue","disambiguation":"","area":{"id":"10adc6b5-63bf-4b4e-993e-ed83b05c22fc","disambiguation":"","name":"Seattle","sort-name":"Seattle"},"name":"Paramount Theatre","id":"b5297256-8482-4cba-968a-25db61563faf"}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:00:01 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:56:55 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1119",
|
||||
"x-ratelimit-reset": "1533376802",
|
||||
"x-ratelimit-remaining": "913",
|
||||
"x-ratelimit-reset": "1537138615",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"e66d0ab77fbfb8bfdfdeac4c284c1944\"",
|
||||
"etag": "W/\"a4fbe5da0801a0e44509d1349872957c\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/place/b5297256-8482-4cba-968a-25db61563faf?fmt=json",
|
||||
"time": 383,
|
||||
"time": 373,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"isnis":[],"area":{"id":"2db42837-c832-3c27-b4a3-08198f75693c","name":"Japan","iso-3166-1-codes":["JP"],"disambiguation":"","sort-name":"Japan"},"life-span":{"ended":true,"begin":"1968-03-11","end":"1991-04"},"country":"JP","disambiguation":"Japan","label-code":null,"relations":[{"url":{"id":"f1e6708e-9b0c-4656-aa0a-25d580e3b24e","resource":"https://www.discogs.com/label/33078"},"type":"discogs","attributes":[],"attribute-values":{},"begin":null,"source-credit":"","ended":false,"type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207","target-credit":"","end":null,"direction":"forward","target-type":"url"},{"direction":"forward","target-type":"url","target-credit":"","end":null,"type-id":"b35f7822-bf3c-4148-b306-fb723c63ee8b","ended":false,"begin":null,"attribute-values":{},"source-credit":"","type":"logo","attributes":[],"url":{"id":"f2c03692-249f-42f5-97b4-1c0ed9eb8bee","resource":"http://i47.twitgoo.com/23lmqtl.jpg"}},{"attribute-values":{},"begin":null,"source-credit":"","type":"vgmdb","attributes":[],"url":{"id":"4acd8c03-c71b-4b11-951d-191415977cd4","resource":"https://vgmdb.net/org/16"},"direction":"forward","target-type":"url","target-credit":"","end":null,"type-id":"8a2d3e55-d291-4b99-87a0-c59c6b121762","ended":false}],"type":"Imprint","id":"08f37a61-1c54-4257-b31d-810fa2ac5cd5","name":"CBS/Sony","type-id":"b6285b2a-3514-3d43-80df-fcf528824ded","ipis":[],"sort-name":"CBS/Sony"}
|
||||
{"type-id":"b6285b2a-3514-3d43-80df-fcf528824ded","sort-name":"CBS/Sony","type":"Imprint","label-code":null,"isnis":[],"id":"08f37a61-1c54-4257-b31d-810fa2ac5cd5","area":{"id":"2db42837-c832-3c27-b4a3-08198f75693c","iso-3166-1-codes":["JP"],"name":"Japan","disambiguation":"","sort-name":"Japan"},"disambiguation":"Japan","relations":[{"ended":false,"target-credit":"","type":"discogs","direction":"forward","begin":null,"type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207","attribute-values":{},"source-credit":"","end":null,"target-type":"url","url":{"id":"f1e6708e-9b0c-4656-aa0a-25d580e3b24e","resource":"https://www.discogs.com/label/33078"},"attributes":[]},{"attribute-values":{},"type-id":"b35f7822-bf3c-4148-b306-fb723c63ee8b","begin":null,"direction":"forward","type":"logo","target-credit":"","ended":false,"url":{"resource":"http://i47.twitgoo.com/23lmqtl.jpg","id":"f2c03692-249f-42f5-97b4-1c0ed9eb8bee"},"target-type":"url","end":null,"source-credit":"","attributes":[]},{"attributes":[],"ended":false,"type":"vgmdb","target-credit":"","direction":"forward","begin":null,"type-id":"8a2d3e55-d291-4b99-87a0-c59c6b121762","attribute-values":{},"end":null,"source-credit":"","target-type":"url","url":{"id":"4acd8c03-c71b-4b11-951d-191415977cd4","resource":"https://vgmdb.net/org/16"}}],"ipis":[],"life-span":{"ended":true,"begin":"1968-03-11","end":"1991-04"},"name":"CBS/Sony","country":"JP"}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:00:28 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:57:50 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "822",
|
||||
"x-ratelimit-reset": "1533376828",
|
||||
"x-ratelimit-remaining": "1177",
|
||||
"x-ratelimit-reset": "1537138672",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"2fb62cdbdad08970192ffe2678b431d1\"",
|
||||
"etag": "W/\"184b27153881e002e8cdab914029f040\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/label/08f37a61-1c54-4257-b31d-810fa2ac5cd5?inc=url-rels&fmt=json",
|
||||
"time": 381,
|
||||
"time": 427,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"disambiguation":"","secondary-type-ids":["dd2a21e1-0c00-3729-a7a0-de60b84eb5d1","0d47f47a-3fe5-3d69-ac9d-d566c23968bf","15c1b1f5-d893-3375-a1db-e180c5ae15ed"],"artist-credit":[{"artist":{"name":"DJ Muggs","id":"d9c25451-bec6-4273-abe2-15ce0f0e0621","disambiguation":"","sort-name":"Muggs, DJ"},"name":"DJ Muggs","joinphrase":" vs. "},{"name":"Ill Bill","artist":{"disambiguation":"","sort-name":"Ill Bill","id":"c7e90641-f441-4801-8e4a-d09e10f452b8","name":"Ill Bill"},"joinphrase":""}],"primary-type":"Album","primary-type-id":"f529b476-6e62-324f-b0aa-1f3e33d313fc","title":"Cult Assassin","first-release-date":"2010-08-31","id":"53614893-6f25-4519-9cae-b1db904e2887","secondary-types":["Compilation","DJ-mix","Mixtape/Street"]}
|
||||
{"first-release-date":"2010-08-31","secondary-types":["Compilation","DJ-mix","Mixtape/Street"],"disambiguation":"","title":"Cult Assassin","secondary-type-ids":["dd2a21e1-0c00-3729-a7a0-de60b84eb5d1","0d47f47a-3fe5-3d69-ac9d-d566c23968bf","15c1b1f5-d893-3375-a1db-e180c5ae15ed"],"artist-credit":[{"name":"DJ Muggs","joinphrase":" vs. ","artist":{"id":"d9c25451-bec6-4273-abe2-15ce0f0e0621","name":"DJ Muggs","sort-name":"Muggs, DJ","disambiguation":""}},{"artist":{"name":"Ill Bill","id":"c7e90641-f441-4801-8e4a-d09e10f452b8","disambiguation":"","sort-name":"Ill Bill"},"joinphrase":"","name":"Ill Bill"}],"primary-type-id":"f529b476-6e62-324f-b0aa-1f3e33d313fc","id":"53614893-6f25-4519-9cae-b1db904e2887","primary-type":"Album"}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:23:56 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:57:40 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "843",
|
||||
"x-ratelimit-reset": "1533374636",
|
||||
"x-ratelimit-remaining": "1051",
|
||||
"x-ratelimit-reset": "1537138662",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"b440e9e3667c13d84537c9fba2a2db8f\"",
|
||||
"etag": "W/\"40563337da2097bdca94d980db44e24b\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/release-group/53614893-6f25-4519-9cae-b1db904e2887?inc=artist-credits&fmt=json",
|
||||
"time": 354,
|
||||
"time": 356,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1,26 +0,0 @@
|
|||
{
|
||||
"statusCode": 302,
|
||||
"headers": {
|
||||
"server": "nginx/1.4.6 (Ubuntu)",
|
||||
"date": "Sat, 04 Aug 2018 09:21:09 GMT",
|
||||
"content-type": "text/html; charset=UTF-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"access-control-allow-origin": "*",
|
||||
"accept-ranges": "bytes",
|
||||
"location": "http://ia800802.us.archive.org/16/items/mbid-4c7c6c6c-5b5b-4625-8b5a-87e44bd5a243/index.json",
|
||||
"strict-transport-security": "max-age=604800"
|
||||
},
|
||||
"url": "http://archive.org:80/download/mbid-4c7c6c6c-5b5b-4625-8b5a-87e44bd5a243/index.json",
|
||||
"time": 295,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json",
|
||||
"referer": "http://coverartarchive.org/release/4c7c6c6c-5b5b-4625-8b5a-87e44bd5a243",
|
||||
"host": "archive.org"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1 +1 @@
|
|||
{"iso-3166-1-codes":["XG"],"type-id":"06dd0ae4-8c74-30bb-b43d-95dcedf961de","name":"East Germany","id":"d907b0ac-2956-386f-a246-62d55779aae1","sort-name":"East Germany","iso-3166-3-codes":["DDDE"],"life-span":{"ended":true,"end":"1990","begin":"1949"},"type":"Country","disambiguation":""}
|
||||
{"name":"East Germany","life-span":{"ended":true,"begin":"1949","end":"1990"},"id":"d907b0ac-2956-386f-a246-62d55779aae1","type-id":"06dd0ae4-8c74-30bb-b43d-95dcedf961de","type":"Country","disambiguation":"","sort-name":"East Germany","iso-3166-3-codes":["DDDE"],"iso-3166-1-codes":["XG"]}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:23:45 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:57:07 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "989",
|
||||
"x-ratelimit-reset": "1533374626",
|
||||
"x-ratelimit-remaining": "811",
|
||||
"x-ratelimit-reset": "1537138627",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"f148990039ef31c75d01afd55b631673\"",
|
||||
"etag": "W/\"327ddc5261eae6de6d781612085a650e\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/area/d907b0ac-2956-386f-a246-62d55779aae1?fmt=json",
|
||||
"time": 352,
|
||||
"time": 378,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
See: http://archive.org/download/mbid-35847092-d9f1-430a-aed7-f4ee93fb21a6/index.json
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
{
|
||||
"statusCode": 307,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:21:08 GMT",
|
||||
"content-type": "text/plain; charset=utf-8",
|
||||
"content-length": "86",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"location": "http://archive.org/download/mbid-35847092-d9f1-430a-aed7-f4ee93fb21a6/index.json",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://coverartarchive.org:80/release/35847092-d9f1-430a-aed7-f4ee93fb21a6",
|
||||
"time": 385,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "coverartarchive.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
{"type":null,"disambiguation":"","rating":{"value":5,"votes-count":1},"label-code":null,"country":null,"life-span":{"ended":true,"begin":"2010","end":"2014-07-22"},"isnis":[],"area":null,"sort-name":"Fin Records","ipis":[],"type-id":null,"name":"Fin Records","id":"9d36ba13-e56a-47b7-9148-23f846374736"}
|
||||
{"area":null,"disambiguation":"","life-span":{"begin":"2010","ended":true,"end":"2014-07-22"},"ipis":[],"name":"Fin Records","country":null,"type-id":null,"label-code":null,"type":null,"sort-name":"Fin Records","isnis":[],"rating":{"votes-count":1,"value":5},"id":"9d36ba13-e56a-47b7-9148-23f846374736"}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:24:23 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:58:46 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1009",
|
||||
"x-ratelimit-reset": "1533374664",
|
||||
"x-ratelimit-remaining": "1163",
|
||||
"x-ratelimit-reset": "1537138728",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"42a33c20cb78280509d6c2fd1d7c2999\"",
|
||||
"etag": "W/\"733abf5d91515cc9186c2b346fb0ca58\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/label/9d36ba13-e56a-47b7-9148-23f846374736?inc=ratings&fmt=json",
|
||||
"time": 457,
|
||||
"time": 362,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"title":"Dizzy","disambiguation":"","rating":{"votes-count":1,"value":5},"primary-type":"Single","primary-type-id":"d6038452-8ee0-3f68-affc-2de9a1ede0b9","secondary-types":[],"secondary-type-ids":[],"id":"abd672ff-6c87-44b5-8606-5b763215cbe7","first-release-date":"2013-06-18"}
|
||||
{"disambiguation":"","first-release-date":"2013-06-18","primary-type-id":"d6038452-8ee0-3f68-affc-2de9a1ede0b9","id":"abd672ff-6c87-44b5-8606-5b763215cbe7","secondary-types":[],"title":"Dizzy","rating":{"votes-count":1,"value":5},"secondary-type-ids":[],"primary-type":"Single"}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:24:50 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:52 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1183",
|
||||
"x-ratelimit-reset": "1533374692",
|
||||
"x-ratelimit-remaining": "1122",
|
||||
"x-ratelimit-reset": "1537138794",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"f5ebcba850deda37f059a9ba0ee1023b\"",
|
||||
"etag": "W/\"3eeda6b39c72294d8d71acf143663e73\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/release-group/abd672ff-6c87-44b5-8606-5b763215cbe7?inc=ratings&fmt=json",
|
||||
"time": 359,
|
||||
"time": 362,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"created":"2018-08-04T09:23:26.831Z","count":43459,"offset":0,"labels":[{"id":"cf7fc5cf-e011-4ef4-b511-cd0188537910","type":"Original Production","type-id":"7aaa37fe-2def-3476-b359-80245850062d","score":100,"name":"Apple Records","sort-name":"Apple Records","label-code":1074,"country":"GB","area":{"id":"8a754a16-0027-3a29-b6d7-2b40ea0481ed","type":"Country","type-id":"06dd0ae4-8c74-30bb-b43d-95dcedf961de","name":"United Kingdom","sort-name":"United Kingdom","life-span":{"ended":null}},"life-span":{"begin":"1968","ended":null},"aliases":[{"sort-name":"Apple","name":"Apple","locale":null,"type":null,"primary":null,"begin-date":null,"end-date":null}]}]}
|
||||
{"created":"2018-09-16T22:56:51.267Z","count":43985,"offset":0,"labels":[{"id":"cf7fc5cf-e011-4ef4-b511-cd0188537910","type":"Original Production","type-id":"7aaa37fe-2def-3476-b359-80245850062d","score":100,"name":"Apple Records","sort-name":"Apple Records","label-code":1074,"country":"GB","area":{"id":"8a754a16-0027-3a29-b6d7-2b40ea0481ed","type":"Country","type-id":"06dd0ae4-8c74-30bb-b43d-95dcedf961de","name":"United Kingdom","sort-name":"United Kingdom","life-span":{"ended":null}},"life-span":{"begin":"1968","ended":null},"aliases":[{"sort-name":"Apple","name":"Apple","locale":null,"type":null,"primary":null,"begin-date":null,"end-date":null}],"tags":[{"count":1,"name":"badfinger"}]}]}
|
||||
|
|
@ -1,24 +1,24 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:23:26 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:56:51 GMT",
|
||||
"content-type": "application/json",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1174",
|
||||
"x-ratelimit-reset": "1533374608",
|
||||
"last-modified": "Sat, 04 Aug 2018 09:22:21 GMT",
|
||||
"etag": "\"OWMwMDAwMDAwMDAwMDBTb2xy\"",
|
||||
"x-ratelimit-remaining": "864",
|
||||
"x-ratelimit-reset": "1537138611",
|
||||
"last-modified": "Sun, 16 Sep 2018 22:36:14 GMT",
|
||||
"etag": "\"MWNkNjAwMDAwMDAwMDAwMFNvbHI=\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/label?limit=1&query=Apple%20Records&fmt=json",
|
||||
"time": 350,
|
||||
"time": 441,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
{"id":"5888d65d-9d65-4d13-8454-3d68be9b3e55","name":"acoustic fretless guitar","type-id":"cc00f97f-cf3d-3ae2-9163-041cb1a0d726","disambiguation":"","type":"String instrument","relations":[],"description":"Acoustic guitar without frets."}
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:00:28 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"content-length": "237",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "825",
|
||||
"x-ratelimit-reset": "1533376828",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "\"aacc40e18c388ba0521ace866dc3d050\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/instrument/5888d65d-9d65-4d13-8454-3d68be9b3e55?inc=url-rels&fmt=json",
|
||||
"time": 362,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
{"error":"media is not a valid option for the inc parameter for the discid resource unless you specify one of the following other inc parameters: releases"}
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
{
|
||||
"statusCode": 400,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:32:25 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"content-length": "156",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1008",
|
||||
"x-ratelimit-reset": "1533378746",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "\"d8325e6c556c7c20f7b933ecc1070bec\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/discid/TMXdzZkTcc9Jq24PD0w5J9_AXms-?inc=media%2Bdiscids&fmt=json",
|
||||
"time": 369,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"url": "http://musicbrainz.org:80/ws/2/discid/TMXdzZkTcc9Jq24PD0w5J9_AXms-?inc=media%2Bdiscids&fmt=json",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
},
|
||||
"body": ""
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:24:07 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:58:24 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1144",
|
||||
"x-ratelimit-reset": "1533374648",
|
||||
"x-ratelimit-remaining": "1081",
|
||||
"x-ratelimit-reset": "1537138706",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"4d71de9e84ecc12c5c60a53fb2d762c5\"",
|
||||
"etag": "W/\"53dbd519c129d9501df604b9ba05a347\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/artist?collection=48eaec0c-7088-4864-839b-12ea681f1b5d&fmt=json",
|
||||
"time": 490,
|
||||
"time": 418,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"label-code":null,"disambiguation":"CBS \"walking eye\" logo over the name \"SONY\" in a box, used in Latin-American releases","area":{"name":"United States","disambiguation":"","sort-name":"United States","iso-3166-1-codes":["US"],"id":"489ce91b-6658-3307-9877-795b68554c98"},"sort-name":"Sony","life-span":{"ended":false,"begin":null,"end":null},"country":"US","relations":[{"type":"logo","direction":"forward","url":{"id":"5f2d430c-5ef3-4175-ad33-806c0c149344","resource":"http://i63.tinypic.com/lb5dz.png"},"target-credit":"","ended":false,"attributes":[],"type-id":"b35f7822-bf3c-4148-b306-fb723c63ee8b","target-type":"url","end":null,"begin":null,"source-credit":"","attribute-values":{}}],"isnis":[],"id":"151085ba-42d0-477a-83f9-eed3f758c743","type":"Imprint","name":"Sony","ipis":[],"type-id":"b6285b2a-3514-3d43-80df-fcf528824ded"}
|
||||
{"area":{"id":"489ce91b-6658-3307-9877-795b68554c98","name":"United States","sort-name":"United States","disambiguation":"","iso-3166-1-codes":["US"]},"disambiguation":"CBS \"walking eye\" logo over the name \"SONY\" in a box, used in Latin-American releases","ipis":[],"life-span":{"begin":null,"end":null,"ended":false},"name":"Sony","relations":[{"target-credit":"","attribute-values":{},"direction":"forward","end":null,"type-id":"b35f7822-bf3c-4148-b306-fb723c63ee8b","target-type":"url","source-credit":"","url":{"id":"5f2d430c-5ef3-4175-ad33-806c0c149344","resource":"http://i63.tinypic.com/lb5dz.png"},"attributes":[],"type":"logo","ended":false,"begin":null}],"country":"US","label-code":null,"type":"Imprint","type-id":"b6285b2a-3514-3d43-80df-fcf528824ded","isnis":[],"sort-name":"Sony","id":"151085ba-42d0-477a-83f9-eed3f758c743"}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:00:34 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:58:01 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
|
|
@ -9,17 +9,17 @@
|
|||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "937",
|
||||
"x-ratelimit-reset": "1533376834",
|
||||
"x-ratelimit-reset": "1537138682",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"8c7cbd4b5f2b1bf9abb782c248d455ca\"",
|
||||
"etag": "W/\"792efcb4122400557a51a2c421d32b04\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/label/151085ba-42d0-477a-83f9-eed3f758c743?inc=url-rels&fmt=json",
|
||||
"time": 374,
|
||||
"time": 389,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"statusCode": 307,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:21:11 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:22 GMT",
|
||||
"content-type": "text/plain; charset=utf-8",
|
||||
"content-length": "132",
|
||||
"connection": "keep-alive",
|
||||
|
|
@ -10,11 +10,11 @@
|
|||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://coverartarchive.org:80/release/76df3287-6cda-33eb-8e9a-044b5e15ffdd/back",
|
||||
"time": 345,
|
||||
"time": 368,
|
||||
"request": {
|
||||
"method": "HEAD",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "coverartarchive.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"content-length": 0
|
||||
|
|
|
|||
|
|
@ -2,23 +2,23 @@
|
|||
"statusCode": 200,
|
||||
"headers": {
|
||||
"server": "nginx/1.4.6 (Ubuntu)",
|
||||
"date": "Sat, 04 Aug 2018 09:21:08 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:20 GMT",
|
||||
"content-type": "application/json",
|
||||
"content-length": "520",
|
||||
"last-modified": "Sat, 20 Aug 2016 02:02:44 GMT",
|
||||
"connection": "keep-alive",
|
||||
"etag": "\"57b7ba44-208\"",
|
||||
"expires": "Sat, 04 Aug 2018 15:21:08 GMT",
|
||||
"expires": "Mon, 17 Sep 2018 04:59:20 GMT",
|
||||
"cache-control": "max-age=21600",
|
||||
"access-control-allow-origin": "*",
|
||||
"accept-ranges": "bytes"
|
||||
},
|
||||
"url": "http://ia801208.us.archive.org:80/31/items/mbid-ee773571-6147-4bfd-8ea1-d666c4d4caef/index.json",
|
||||
"time": 90,
|
||||
"time": 71,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json",
|
||||
"referer": "http://archive.org/download/mbid-ee773571-6147-4bfd-8ea1-d666c4d4caef/index.json",
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"description":"","type":"String instrument","disambiguation":"","id":"c0ea0405-ae3f-4851-bf85-277fadff80e2","name":"Hawaiian guitar","type-id":"cc00f97f-cf3d-3ae2-9163-041cb1a0d726","relations":[]}
|
||||
{"disambiguation":"","id":"c0ea0405-ae3f-4851-bf85-277fadff80e2","description":"","relations":[],"type-id":"cc00f97f-cf3d-3ae2-9163-041cb1a0d726","type":"String instrument","name":"Hawaiian guitar"}
|
||||
|
|
@ -1,24 +1,24 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:00:06 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:57:06 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"content-length": "198",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "813",
|
||||
"x-ratelimit-reset": "1533376806",
|
||||
"x-ratelimit-remaining": "1162",
|
||||
"x-ratelimit-reset": "1537138627",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "\"f56cee82b7bf4d4829114fc02992af01\"",
|
||||
"etag": "\"f95245ad7e3d186cda73e6630d3faf35\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/instrument/c0ea0405-ae3f-4851-bf85-277fadff80e2?inc=url-rels&fmt=json",
|
||||
"time": 390,
|
||||
"time": 353,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"name":"Sony Music","relations":[{"type":"discogs","source-credit":"","ended":false,"attribute-values":{},"type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207","attributes":[],"target-type":"url","direction":"forward","url":{"id":"0073173c-2075-4784-a082-8b411b2b7470","resource":"https://www.discogs.com/label/115878"},"end":null,"target-credit":"","begin":null}],"id":"77e1d81b-3098-42b5-8599-8d1e6fd43038","isnis":[],"area":{"name":"Russia","iso-3166-1-codes":["RU"],"id":"1f1fc3a4-9500-39b8-9f10-f0a465557eef","sort-name":"Russia","disambiguation":""},"ipis":[],"disambiguation":"fake label, for bootlegs/counterfeits/pirated releases only","label-code":null,"type":"Bootleg Production","country":"RU","life-span":{"begin":null,"ended":false,"end":null},"type-id":"fdac9b96-359b-3488-9322-ad99c2473636","sort-name":"Sony Music"}
|
||||
{"ipis":[],"isnis":[],"type":"Bootleg Production","area":{"id":"1f1fc3a4-9500-39b8-9f10-f0a465557eef","name":"Russia","iso-3166-1-codes":["RU"],"sort-name":"Russia","disambiguation":""},"label-code":null,"disambiguation":"fake label, for bootlegs/counterfeits/pirated releases only","sort-name":"Sony Music","name":"Sony Music","id":"77e1d81b-3098-42b5-8599-8d1e6fd43038","life-span":{"begin":null,"end":null,"ended":false},"type-id":"fdac9b96-359b-3488-9322-ad99c2473636","country":"RU","relations":[{"type":"discogs","url":{"id":"0073173c-2075-4784-a082-8b411b2b7470","resource":"https://www.discogs.com/label/115878"},"target-type":"url","direction":"forward","source-credit":"","ended":false,"begin":null,"end":null,"attributes":[],"target-credit":"","attribute-values":{},"type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207"}]}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:01:18 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:29 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "935",
|
||||
"x-ratelimit-reset": "1533376879",
|
||||
"x-ratelimit-remaining": "1027",
|
||||
"x-ratelimit-reset": "1537138770",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"c77695d2ea1ae70f88816299b57ed136\"",
|
||||
"etag": "W/\"201d98ba500799d68500f56ca931caf2\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/label/77e1d81b-3098-42b5-8599-8d1e6fd43038?inc=url-rels&fmt=json",
|
||||
"time": 373,
|
||||
"time": 363,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"gender-id":"36d3d30a-839d-3eda-8cb3-29be4384e4a9","sort-name":"Cohen, Leonard","id":"65314b12-0e08-43fa-ba33-baaa7b874c15","name":"Leonard Cohen","ipis":["00006457004"],"disambiguation":"","area":{"name":"Canada","id":"71bbafaa-e825-3e15-8ca9-017dcad1748b","iso-3166-1-codes":["CA"],"disambiguation":"","sort-name":"Canada"},"gender":"Male","type-id":"b6e035f4-3ce9-331c-97df-83397230b0df","end_area":{"id":"1f40c6e1-47ba-4e35-996f-fe6ee5840e62","name":"Los Angeles","sort-name":"Los Angeles","disambiguation":""},"relations":[{"direction":"backward","target-type":"artist","target-credit":"","end":"1967","artist":{"sort-name":"Mitchell, Joni","disambiguation":"","id":"a6de8ef9-b1a1-4756-97aa-481bbb8a4069","name":"Joni Mitchell"},"type-id":"fd3927ba-fd51-4fa9-bcc2-e83637896fe8","ended":true,"begin":"1967","attribute-values":{},"source-credit":"","type":"involved with","attributes":[]},{"artist":{"name":"Adam Cohen","id":"32812b1f-c62e-4625-be28-812c190e5219","sort-name":"Cohen, Adam","disambiguation":"Canadian singer-songwriter"},"type-id":"9421ca84-934f-49fe-9e66-dea242430406","ended":false,"direction":"forward","target-type":"artist","target-credit":"","end":null,"attribute-values":{},"begin":null,"source-credit":"","type":"parent","attributes":[]},{"source-credit":"","begin":null,"attribute-values":{},"attributes":[],"type":"parent","type-id":"9421ca84-934f-49fe-9e66-dea242430406","artist":{"id":"ebbdd5f9-dec6-45c1-a4f4-3794a59ae7f2","name":"Lorca Cohen","sort-name":"Cohen, Lorca","disambiguation":""},"ended":false,"target-type":"artist","direction":"forward","end":null,"target-credit":""},{"type":"tribute","attributes":[],"attribute-values":{},"begin":null,"source-credit":"","ended":false,"artist":{"name":"Conspiracy of Beards","id":"a7b5b5ec-9a6a-47f7-ae01-9f708c448a52","disambiguation":"","sort-name":"Conspiracy of Beards"},"type-id":"a6f62641-2f58-470e-b02b-88d7b984dc9f","target-credit":"","end":null,"direction":"backward","target-type":"artist"},{"end":null,"target-credit":"","target-type":"artist","direction":"backward","ended":false,"type-id":"a6f62641-2f58-470e-b02b-88d7b984dc9f","artist":{"id":"cad3e621-6951-42ca-88c9-ad1a3e5fb97c","name":"Avalanche Quartet","sort-name":"Avalanche Quartet","disambiguation":""},"attributes":[],"type":"tribute","source-credit":"","begin":null,"attribute-values":{}}],"type":"Person","isnis":["0000000110273481"],"life-span":{"begin":"1934-09-21","end":"2016-11-07","ended":true},"country":"CA","begin_area":{"id":"3f504d54-c40c-487d-bc16-c1990eac887f","name":"Westmount","disambiguation":"","sort-name":"Westmount"}}
|
||||
{"relations":[{"direction":"backward","attribute-values":{},"type-id":"fd3927ba-fd51-4fa9-bcc2-e83637896fe8","attributes":[],"type":"involved with","artist":{"disambiguation":"","id":"a6de8ef9-b1a1-4756-97aa-481bbb8a4069","name":"Joni Mitchell","sort-name":"Mitchell, Joni"},"ended":true,"begin":"1967","target-credit":"","target-type":"artist","source-credit":"","end":"1967"},{"ended":false,"target-type":"artist","target-credit":"","begin":null,"source-credit":"","end":null,"type-id":"9421ca84-934f-49fe-9e66-dea242430406","direction":"forward","attribute-values":{},"type":"parent","artist":{"id":"32812b1f-c62e-4625-be28-812c190e5219","disambiguation":"Canadian singer-songwriter","sort-name":"Cohen, Adam","name":"Adam Cohen"},"attributes":[]},{"end":null,"source-credit":"","ended":false,"begin":null,"target-credit":"","target-type":"artist","type":"parent","artist":{"disambiguation":"","id":"ebbdd5f9-dec6-45c1-a4f4-3794a59ae7f2","name":"Lorca Cohen","sort-name":"Cohen, Lorca"},"attributes":[],"type-id":"9421ca84-934f-49fe-9e66-dea242430406","direction":"forward","attribute-values":{}},{"type-id":"a6f62641-2f58-470e-b02b-88d7b984dc9f","attribute-values":{},"direction":"backward","artist":{"id":"a7b5b5ec-9a6a-47f7-ae01-9f708c448a52","disambiguation":"","sort-name":"Conspiracy of Beards","name":"Conspiracy of Beards"},"type":"tribute","attributes":[],"target-credit":"","begin":null,"target-type":"artist","ended":false,"end":null,"source-credit":""},{"attribute-values":{},"direction":"backward","type-id":"a6f62641-2f58-470e-b02b-88d7b984dc9f","attributes":[],"artist":{"id":"cad3e621-6951-42ca-88c9-ad1a3e5fb97c","disambiguation":"","sort-name":"Avalanche Quartet","name":"Avalanche Quartet"},"type":"tribute","begin":null,"target-credit":"","target-type":"artist","ended":false,"end":null,"source-credit":""}],"disambiguation":"","area":{"name":"Canada","sort-name":"Canada","disambiguation":"","iso-3166-1-codes":["CA"],"id":"71bbafaa-e825-3e15-8ca9-017dcad1748b"},"begin_area":{"id":"3f504d54-c40c-487d-bc16-c1990eac887f","disambiguation":"","sort-name":"Westmount","name":"Westmount"},"gender-id":"36d3d30a-839d-3eda-8cb3-29be4384e4a9","country":"CA","ipis":["00006457004"],"name":"Leonard Cohen","sort-name":"Cohen, Leonard","life-span":{"ended":true,"begin":"1934-09-21","end":"2016-11-07"},"isnis":["0000000110273481"],"end_area":{"name":"Los Angeles","sort-name":"Los Angeles","disambiguation":"","id":"1f40c6e1-47ba-4e35-996f-fe6ee5840e62"},"type":"Person","id":"65314b12-0e08-43fa-ba33-baaa7b874c15","type-id":"b6e035f4-3ce9-331c-97df-83397230b0df","gender":"Male"}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:23:42 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:56:56 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "821",
|
||||
"x-ratelimit-reset": "1533374622",
|
||||
"x-ratelimit-remaining": "1001",
|
||||
"x-ratelimit-reset": "1537138617",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"2355e43e2e57ccd0acdda1006dcb894e\"",
|
||||
"etag": "W/\"d654bb19b37c13e1dcc3446f0638838a\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/artist/65314b12-0e08-43fa-ba33-baaa7b874c15?inc=artist-rels&fmt=json",
|
||||
"time": 384,
|
||||
"time": 382,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
See: http://archive.org/download/mbid-533e14a8-519d-4f04-95e8-8a84833f26b1/index.json
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
{
|
||||
"statusCode": 307,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:21:08 GMT",
|
||||
"content-type": "text/plain; charset=utf-8",
|
||||
"content-length": "86",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"location": "http://archive.org/download/mbid-533e14a8-519d-4f04-95e8-8a84833f26b1/index.json",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://coverartarchive.org:80/release/533e14a8-519d-4f04-95e8-8a84833f26b1",
|
||||
"time": 389,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "coverartarchive.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,24 +1,24 @@
|
|||
{
|
||||
"statusCode": 400,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:25:31 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:56:44 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"content-length": "72",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1012",
|
||||
"x-ratelimit-reset": "1533374732",
|
||||
"x-ratelimit-remaining": "998",
|
||||
"x-ratelimit-reset": "1537138605",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "\"d54d2bc5c412c1bb3c02bfc91d13a900\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/artist/5b11f4ce-a62d-471e-81fc-a69a8278c7da?inc=foobar&fmt=json",
|
||||
"time": 342,
|
||||
"time": 358,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -2,21 +2,21 @@
|
|||
"statusCode": 302,
|
||||
"headers": {
|
||||
"server": "nginx/1.4.6 (Ubuntu)",
|
||||
"date": "Sat, 04 Aug 2018 09:21:08 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:20 GMT",
|
||||
"content-type": "text/html; charset=UTF-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"access-control-allow-origin": "*",
|
||||
"accept-ranges": "bytes",
|
||||
"location": "http://ia801208.us.archive.org/31/items/mbid-ee773571-6147-4bfd-8ea1-d666c4d4caef/index.json",
|
||||
"strict-transport-security": "max-age=604800"
|
||||
"strict-transport-security": "max-age=2592000"
|
||||
},
|
||||
"url": "http://archive.org:80/download/mbid-ee773571-6147-4bfd-8ea1-d666c4d4caef/index.json",
|
||||
"time": 279,
|
||||
"time": 91,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json",
|
||||
"referer": "http://coverartarchive.org/release/ee773571-6147-4bfd-8ea1-d666c4d4caef",
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"sort-name":"Sony Soho Square","relations":[{"target-credit":"","type":"discogs","source-credit":"","attribute-values":{},"ended":false,"attributes":[],"begin":null,"type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207","end":null,"direction":"forward","url":{"resource":"https://www.discogs.com/label/673","id":"a8b71a48-a54d-418a-942c-3cbfeae3ae2e"},"target-type":"url"},{"ended":false,"type":"wikidata","source-credit":"","attribute-values":{},"target-credit":"","end":null,"direction":"forward","target-type":"url","url":{"id":"ad078371-f086-47a2-84d7-ee61042ee45e","resource":"https://www.wikidata.org/wiki/Q7388256"},"type-id":"75d87e83-d927-4580-ba63-44dc76256f98","attributes":[],"begin":null}],"country":"GB","type-id":"7aaa37fe-2def-3476-b359-80245850062d","area":{"disambiguation":"","iso-3166-1-codes":["GB"],"name":"United Kingdom","id":"8a754a16-0027-3a29-b6d7-2b40ea0481ed","sort-name":"United Kingdom"},"id":"a2afa55a-ec15-4053-a273-bf8ce523a793","label-code":6140,"disambiguation":"","life-span":{"begin":null,"ended":false,"end":null},"ipis":[],"name":"Sony Soho Square","isnis":[],"type":"Original Production"}
|
||||
{"country":"GB","name":"Sony Soho Square","ipis":[],"life-span":{"begin":null,"ended":false,"end":null},"relations":[{"type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207","attribute-values":{},"begin":null,"direction":"forward","type":"discogs","target-credit":"","ended":false,"url":{"id":"a8b71a48-a54d-418a-942c-3cbfeae3ae2e","resource":"https://www.discogs.com/label/673"},"target-type":"url","source-credit":"","end":null,"attributes":[]},{"attributes":[],"direction":"forward","begin":null,"type-id":"75d87e83-d927-4580-ba63-44dc76256f98","attribute-values":{},"ended":false,"target-credit":"","type":"wikidata","url":{"id":"ad078371-f086-47a2-84d7-ee61042ee45e","resource":"https://www.wikidata.org/wiki/Q7388256"},"source-credit":"","end":null,"target-type":"url"}],"area":{"disambiguation":"","sort-name":"United Kingdom","id":"8a754a16-0027-3a29-b6d7-2b40ea0481ed","name":"United Kingdom","iso-3166-1-codes":["GB"]},"disambiguation":"","id":"a2afa55a-ec15-4053-a273-bf8ce523a793","isnis":[],"type":"Original Production","label-code":6140,"sort-name":"Sony Soho Square","type-id":"7aaa37fe-2def-3476-b359-80245850062d"}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:00:50 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:58:34 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "823",
|
||||
"x-ratelimit-reset": "1533376851",
|
||||
"x-ratelimit-remaining": "738",
|
||||
"x-ratelimit-reset": "1537138714",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"37c1d5df9d73213f6aba8ef62a21f011\"",
|
||||
"etag": "W/\"ee7264d7e5c77e782f1259021d487d3f\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/label/a2afa55a-ec15-4053-a273-bf8ce523a793?inc=url-rels&fmt=json",
|
||||
"time": 374,
|
||||
"time": 388,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -2,27 +2,27 @@
|
|||
"statusCode": 200,
|
||||
"headers": {
|
||||
"server": "nginx/1.4.6 (Ubuntu)",
|
||||
"date": "Sat, 04 Aug 2018 09:21:07 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:19 GMT",
|
||||
"content-type": "application/json",
|
||||
"content-length": "1383",
|
||||
"last-modified": "Sun, 06 Nov 2016 10:02:39 GMT",
|
||||
"connection": "keep-alive",
|
||||
"etag": "\"581effbf-567\"",
|
||||
"expires": "Sat, 04 Aug 2018 15:21:07 GMT",
|
||||
"expires": "Mon, 17 Sep 2018 04:59:19 GMT",
|
||||
"cache-control": "max-age=21600",
|
||||
"access-control-allow-origin": "*",
|
||||
"accept-ranges": "bytes"
|
||||
},
|
||||
"url": "http://ia801907.us.archive.org:80/22/items/mbid-dd15903e-0ee7-45ec-aba1-2fc7b3a44e19/index.json",
|
||||
"time": 85,
|
||||
"url": "http://ia601907.us.archive.org:80/22/items/mbid-dd15903e-0ee7-45ec-aba1-2fc7b3a44e19/index.json",
|
||||
"time": 123,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json",
|
||||
"referer": "http://archive.org/download/mbid-dd15903e-0ee7-45ec-aba1-2fc7b3a44e19/index.json",
|
||||
"host": "ia801907.us.archive.org"
|
||||
"host": "ia601907.us.archive.org"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -1,24 +1,24 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:21:06 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:18 GMT",
|
||||
"content-type": "application/json",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1092",
|
||||
"x-ratelimit-reset": "1533374468",
|
||||
"last-modified": "Sat, 04 Aug 2018 09:19:49 GMT",
|
||||
"etag": "\"MTdmMDIwMDAwMDAwMDAwMFNvbHI=\"",
|
||||
"x-ratelimit-remaining": "1141",
|
||||
"x-ratelimit-reset": "1537138760",
|
||||
"last-modified": "Sun, 16 Sep 2018 22:58:36 GMT",
|
||||
"etag": "\"MTIxZmUwMDAwMDAwMDAwMFNvbHI=\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/release?query=You%20Want%20It%20Darker&fmt=json",
|
||||
"time": 456,
|
||||
"time": 453,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"statusCode": 400,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:21:12 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:22 GMT",
|
||||
"content-type": "text/html",
|
||||
"content-length": "138",
|
||||
"connection": "keep-alive",
|
||||
|
|
@ -9,11 +9,11 @@
|
|||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://coverartarchive.org:80/release/xyz",
|
||||
"time": 342,
|
||||
"time": 421,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "coverartarchive.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"name":"CBS/Sony","isnis":[],"type":"Imprint","life-span":{"begin":"1978","ended":true,"end":"1991-04"},"ipis":[],"label-code":null,"disambiguation":"HK","sort-name":"CBS/Sony","relations":[{"target-type":"url","url":{"resource":"https://www.discogs.com/label/33078","id":"f1e6708e-9b0c-4656-aa0a-25d580e3b24e"},"end":null,"direction":"forward","type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207","begin":null,"attributes":[],"ended":false,"source-credit":"","type":"discogs","attribute-values":{},"target-credit":""},{"url":{"resource":"http://i47.twitgoo.com/23lmqtl.jpg","id":"f2c03692-249f-42f5-97b4-1c0ed9eb8bee"},"target-type":"url","end":null,"direction":"forward","begin":null,"attributes":[],"type-id":"b35f7822-bf3c-4148-b306-fb723c63ee8b","attribute-values":{},"source-credit":"","type":"logo","ended":false,"target-credit":""}],"country":"HK","type-id":"b6285b2a-3514-3d43-80df-fcf528824ded","id":"494b1bfc-a97f-4ab4-bc56-c5b4e3b66b68","area":{"sort-name":"Hong Kong","id":"0373cdff-eac8-3fbc-92dc-36a607da06d1","iso-3166-2-codes":["CN-91"],"name":"Hong Kong","iso-3166-1-codes":["HK"],"disambiguation":""}}
|
||||
{"sort-name":"CBS/Sony","label-code":null,"id":"494b1bfc-a97f-4ab4-bc56-c5b4e3b66b68","area":{"sort-name":"Hong Kong","id":"0373cdff-eac8-3fbc-92dc-36a607da06d1","iso-3166-2-codes":["CN-91"],"disambiguation":"","name":"Hong Kong","iso-3166-1-codes":["HK"]},"relations":[{"end":null,"begin":null,"attribute-values":{},"direction":"forward","source-credit":"","target-credit":"","target-type":"url","url":{"resource":"https://www.discogs.com/label/33078","id":"f1e6708e-9b0c-4656-aa0a-25d580e3b24e"},"attributes":[],"type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207","type":"discogs","ended":false},{"begin":null,"attribute-values":{},"end":null,"source-credit":"","target-credit":"","direction":"forward","attributes":[],"url":{"id":"f2c03692-249f-42f5-97b4-1c0ed9eb8bee","resource":"http://i47.twitgoo.com/23lmqtl.jpg"},"target-type":"url","type":"logo","type-id":"b35f7822-bf3c-4148-b306-fb723c63ee8b","ended":false}],"ipis":[],"country":"HK","life-span":{"ended":true,"begin":"1978","end":"1991-04"},"type":"Imprint","type-id":"b6285b2a-3514-3d43-80df-fcf528824ded","name":"CBS/Sony","disambiguation":"HK","isnis":[]}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:00:45 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:58:23 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1147",
|
||||
"x-ratelimit-reset": "1533376846",
|
||||
"x-ratelimit-remaining": "967",
|
||||
"x-ratelimit-reset": "1537138704",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"94c4a076c85a3239478c8924e2091bd7\"",
|
||||
"etag": "W/\"6c4bce65df362db7d621eeecd01ffdaa\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/label/494b1bfc-a97f-4ab4-bc56-c5b4e3b66b68?inc=url-rels&fmt=json",
|
||||
"time": 380,
|
||||
"time": 410,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"type-id":"7aaa37fe-2def-3476-b359-80245850062d","label-code":8323,"isnis":[],"disambiguation":"","ipis":[],"type":"Original Production","id":"38dc88de-7720-4100-9d5b-3cdc41b0c474","sort-name":"Sub Pop Records","life-span":{"end":null,"begin":"1979","ended":false},"country":"US","tags":[{"name":"american","count":1},{"count":1,"name":"américain"},{"name":"folk","count":1},{"count":1,"name":"indie folk"},{"count":1,"name":"usa"}],"area":{"disambiguation":"","name":"United States","iso-3166-1-codes":["US"],"id":"489ce91b-6658-3307-9877-795b68554c98","sort-name":"United States"},"name":"Sub Pop Records"}
|
||||
{"disambiguation":"","area":{"sort-name":"United States","disambiguation":"","id":"489ce91b-6658-3307-9877-795b68554c98","name":"United States","iso-3166-1-codes":["US"]},"country":"US","name":"Sub Pop Records","life-span":{"begin":"1979","ended":false,"end":null},"ipis":[],"tags":[{"count":1,"name":"american"},{"count":1,"name":"américain"},{"count":1,"name":"folk"},{"count":1,"name":"indie folk"},{"count":1,"name":"usa"}],"type":"Original Production","label-code":8323,"sort-name":"Sub Pop Records","type-id":"7aaa37fe-2def-3476-b359-80245850062d","id":"38dc88de-7720-4100-9d5b-3cdc41b0c474","isnis":[]}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:25:29 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:58:13 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1004",
|
||||
"x-ratelimit-reset": "1533374730",
|
||||
"x-ratelimit-remaining": "852",
|
||||
"x-ratelimit-reset": "1537138694",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"8b6273e27bbb58c595cbe4ce1e5e1e75\"",
|
||||
"etag": "W/\"b1ed2118b5ea7de139b2d8543f8a0deb\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/label/38dc88de-7720-4100-9d5b-3cdc41b0c474?inc=tags&fmt=json",
|
||||
"time": 352,
|
||||
"time": 363,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
{"images":[{"approved":true,"back":false,"comment":"","edit":49297056,"front":true,"id":18411768301,"image":"http://coverartarchive.org/release/35847092-d9f1-430a-aed7-f4ee93fb21a6/18411768301.jpg","thumbnails":{"1200":"http://coverartarchive.org/release/35847092-d9f1-430a-aed7-f4ee93fb21a6/18411768301-1200.jpg","250":"http://coverartarchive.org/release/35847092-d9f1-430a-aed7-f4ee93fb21a6/18411768301-250.jpg","500":"http://coverartarchive.org/release/35847092-d9f1-430a-aed7-f4ee93fb21a6/18411768301-500.jpg","large":"http://coverartarchive.org/release/35847092-d9f1-430a-aed7-f4ee93fb21a6/18411768301-500.jpg","small":"http://coverartarchive.org/release/35847092-d9f1-430a-aed7-f4ee93fb21a6/18411768301-250.jpg"},"types":["Front"]}],"release":"https://musicbrainz.org/release/35847092-d9f1-430a-aed7-f4ee93fb21a6"}
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"server": "nginx/1.4.6 (Ubuntu)",
|
||||
"date": "Sat, 04 Aug 2018 09:21:09 GMT",
|
||||
"content-type": "application/json",
|
||||
"content-length": "820",
|
||||
"last-modified": "Sat, 03 Mar 2018 09:39:46 GMT",
|
||||
"connection": "keep-alive",
|
||||
"etag": "\"5a9a6d62-334\"",
|
||||
"expires": "Sat, 04 Aug 2018 15:21:09 GMT",
|
||||
"cache-control": "max-age=21600",
|
||||
"access-control-allow-origin": "*",
|
||||
"accept-ranges": "bytes"
|
||||
},
|
||||
"url": "http://ia800601.us.archive.org:80/20/items/mbid-35847092-d9f1-430a-aed7-f4ee93fb21a6/index.json",
|
||||
"time": 195,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json",
|
||||
"referer": "http://archive.org/download/mbid-35847092-d9f1-430a-aed7-f4ee93fb21a6/index.json",
|
||||
"host": "ia800601.us.archive.org"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1 +1 @@
|
|||
{"disambiguation":"this is a dubious label; read annotations","label-code":null,"type":null,"relations":[],"isnis":[],"area":null,"life-span":{"ended":false,"end":null,"begin":null},"country":null,"sort-name":"Sony International","id":"855855b1-4210-48e5-b1b7-86772f842759","name":"Sony International","type-id":null,"ipis":[]}
|
||||
{"country":null,"name":"Sony International","id":"855855b1-4210-48e5-b1b7-86772f842759","ipis":[],"relations":[],"sort-name":"Sony International","isnis":[],"life-span":{"begin":null,"ended":false,"end":null},"type-id":null,"type":null,"area":null,"disambiguation":"this is a dubious label; read annotations","label-code":null}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:00:39 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:58:12 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1030",
|
||||
"x-ratelimit-reset": "1533376840",
|
||||
"x-ratelimit-remaining": "1189",
|
||||
"x-ratelimit-reset": "1537138694",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"d0c854213194e5aa3543b42873f0d778\"",
|
||||
"etag": "W/\"eab837f7f2c0cc41ccc3d8471a0c840f\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/label/855855b1-4210-48e5-b1b7-86772f842759?inc=url-rels&fmt=json",
|
||||
"time": 425,
|
||||
"time": 381,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:00:01 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:56:55 GMT",
|
||||
"content-type": "application/json",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1118",
|
||||
"x-ratelimit-reset": "1533376802",
|
||||
"last-modified": "Sat, 04 Aug 2018 09:54:52 GMT",
|
||||
"etag": "W/\"N2M5YzAwMDAwMDAwMDAwMFNvbHI=\"",
|
||||
"x-ratelimit-remaining": "908",
|
||||
"x-ratelimit-reset": "1537138615",
|
||||
"last-modified": "Sun, 16 Sep 2018 22:36:14 GMT",
|
||||
"etag": "W/\"NmNkNjAwMDAwMDAwMDAwMFNvbHI=\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/label?limit=50&query=Sony&fmt=json",
|
||||
"time": 413,
|
||||
"time": 383,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -5,16 +5,16 @@
|
|||
"server": "Microsoft-IIS/7.0",
|
||||
"x-powered-by": "PHP/5.6.0, ASP.NET",
|
||||
"access-control-allow-origin": "*",
|
||||
"date": "Sat, 04 Aug 2018 18:46:04 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:56:50 GMT",
|
||||
"connection": "close",
|
||||
"content-length": "8938"
|
||||
"content-length": "9078"
|
||||
},
|
||||
"url": "https://www.theaudiodb.com:443/api/v1/json/1/album-mb.php?i=aa997ea0-2936-40bd-884d-3af8a0e064dc",
|
||||
"time": 1086,
|
||||
"time": 1347,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "www.theaudiodb.com",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"area":{"iso-3166-1-codes":["FI"],"disambiguation":"","sort-name":"Finland","name":"Finland","id":"6a264f94-6ff1-30b1-9a81-41f7bfabd616"},"name":"EMI Finland","type":"Original Production","label-code":null,"country":"FI","type-id":"7aaa37fe-2def-3476-b359-80245850062d","id":"4c418bbc-9e5a-442f-876c-eb40126b772d","ipis":[],"isnis":[],"disambiguation":"","sort-name":"EMI Finland","life-span":{"end":null,"ended":false,"begin":"1972"},"rating":{"value":null,"votes-count":0}}
|
||||
{"life-span":{"end":null,"ended":false,"begin":"1972"},"type-id":"7aaa37fe-2def-3476-b359-80245850062d","type":"Original Production","disambiguation":"","area":{"id":"6a264f94-6ff1-30b1-9a81-41f7bfabd616","disambiguation":"","iso-3166-1-codes":["FI"],"sort-name":"Finland","name":"Finland"},"label-code":null,"isnis":[],"sort-name":"EMI Finland","ipis":[],"id":"4c418bbc-9e5a-442f-876c-eb40126b772d","rating":{"value":null,"votes-count":0},"name":"EMI Finland","country":"FI"}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:24:34 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:08 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "881",
|
||||
"x-ratelimit-reset": "1533374674",
|
||||
"x-ratelimit-remaining": "1089",
|
||||
"x-ratelimit-reset": "1537138750",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"64759af3f09614242c2ab552a7e06a75\"",
|
||||
"etag": "W/\"30dc81a022c7564d232c5d4e1ac9ba4d\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/label/4c418bbc-9e5a-442f-876c-eb40126b772d?inc=ratings&fmt=json",
|
||||
"time": 388,
|
||||
"time": 365,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -2,27 +2,27 @@
|
|||
"statusCode": 200,
|
||||
"headers": {
|
||||
"server": "nginx/1.4.6 (Ubuntu)",
|
||||
"date": "Sat, 04 Aug 2018 09:21:11 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:23 GMT",
|
||||
"content-type": "application/json",
|
||||
"content-length": "1358",
|
||||
"last-modified": "Mon, 22 Jun 2015 14:56:27 GMT",
|
||||
"connection": "keep-alive",
|
||||
"etag": "\"5588221b-54e\"",
|
||||
"expires": "Sat, 04 Aug 2018 15:21:11 GMT",
|
||||
"expires": "Mon, 17 Sep 2018 04:59:23 GMT",
|
||||
"cache-control": "max-age=21600",
|
||||
"access-control-allow-origin": "*",
|
||||
"accept-ranges": "bytes"
|
||||
},
|
||||
"url": "http://ia802607.us.archive.org:80/32/items/mbid-76df3287-6cda-33eb-8e9a-044b5e15ffdd/index.json",
|
||||
"time": 73,
|
||||
"url": "http://ia902607.us.archive.org:80/32/items/mbid-76df3287-6cda-33eb-8e9a-044b5e15ffdd/index.json",
|
||||
"time": 160,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json",
|
||||
"referer": "http://archive.org/download/mbid-76df3287-6cda-33eb-8e9a-044b5e15ffdd/index.json",
|
||||
"host": "ia802607.us.archive.org"
|
||||
"host": "ia902607.us.archive.org"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"statusCode": 404,
|
||||
"headers": {
|
||||
"server": "nginx/1.10.1 (Ubuntu)",
|
||||
"date": "Sat, 04 Aug 2018 09:21:02 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:57:18 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
|
|
@ -10,11 +10,11 @@
|
|||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://webservice.fanart.tv:80/v3/music/0cf56645-50ec-4411-aeb6-c9f4ce0f8edb?api_key=d9e25d5beda1027a1674c1585882309e",
|
||||
"time": 326,
|
||||
"time": 321,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "webservice.fanart.tv",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"releases":[{"status-id":"4e304316-386d-3409-af2e-78857eec5cfe","title":"The Dark Side of the Moon","barcode":"","asin":null,"media":[{"track-count":9,"position":1,"discs":[{"offset-count":9,"offsets":[150,18190,34163,66150,87453,116853,151413,166833,184123],"id":"TMXdzZkTcc9Jq24PD0w5J9_AXms-","sectors":193443},{"offset-count":9,"offsets":[150,17960,33857,65742,87272,116037,151202,166622,183905],"id":"rKs_PWM2y.8B7uVgxqJqzTDz7vs-","sectors":193405}],"format-id":"9712d52a-4509-3d4b-a1a2-67c88c643e31","format":"CD","title":""}],"date":"1983-05-21","text-representation":{"language":"eng","script":"Latn"},"cover-art-archive":{"back":true,"artwork":true,"front":true,"darkened":false,"count":5},"packaging-id":"ec27701a-4a22-37f4-bfac-6616e0f9750a","quality":"normal","disambiguation":"","release-events":[{"area":{"iso-3166-1-codes":["JP"],"id":"2db42837-c832-3c27-b4a3-08198f75693c","sort-name":"Japan","disambiguation":"","name":"Japan"},"date":"1983-05-21"}],"packaging":"Jewel Case","id":"7f6d3088-837d-495e-905f-be5c70ac2d82","country":"JP","status":"Official"}],"offset-count":9,"offsets":[150,18190,34163,66150,87453,116853,151413,166833,184123],"id":"TMXdzZkTcc9Jq24PD0w5J9_AXms-","sectors":193443}
|
||||
{"offsets":[150,18190,34163,66150,87453,116853,151413,166833,184123],"offset-count":9,"id":"TMXdzZkTcc9Jq24PD0w5J9_AXms-","sectors":193443,"releases":[{"id":"7f6d3088-837d-495e-905f-be5c70ac2d82","disambiguation":"","media":[{"format-id":"9712d52a-4509-3d4b-a1a2-67c88c643e31","format":"CD","discs":[{"offset-count":9,"id":"TMXdzZkTcc9Jq24PD0w5J9_AXms-","offsets":[150,18190,34163,66150,87453,116853,151413,166833,184123],"sectors":193443},{"offset-count":9,"id":"rKs_PWM2y.8B7uVgxqJqzTDz7vs-","offsets":[150,17960,33857,65742,87272,116037,151202,166622,183905],"sectors":193405}],"position":1,"track-count":9,"title":""}],"barcode":"","cover-art-archive":{"front":true,"darkened":false,"count":5,"artwork":true,"back":true},"status":"Official","country":"JP","date":"1983-05-21","quality":"normal","text-representation":{"language":"eng","script":"Latn"},"status-id":"4e304316-386d-3409-af2e-78857eec5cfe","release-events":[{"area":{"disambiguation":"","name":"Japan","sort-name":"Japan","id":"2db42837-c832-3c27-b4a3-08198f75693c","iso-3166-1-codes":["JP"]},"date":"1983-05-21"}],"packaging":"Jewel Case","packaging-id":"ec27701a-4a22-37f4-bfac-6616e0f9750a","asin":null,"title":"The Dark Side of the Moon"}]}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:32:25 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:58:13 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1081",
|
||||
"x-ratelimit-reset": "1533378746",
|
||||
"x-ratelimit-remaining": "853",
|
||||
"x-ratelimit-reset": "1537138694",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"c956839d239a687295106a612a5a01e9\"",
|
||||
"etag": "W/\"e866185b1355198622e62a3f1d080b4b\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/discid/TMXdzZkTcc9Jq24PD0w5J9_AXms-?fmt=json",
|
||||
"time": 404,
|
||||
"time": 389,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"life-span":{"ended":true,"begin":"1991","end":"1997"},"country":"ES","id":"e88e09bd-5ab1-48d3-8b4d-c1631f8fe1b7","sort-name":"CBS/Sony","type":"Imprint","name":"CBS/Sony","area":{"iso-3166-1-codes":["ES"],"sort-name":"Spain","id":"471c46a7-afc5-31c4-923c-d0444f5053a4","disambiguation":"","name":"Spain"},"relations":[{"target-credit":"","source-credit":"","ended":false,"url":{"id":"f1e6708e-9b0c-4656-aa0a-25d580e3b24e","resource":"https://www.discogs.com/label/33078"},"end":null,"type":"discogs","target-type":"url","direction":"forward","begin":null,"attribute-values":{},"attributes":[],"type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207"},{"end":null,"type":"logo","ended":false,"url":{"resource":"http://i47.twitgoo.com/23lmqtl.jpg","id":"f2c03692-249f-42f5-97b4-1c0ed9eb8bee"},"source-credit":"","target-credit":"","attributes":[],"attribute-values":{},"type-id":"b35f7822-bf3c-4148-b306-fb723c63ee8b","begin":null,"target-type":"url","direction":"forward"}],"label-code":null,"type-id":"b6285b2a-3514-3d43-80df-fcf528824ded","ipis":[],"disambiguation":"ES","isnis":[]}
|
||||
{"label-code":null,"sort-name":"CBS/Sony","type-id":"b6285b2a-3514-3d43-80df-fcf528824ded","type":"Imprint","name":"CBS/Sony","isnis":[],"ipis":[],"area":{"name":"Spain","iso-3166-1-codes":["ES"],"id":"471c46a7-afc5-31c4-923c-d0444f5053a4","sort-name":"Spain","disambiguation":""},"disambiguation":"ES","id":"e88e09bd-5ab1-48d3-8b4d-c1631f8fe1b7","country":"ES","life-span":{"end":"1997","ended":true,"begin":"1991"},"relations":[{"end":null,"attributes":[],"source-credit":"","direction":"forward","url":{"resource":"https://www.discogs.com/label/33078","id":"f1e6708e-9b0c-4656-aa0a-25d580e3b24e"},"begin":null,"target-credit":"","type":"discogs","ended":false,"type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207","attribute-values":{},"target-type":"url"},{"attribute-values":{},"target-credit":"","type":"logo","type-id":"b35f7822-bf3c-4148-b306-fb723c63ee8b","ended":false,"target-type":"url","end":null,"attributes":[],"begin":null,"source-credit":"","url":{"resource":"http://i47.twitgoo.com/23lmqtl.jpg","id":"f2c03692-249f-42f5-97b4-1c0ed9eb8bee"},"direction":"forward"}]}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:00:45 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:58:23 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1146",
|
||||
"x-ratelimit-reset": "1533376846",
|
||||
"x-ratelimit-remaining": "966",
|
||||
"x-ratelimit-reset": "1537138704",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"9f72369098d5875148b1e0eccbb30250\"",
|
||||
"etag": "W/\"42513ef25a81e4fc3ce721e805ebaa51\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/label/e88e09bd-5ab1-48d3-8b4d-c1631f8fe1b7?inc=url-rels&fmt=json",
|
||||
"time": 395,
|
||||
"time": 405,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"area":{"name":"United States","disambiguation":"","sort-name":"United States","id":"489ce91b-6658-3307-9877-795b68554c98","iso-3166-1-codes":["US"]},"name":"550 Music","type":"Production","id":"65f85c42-92a0-489c-a921-d804acba29b1","sort-name":"550 Music","country":"US","life-span":{"end":"2000","begin":"1992","ended":true},"isnis":[],"disambiguation":"","ipis":[],"type-id":"a2426aab-2dd4-339c-b47d-b4923a241678","label-code":5257,"relations":[{"target-credit":"","source-credit":"","ended":false,"url":{"resource":"https://www.discogs.com/label/3578","id":"61a9df50-6271-4413-bfa1-5e8d9028739b"},"type":"discogs","end":null,"target-type":"url","direction":"forward","begin":null,"attribute-values":{},"attributes":[],"type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207"},{"target-credit":"","source-credit":"","url":{"resource":"https://rymimg.com/lk/f/b/0efb78ffc4de845121fc42391787143f/152071.jpeg","id":"6e81cd57-db2e-4b4c-8de7-8b5ff937c8c9"},"ended":false,"end":null,"type":"logo","direction":"forward","target-type":"url","begin":null,"type-id":"b35f7822-bf3c-4148-b306-fb723c63ee8b","attribute-values":{},"attributes":[]},{"end":null,"type":"other databases","url":{"resource":"https://rateyourmusic.com/label/550_music/","id":"06338dd6-afaf-494b-8ed4-5c14eb799968"},"ended":false,"source-credit":"","target-credit":"","type-id":"83eca2b3-5ae1-43f5-a732-56fa9a8591b1","attribute-values":{},"attributes":[],"begin":null,"direction":"forward","target-type":"url"},{"target-credit":"","source-credit":"","ended":false,"url":{"id":"fe469108-9f97-418f-b2f2-10b8cc530c90","resource":"https://www.wikidata.org/wiki/Q4352944"},"type":"wikidata","end":null,"target-type":"url","direction":"forward","begin":null,"attributes":[],"attribute-values":{},"type-id":"75d87e83-d927-4580-ba63-44dc76256f98"}]}
|
||||
{"sort-name":"550 Music","disambiguation":"","label-code":5257,"area":{"id":"489ce91b-6658-3307-9877-795b68554c98","name":"United States","sort-name":"United States","disambiguation":"","iso-3166-1-codes":["US"]},"type":"Production","isnis":[],"ipis":[],"country":"US","relations":[{"source-credit":"","direction":"forward","target-type":"url","url":{"resource":"https://www.discogs.com/label/3578","id":"61a9df50-6271-4413-bfa1-5e8d9028739b"},"type":"discogs","type-id":"5b987f87-25bc-4a2d-b3f1-3618795b8207","attribute-values":{},"target-credit":"","attributes":[],"end":null,"begin":null,"ended":false},{"attribute-values":{},"target-credit":"","type-id":"b35f7822-bf3c-4148-b306-fb723c63ee8b","begin":null,"end":null,"attributes":[],"ended":false,"direction":"forward","source-credit":"","url":{"resource":"https://rymimg.com/lk/f/b/0efb78ffc4de845121fc42391787143f/152071.jpeg","id":"6e81cd57-db2e-4b4c-8de7-8b5ff937c8c9"},"target-type":"url","type":"logo"},{"type":"other databases","direction":"forward","source-credit":"","url":{"id":"06338dd6-afaf-494b-8ed4-5c14eb799968","resource":"https://rateyourmusic.com/label/550_music/"},"target-type":"url","begin":null,"end":null,"attributes":[],"ended":false,"attribute-values":{},"target-credit":"","type-id":"83eca2b3-5ae1-43f5-a732-56fa9a8591b1"},{"type":"wikidata","url":{"id":"fe469108-9f97-418f-b2f2-10b8cc530c90","resource":"https://www.wikidata.org/wiki/Q4352944"},"target-type":"url","direction":"forward","source-credit":"","ended":false,"end":null,"begin":null,"attributes":[],"target-credit":"","attribute-values":{},"type-id":"75d87e83-d927-4580-ba63-44dc76256f98"}],"type-id":"a2426aab-2dd4-339c-b47d-b4923a241678","id":"65f85c42-92a0-489c-a921-d804acba29b1","life-span":{"end":"2000","begin":"1992","ended":true},"name":"550 Music"}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 10:01:18 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:29 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "929",
|
||||
"x-ratelimit-reset": "1533376879",
|
||||
"x-ratelimit-remaining": "1026",
|
||||
"x-ratelimit-reset": "1537138770",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"da4d54d9d5cfbb8a18ded87256340f33\"",
|
||||
"etag": "W/\"8741b035769a5275d253f3ca358fc540\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/label/65f85c42-92a0-489c-a921-d804acba29b1?inc=url-rels&fmt=json",
|
||||
"time": 414,
|
||||
"time": 392,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"label-code":null,"disambiguation":"","sort-name":"Photo Finish Records","country":null,"type-id":null,"area":null,"id":"abf92a54-dcc5-4264-9f00-2cb2ceb26a45","name":"Photo Finish Records","isnis":[],"type":null,"rating":{"votes-count":0,"value":null},"life-span":{"ended":false,"end":null,"begin":"2006"},"ipis":[]}
|
||||
{"type-id":null,"country":null,"name":"Photo Finish Records","id":"abf92a54-dcc5-4264-9f00-2cb2ceb26a45","life-span":{"ended":false,"end":null,"begin":"2006"},"rating":{"votes-count":0,"value":null},"area":null,"label-code":null,"disambiguation":"","sort-name":"Photo Finish Records","ipis":[],"isnis":[],"type":null}
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"statusCode": 200,
|
||||
"headers": {
|
||||
"date": "Sat, 04 Aug 2018 09:24:45 GMT",
|
||||
"date": "Sun, 16 Sep 2018 22:59:30 GMT",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"transfer-encoding": "chunked",
|
||||
"connection": "keep-alive",
|
||||
"keep-alive": "timeout=15",
|
||||
"vary": "Accept-Encoding",
|
||||
"x-ratelimit-limit": "1200",
|
||||
"x-ratelimit-remaining": "1069",
|
||||
"x-ratelimit-reset": "1533374686",
|
||||
"x-ratelimit-remaining": "1086",
|
||||
"x-ratelimit-reset": "1537138772",
|
||||
"server": "Plack::Handler::Starlet",
|
||||
"etag": "W/\"74b32f47490cc955026c1f268b675570\"",
|
||||
"etag": "W/\"3589bf6f3ecd7ba736d7a9a78107f25e\"",
|
||||
"access-control-allow-origin": "*"
|
||||
},
|
||||
"url": "http://musicbrainz.org:80/ws/2/label/abf92a54-dcc5-4264-9f00-2cb2ceb26a45?inc=ratings&fmt=json",
|
||||
"time": 378,
|
||||
"time": 384,
|
||||
"request": {
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"User-Agent": "graphbrainz/7.3.0 ( https://github.com/exogen/graphbrainz )",
|
||||
"User-Agent": "graphbrainz/8.0.3 ( https://github.com/exogen/graphbrainz )",
|
||||
"host": "musicbrainz.org",
|
||||
"accept-encoding": "gzip, deflate",
|
||||
"accept": "application/json"
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue