Script to update tenant mapping rules to include mapping for Canceled LCCN, Date type, Subject Source and Subject Type
https://folio-org.atlassian.net/browse/MODSOURMAN-1189
https://folio-org.atlassian.net/browse/MODSOURMAN-1224
Overview
The CLI tool is designed perform following changes:
Inject new mapping rules for the following fields:
010$z Canceled LCCN.
008 Date type.
Inject new mapping rules with the following Subject types based on field number:
653 - Uncontrolled
654 - Faceted Topical Terms
656 - Occupation
657 - Function
658 - Curriculum Objective
662 - Hierarchical Place Name
688 - Type of Entity Unspecified
Update default mapping for Subject types based on field
600 - Personal name
610 - Corporate name
611 - Meeting name
630 - Uniform title
647 - Named event
648 - Chronological term
650 - Topical term
651 - Geographic name
655 - Genre/Form
The CLI tool/script does not change existing mapping rules on the target host, but it only extends existing rules.
Script execution
CLI tool executable artifact for Ramsons:
|
CLI tool/script requirements:
Java 17
In order to run the CLI tool you need the following:
Create JSON file with configuration (see: configuration file)
Open terminal (Mac OS or UNIX Systems) or Power shell (Windows)
Go to the folder where the CLI tool executable artifact is located
Run the CLI tool/script with the configuration file path parameter (just file name if the script is located in the same folder)
Configuration file
okapiUrl - your library okapi url. (Can be seen in the app settings → software versions → okapi services → okapi)
tenant - target tenant
username - admin user name
password - admin user name password
Configuration file example:
{
"okapiUrl": "https://folio-snapshot-okapi.dev.folio.org",
"tenant": "diku",
"username": "admin",
"password": "secret"
} |
for consortia tenants add, additional centralTenant field in configuration.json
{
"okapiUrl": "https://folio-snapshot-okapi.dev.folio.org",
"tenant": "diku",
"centralTenant":"consortia_admin"
"username": "consortia_admin",
"password": "consortia_secret"
} |
If customized rules are detected and the script didn’t update them, follow the next steps:
Send a GET request to /mapping-rules/marc-bib to retrieve the mapping rules
Edit received json to include the following (add sections in bold green) :
010$z Canceled LCCN mapping under the 010 rule
"010": [
{
"entityPerRepeatedSubfield": true,
"entity": [
{
"target": "identifiers.identifierTypeId",
"description": "Type for LCCN",
"subfield": [
"a"
],
"rules": [
{
"conditions": [
{
"type": "set_identifier_type_id_by_name",
"parameter": {
"name": "LCCN"
}
}
]
}
]
},
{
"target": "identifiers.value",
"description": "LCCN",
"subfield": [
"a"
],
"rules": [
{
"conditions": [
{
"type": "trim"
}
]
}
]
},
{
"target": "identifiers.identifierTypeId",
"description": "Type for Canceled LCCN",
"subfield": [
"z"
],
"rules": [
{
"conditions": [
{
"type": "set_identifier_type_id_by_name",
"parameter": {
"name": "Canceled LCCN"
}
}
]
}
]
},
{
"target": "identifiers.value",
"description": "Type for Canceled LCCN",
"subfield": [
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim"
}
]
}
]
}
]
}
]
008 Date type mappings under the 008 rule
"008": [
{
"target": "instanceTypeId",
"description": "Default Unspecified Instance type in case when no 336 field present",
"subfield": [],
"rules": [
{
"conditions": [
{
"type": "set_instance_type_id",
"parameter": {
"unspecifiedInstanceTypeCode": "zzz"
}
}
]
}
]
},
{
"target": "source",
"description": "Source of instance record",
"subfield": [],
"rules": [
{
"conditions": [],
"value": "MARC21"
}
]
},
{
"target": "languages",
"description": "Language code",
"subfield": [],
"rules": [
{
"conditions": [
{
"type": "char_select",
"parameter": {
"from": 35,
"to": 38
}
}
]
}
]
},
{
"target": "dates.dateTypeId",
"description": "Date type ID",
"subfield": [],
"createSingleObject": true,
"rules": [
{
"conditions": [
{
"type": "set_date_type_id"
}
]
}
]
},
{
"target": "dates.date1",
"description": "Date 1",
"subfield": [],
"createSingleObject": true,
"rules": [
{
"conditions": [
{
"type": "char_select",
"parameter": {
"from": 7,
"to": 11
}
}
]
}
]
},
{
"target": "dates.date2",
"description": "Date 2",
"subfield": [],
"createSingleObject": true,
"rules": [
{
"conditions": [
{
"type": "char_select",
"parameter": {
"from": 11,
"to": 15
}
}
]
}
]
}
]
Subject source and subject type mappings
"600": [
{
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Personal name"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "0"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Personal name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "1"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Personal name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Children's and Young Adults' Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "2"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Personal name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Medical Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "3"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Personal name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "National Agricultural Library subject authority file"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "4"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Personal name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Source not specified"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "5"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Personal name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Canadian Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "6"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Personal name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Répertoire de vedettes-matière"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "7"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Personal name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"2"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id_by_code"
}
]
}
]
}
]
}
]"610": [
{
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Corporate name"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "0"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Corporate name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "1"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Corporate name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Children's and Young Adults' Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "2"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Corporate name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Medical Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "3"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Corporate name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "National Agricultural Library subject authority file"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "4"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Corporate name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Source not specified"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "5"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Corporate name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Canadian Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "6"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Corporate name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Répertoire de vedettes-matière"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "7"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Corporate name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"2"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id_by_code"
}
]
}
]
}
]
}
]"611": [
{
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"c",
"d",
"e",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Meeting name"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "0"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"c",
"d",
"e",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Meeting name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "1"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"c",
"d",
"e",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Meeting name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Children's and Young Adults' Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "2"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"c",
"d",
"e",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Meeting name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Medical Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "3"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"c",
"d",
"e",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Meeting name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "National Agricultural Library subject authority file"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "4"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"c",
"d",
"e",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Meeting name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Source not specified"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "5"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"c",
"d",
"e",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Meeting name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Canadian Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "6"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"c",
"d",
"e",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Meeting name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Répertoire de vedettes-matière"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "7"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"c",
"d",
"e",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"n",
"p",
"q",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Meeting name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"2"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id_by_code"
}
]
}
]
}
]
}
]"630": [
{
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"d",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uniform title"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "0"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"d",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uniform title"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "1"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"d",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uniform title"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Children's and Young Adults' Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "2"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"d",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uniform title"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Medical Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "3"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"d",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uniform title"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "National Agricultural Library subject authority file"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "4"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"d",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uniform title"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Source not specified"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "5"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"d",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uniform title"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Canadian Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "6"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"d",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uniform title"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Répertoire de vedettes-matière"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "7"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"d",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"d",
"e",
"f",
"g",
"h",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s",
"t",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uniform title"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"2"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id_by_code"
}
]
}
]
}
]
}
]"647": [
{
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Named event"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "0"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Named event"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "1"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Named event"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Children's and Young Adults' Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "2"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Named event"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Medical Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "3"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Named event"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "National Agricultural Library subject authority file"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "4"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Named event"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Source not specified"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "5"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Named event"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Canadian Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "6"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Named event"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Répertoire de vedettes-matière"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "7"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"c",
"d",
"g",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Named event"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"2"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id_by_code"
}
]
}
]
}
]
}
]"648": [
{
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"x",
"y",
"z",
"v"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Chronological term"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "0"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"x",
"y",
"z",
"v"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Chronological term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "1"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"x",
"y",
"z",
"v"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Chronological term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Children's and Young Adults' Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "2"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"x",
"y",
"z",
"v"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Chronological term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Medical Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "3"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"x",
"y",
"z",
"v"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Chronological term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "National Agricultural Library subject authority file"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "4"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"x",
"y",
"z",
"v"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Chronological term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Source not specified"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "5"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"x",
"y",
"z",
"v"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Chronological term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Canadian Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "6"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"x",
"y",
"z",
"v"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Chronological term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Répertoire de vedettes-matière"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "7"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"x",
"y",
"z",
"v"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"x",
"y",
"z",
"v"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Chronological term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"2"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id_by_code"
}
]
}
]
}
]
}
]"650": [
{
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Topical term"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "0"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Topical term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "1"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Topical term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Children's and Young Adults' Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "2"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Topical term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Medical Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "3"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Topical term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "National Agricultural Library subject authority file"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "4"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Topical term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Source not specified"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "5"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Topical term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Canadian Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "6"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Topical term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Répertoire de vedettes-matière"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "7"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Topical term"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"2"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id_by_code"
}
]
}
]
}
]
}
]"651": [
{
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Geographic name"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "0"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Geographic name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "1"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Geographic name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Children's and Young Adults' Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "2"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Geographic name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Medical Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "3"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Geographic name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "National Agricultural Library subject authority file"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "4"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Geographic name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Source not specified"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "5"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Geographic name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Canadian Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "6"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Geographic name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Répertoire de vedettes-matière"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "7"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Geographic name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"2"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id_by_code"
}
]
}
]
}
]
}
]"653": [
{
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uncontrolled"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "0"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uncontrolled"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "1"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uncontrolled"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Children's and Young Adults' Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "2"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uncontrolled"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Medical Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "3"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uncontrolled"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "National Agricultural Library subject authority file"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "4"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uncontrolled"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Source not specified"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "5"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uncontrolled"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Canadian Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "6"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uncontrolled"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Répertoire de vedettes-matière"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "7"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Uncontrolled"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"2"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id_by_code"
}
]
}
]
}
]
}
]"654": [
{
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Faceted topical terms"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "0"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Faceted topical terms"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "1"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Faceted topical terms"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Children's and Young Adults' Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "2"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Faceted topical terms"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Medical Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "3"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Faceted topical terms"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "National Agricultural Library subject authority file"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "4"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Faceted topical terms"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Source not specified"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "5"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Faceted topical terms"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Canadian Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "6"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Faceted topical terms"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Répertoire de vedettes-matière"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "7"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Faceted topical terms"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"2"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id_by_code"
}
]
}
]
}
]
}
]"655": [
{
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Genre/Form"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "0"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Genre/Form"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "1"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Genre/Form"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Children's and Young Adults' Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "2"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Genre/Form"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Medical Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "3"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Genre/Form"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "National Agricultural Library subject authority file"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "4"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Genre/Form"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Source not specified"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "5"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Genre/Form"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Canadian Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "6"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Genre/Form"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Répertoire de vedettes-matière"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "7"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": "--",
"subfields": [
"a",
"e",
"g",
"v",
"x",
"y",
"z"
]
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Genre/Form"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"2"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id_by_code"
}
]
}
]
}
]
}
]"656": [
{
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Occupation"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "0"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Occupation"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "1"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Occupation"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Children's and Young Adults' Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "2"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Occupation"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Medical Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "3"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Occupation"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "National Agricultural Library subject authority file"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "4"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Occupation"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Source not specified"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "5"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Occupation"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Canadian Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "6"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Occupation"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Répertoire de vedettes-matière"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "7"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Occupation"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"2"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id_by_code"
}
]
}
]
}
]
}
]"657": [
{
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Function"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "0"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Function"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "1"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Function"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Children's and Young Adults' Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "2"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Function"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Medical Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "3"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Function"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "National Agricultural Library subject authority file"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "4"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Function"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Source not specified"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "5"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Function"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Canadian Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "6"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Function"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Répertoire de vedettes-matière"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "7"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Function"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"2"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id_by_code"
}
]
}
]
}
]
}
]"658": [
{
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Curriculum objective"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "0"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Curriculum objective"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "1"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Curriculum objective"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Children's and Young Adults' Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "2"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Curriculum objective"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Medical Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "3"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Curriculum objective"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "National Agricultural Library subject authority file"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "4"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Curriculum objective"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Source not specified"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "5"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Curriculum objective"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Canadian Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "6"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Curriculum objective"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Répertoire de vedettes-matière"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "7"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Curriculum objective"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"2"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id_by_code"
}
]
}
]
}
]
}
]"662": [
{
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Hierarchical Place Name"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "0"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]
},
{
"value": "--",
"subfields": []
}
]
},
{
"target": "subjects.authorityId",
"description": "Authority ID that controlling the subject",
"subfield": [
"9"
]
},
{
"target": "subjects.typeId",
"description": "Subject type id",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_type_id",
"parameter": {
"name": "Hierarchical Place Name"
}
}
]
}
]
},
{
"target": "subjects.sourceId",
"description": "Subject source",
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"applyRulesOnConcatenatedData": true,
"rules": [
{
"conditions": [
{
"type": "set_subject_source_id",
"parameter": {
"name": "Library of Congress Subject Headings"
}
}
]
}
]
}
]
},
{
"indicators": {
"ind1": "*",
"ind2": "1"
},
"entity": [
{
"target": "subjects.value",
"description": "Subject Headings",
"applyRulesOnConcatenatedData": true,
"subfield": [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"x",
"y",
"z"
],
"rules": [
{
"conditions": [
{
"type": "trim_period, trim"
}
]
}
],
"subFieldDelimiter": [
{
"value": " ",
"subfields": [
"a",
"b",
"c",
"d",
"j",
"q",
"t",
"f",
"g",
"k",
"l",
"m",
"n",
"o",
"p",
"r",
"s"
]
},
{
"value": "--",
"subfields": [
"x",
"y",
"z",
"v"
]