Skip to content
This repository has been archived by the owner on Mar 14, 2022. It is now read-only.

Commit

Permalink
Permit structural.isTargetOf to be null
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoyne committed Apr 24, 2018
1 parent 781515d commit 32f81c1
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion maps/Collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@
},
"isTargetOf": {
"description": "An Annotation instance that applies to the Collection.",
"type": "string"
"type": ["string", "null"]
},
"hasMemberOrders": {
"description": "Provided sequences or orderings of members of the Collection, including some metadata about each sequence (i.e. sequence label, sequence type, if the sequence is primary, etc.).",
Expand Down
2 changes: 1 addition & 1 deletion maps/DRO.json
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@
},
"isTargetOf": {
"description": "An Annotation instance that applies to the DRO.",
"type": "string"
"type": ["string", "null"]
},
"hasMemberOrders": {
"description": "Provided sequences or orderings of members of the Object, including some metadata about each sequence (i.e. sequence label, sequence type, if the sequence is primary, etc.).",
Expand Down
2 changes: 1 addition & 1 deletion maps/DepositCollection.json
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
},
"isTargetOf": {
"description": "An Annotation instance that applies to the Collection.",
"type": "string"
"type": ["string", "null"]
},
"hasMemberOrders": {
"description": "Provided sequences or orderings of members of the Collection, including some metadata about each sequence (i.e. sequence label, sequence type, if the sequence is primary, etc.).",
Expand Down
2 changes: 1 addition & 1 deletion maps/DepositDRO.json
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
},
"isTargetOf": {
"description": "An Annotation instance that applies to the DRO.",
"type": "string"
"type": ["string", "null"]
},
"hasMemberOrders": {
"description": "Provided sequences or orderings of members of the Object, including some metadata about each sequence (i.e. sequence label, sequence type, if the sequence is primary, etc.).",
Expand Down
2 changes: 1 addition & 1 deletion maps/DepositFile.json
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
},
"isTargetOf": {
"description": "An Annotation instance that applies to this File.",
"type": "string"
"type": ["string", "null"]
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion maps/DepositFileset.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
},
"isTargetOf": {
"description": "An Annotation instance that applies to this Fileset.",
"type": "string"
"type": ["string", "null"]
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion maps/File.json
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
},
"isTargetOf": {
"description": "An Annotation instance that applies to this File.",
"type": "string"
"type": ["string", "null"]
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion maps/Fileset.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
},
"isTargetOf": {
"description": "An Annotation instance that applies to this Fileset.",
"type": "string"
"type": ["string", "null"]
}
}
}
Expand Down
16 changes: 8 additions & 8 deletions validators/maps.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 32f81c1

Please sign in to comment.