diff options
-rw-r--r-- | skate/schema_test.go | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/skate/schema_test.go b/skate/schema_test.go index ecc46c6..5bc1acc 100644 --- a/skate/schema_test.go +++ b/skate/schema_test.go @@ -109,11 +109,15 @@ func TestOpenLibraryToRelease(t *testing.T) { } `json:"rg,omitempty"` } `json:"skate,omitempty"` OpenLibrary struct { - HasFulltext bool `json:"has_fulltext,omitempty"` + HasFulltext bool `json:"has_fulltext,omitempty"` + WorkID string `json:"work,omitempty"` + SourceRecords []string `json:"source_records,omitempty"` } `json:"ol,omitempty"` }{ OpenLibrary: struct { - HasFulltext bool `json:"has_fulltext,omitempty"` + HasFulltext bool `json:"has_fulltext,omitempty"` + WorkID string `json:"work,omitempty"` + SourceRecords []string `json:"source_records,omitempty"` }{ HasFulltext: false, }, |