Skip to content
This repository was archived by the owner on Oct 19, 2023. It is now read-only.

Updates termlist and schema #420

Merged
merged 1 commit into from
Sep 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions standard/json-schema/collection-status-history.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,28 @@
},
"minItems": 1,
"uniqueItems": true
},
"hasIdentifier":
{
"description": "This property refers to one or more related instances of the Identifier class.",
"type": "array",
"items":
{
"$ref": "https://raw.githubusercontent.com/tdwg/cd/master/standard/json-schema/identifier.json"
},
"minItems": 1,
"uniqueItems": true
},
"hasMeasurementOrFact":
{
"description": "This property refers to one or more related instances of the MeasurementOrFact class.",
"type": "array",
"items":
{
"$ref": "https://raw.githubusercontent.com/tdwg/cd/master/standard/json-schema/measurement-or-fact.json"
},
"minItems": 1,
"uniqueItems": true
}
},
"required" : [
Expand Down
2 changes: 2 additions & 0 deletions standard/terms/ltc_standard_terms_draft.csv
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ ltc:,basisOfScheme,Basis Of Scheme,A summary of the basis or purpose for the Col
ltc:,schemeName,Scheme Name,A short descriptive name given to the CollectionDescriptionScheme.,,,"`NHM Collections Inventory`, `Index Herbariorum`, `European Darwin Collections`",http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,CollectionDescriptionScheme,Yes,No,string,original,08/07/2022,
ltc:,hasReference,Has Reference,This property refers to one or more related instances of the Reference class.,,,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,CollectionStatusHistory,No,No,array of ltc:Reference,original,08/07/2022,
ltc:,hasTemporalCoverage,Has Temporal Coverage,This property refers to one or more related instances of the TemporalCoverage class.,,,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,CollectionStatusHistory,No,No,array of ltc:TemporalCoverage,original,08/07/2022,
ltc:,hasIdentifier,Has Identifier,This property refers to one or more related instances of the Identifier class.,,,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,CollectionStatusHistory,No,No,array of ltc:Identifier,proposed,22/09/2022,
ltc:,hasMeasurementOrFact,Has Measurement Or Fact,This property refers to one or more related instances of the MeasurementOrFact class.,,,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,CollectionStatusHistory,No,No,array of ltc:MeasurementOrFact,proposed,22/09/2022,
ltc:,CollectionStatusHistory,Collection Status History,A record of current and past statuses of the object group and the reason for status changes.,,"Use this class to record the history of and reason for changes in the status of the described collection. Types of status described by this class may, for example, include ownership, management, accessibility or accrual policy over time. Dates reflecting the start and end of the status described by this class should be recorded using an instance of TemporalCoverage. If temporalCoverageEndDate is empty, the status can be inferred to be the current status of the collection.",,http://www.w3.org/2000/01/rdf-schema#Class,CollectionStatusHistory,No,Yes,object,original,08/07/2022,
ltc:,status,Status,The development status of the collection during a specified period.,,The values/vocabularies for a status are predicated by the statusType. The in the examples mentioned terms are a cumulative list of terms associated with several different statusTypes.,"`Complete`, `In part`, `Developing`, `Closed`, `Active growth`, `Consumable`, `Decreasing`, `Lost`, `Missing`, `Passive growth`, `Static`",http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,CollectionStatusHistory,Yes,No,string,original,08/07/2022,
ltc:,statusChangeReason,Status Change Reason,An explanation of why the collection transitioned to the value set in the status property.,,statusChangeReason should be aligned with the value of statusType.,"`Pest infestation`, `Exchange`, `Transfer`, `Return to country of origin`, `Worldwide pandemic`",http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,CollectionStatusHistory,No,No,string,original,08/07/2022,
Expand Down