0xx
- 000
- 001
- 003
- 005
- 006
- 007
- 008
- 009
- 010
- 013
- 015
- 016
- 017
- 018
- 020
- 022
- 024
- 025
- 026
- 027
- 028
- 030
- 031
- 032
- 033
- 034
- 035
- 036
- 037
- 038
- 040
- 041
- 042
- 043
- 044
- 045
- 046
- 047
- 048
- 049
- 050
- 051
- 052
- 055
- 060
- 061
- 066
- 070
- 071
- 072
- 074
- 080
- 082
- 083
- 084
- 085
- 086
- 088
- 090
- 092
- 096
- 098
- 099
3xx
- 300
- 306
- 307
- 310
- 321
- 336
- 337
- 338
- 340
- 341
- 342
- 343
- 344
- 345
- 346
- 347
- 348
- 350
- 351
- 352
- 355
- 357
- 362
- 363
- 365
- 366
- 370
- 377
- 380
- 381
- 382
- 383
- 384
- 385
- 386
- 388
5xx
- 500
- 501
- 502
- 504
- 505
- 506
- 507
- 508
- 510
- 511
- 513
- 514
- 515
- 516
- 518
- 520
- 521
- 522
- 524
- 525
- 526
- 530
- 532
- 533
- 534
- 535
- 536
- 538
- 540
- 541
- 542
- 544
- 545
- 546
- 547
- 550
- 552
- 555
- 556
- 561
- 562
- 563
- 565
- 567
- 580
- 581
- 583
- 584
- 585
- 586
- 588
- 590
- 599
7xx
- 700
- 710
- 711
- 720
- 730
- 740
- 751
- 752
- 753
- 754
- 755
- 758
- 760
- 762
- 765
- 767
- 770
- 772
- 773
- 774
- 775
- 776
- 777
- 780
- 785
- 786
- 787
BIB-111
Gå till exempeladdLink
resourceType
aboutAlias
_:contribution
i1
marcDefault
2
FIXME
Change subfield order in specs. Bug in orderedAndGroupedSubfields
TODO:$j
$6
property
$n
$0
about
_:agent
addProperty
Exempel
Gå till toppen av sidanExempel: -
MARC
{ "111": { "ind1": "1", "ind2": " ", "subfields": [ { "a": "Paris" }, { "q": "Peace Conference" }, { "d": "1919" }, { "g": "Projected, not held" } ] } }
Normalized MARC:
{ "111": { "ind1": "2", "ind2": " ", "subfields": [ { "a": "Paris" }, { "q": "Peace Conference" }, { "d": "1919" }, { "g": "Projected, not held" } ] } }
JSON-LD
{ "mainEntity": { "instanceOf": { "@type": "Text", "contribution": [ { "@type": "PrimaryContribution", "agent": { "@type": "Meeting", "name": "Paris", "additionalName": "Peace Conference", "date": [ "1919" ], "comment": [ "Projected, not held" ] } } ] } } }
Exempel: -
MARC
{ "111": { "ind1": "2", "ind2": " ", "subfields": [ { "a": "World Peace Conference" }, { "n": "1st" }, { "d": "1959" }, { "e": "Delegation from Sweden" }, { "c": "Paris, France" } ] } }
Normalized MARC:
{ "111": { "ind1": "2", "ind2": " ", "subfields": [ { "a": "World Peace Conference" }, { "n": "1st" }, { "d": "1959" }, { "c": "Paris, France" }, { "e": "Delegation from Sweden" } ] } }
JSON-LD
{ "mainEntity": { "instanceOf": { "@type": "Text", "contribution": [ { "@type": "PrimaryContribution", "agent": { "@type": "Meeting", "date": [ "1959" ], "name": "World Peace Conference", "marc:numeration": [ "1st" ], "place": [ { "@type": "Place", "label": "Paris, France" } ], "marc:subordinateUnit": [ "Delegation from Sweden" ] } } ] } } }
Exempel: -
MARC
{ "111": { "ind1": "2", "ind2": " ", "subfields": [ { "a": "Conference on Occupational Health Issues Affecting Secretarial and Clerical Personnel" }, { "d": "1981" }, { "e": "2nd" }, { "c": "Cincinatti, Ohio" }, { "j": "author" }, { "4": "aut" } ] } }
Normalized MARC:
{ "111": { "ind1": "2", "ind2": " ", "subfields": [ { "a": "Conference on Occupational Health Issues Affecting Secretarial and Clerical Personnel" }, { "d": "1981" }, { "c": "Cincinatti, Ohio" }, { "e": "2nd" }, { "j": "author" }, { "4": "aut" } ] } }
JSON-LD
{ "mainEntity": { "instanceOf": { "@type": "Text", "contribution": [ { "@type": "PrimaryContribution", "agent": { "@type": "Meeting", "date": [ "1981" ], "name": "Conference on Occupational Health Issues Affecting Secretarial and Clerical Personnel", "marc:subordinateUnit": [ "2nd" ], "place": [ { "@type": "Place", "label": "Cincinatti, Ohio" } ] }, "role": [ { "@type": "Role", "label": "author" }, { "@type": "Role", "@id": "https://id.kb.se/relator/aut", "code": "aut" } ] } ] } } }