Skip to content
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
Binary file modified project/excel/sssom_schema.xlsx
Binary file not shown.
31 changes: 16 additions & 15 deletions project/graphql/sssom_schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ enum SssomVersionEnum

type ExtensionDefinition
{
slotName: Ncname!
property: Uriorcurie
typeHint: Uriorcurie
slotName: String!
property: String
typeHint: String
}

type Mapping
Expand Down Expand Up @@ -78,17 +78,19 @@ type Mapping
mappingTool: String
mappingToolId: EntityReference
mappingToolVersion: String
mappingDate: Date
publicationDate: Date
confidence: Double
mappingDate: String
publicationDate: String
reviewDate: String
confidence: Float
reviewerAgreement: Float
curationRule: [EntityReference]
curationRuleText: [String]
subjectMatchField: [EntityReference]
objectMatchField: [EntityReference]
matchString: [String]
subjectPreprocessing: [EntityReference]
objectPreprocessing: [EntityReference]
similarityScore: Double
similarityScore: Float
similarityMeasure: String
seeAlso: [NonRelativeURI]
issueTrackerItem: EntityReference
Expand Down Expand Up @@ -118,7 +120,7 @@ type MappingSet
mappingSetSource: [NonRelativeURI]
mappingSetTitle: String
mappingSetDescription: String
mappingSetConfidence: Double
mappingSetConfidence: Float
creatorId: [EntityReference]
creatorLabel: [String]
license: NonRelativeURI!
Expand All @@ -134,8 +136,8 @@ type MappingSet
mappingTool: String
mappingToolId: EntityReference
mappingToolVersion: String
mappingDate: Date
publicationDate: Date
mappingDate: String
publicationDate: String
subjectMatchField: [EntityReference]
objectMatchField: [EntityReference]
subjectPreprocessing: [EntityReference]
Expand All @@ -154,9 +156,9 @@ type MappingSetReference
{
mappingSetId: NonRelativeURI!
mirrorFrom: NonRelativeURI
registryConfidence: Double
registryConfidence: Float
mappingSetGroup: String
lastUpdated: Date
lastUpdated: String
localName: String
}

Expand All @@ -166,8 +168,8 @@ type NoTermFound

type Prefix
{
prefixName: Ncname!
prefixUrl: Uri
prefixName: String!
prefixUrl: String
}

type Propagatable
Expand All @@ -179,4 +181,3 @@ type Versionable
{
addedIn: SssomVersionEnum
}

23 changes: 13 additions & 10 deletions project/jsonld/sssom_schema.context.jsonld
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
{
"comments": {
"description": "Auto generated by LinkML jsonld context generator",
"generation_date": "2025-10-07T21:17:00",
"source": "sssom_schema.yaml"
},
"@context": {
"xsd": "http://www.w3.org/2001/XMLSchema#",
"dcterms": "http://purl.org/dc/terms/",
Expand Down Expand Up @@ -50,15 +45,15 @@
"@id": "curation_rule_text"
},
"curie_map": {
"@type": "sssom:Prefix",
"@type": "@id",
"@id": "curie_map"
},
"documentation": {
"@type": "xsd:anyURI",
"@id": "documentation"
},
"extension_definitions": {
"@type": "sssom:ExtensionDefinition",
"@type": "@id",
"@id": "extension_definitions"
},
"property": {
Expand Down Expand Up @@ -109,7 +104,7 @@
},
"mapping_date": {
"@type": "xsd:date",
"@id": "pav:authoredOn"
"@id": "dcterms:created"
},
"mapping_justification": {
"@type": "rdfs:Resource",
Expand Down Expand Up @@ -144,7 +139,7 @@
"@id": "mapping_set_id"
},
"mapping_set_references": {
"@type": "sssom:MappingSetReference",
"@type": "@id",
"@id": "mapping_set_references"
},
"mapping_set_source": {
Expand Down Expand Up @@ -172,7 +167,7 @@
"@id": "mapping_tool_version"
},
"mappings": {
"@type": "owl:Axiom",
"@type": "@id",
"@id": "mappings"
},
"match_string": {
Expand Down Expand Up @@ -264,6 +259,14 @@
"@type": "xsd:double",
"@id": "registry_confidence"
},
"review_date": {
"@type": "xsd:date",
"@id": "review_date"
},
"reviewer_agreement": {
"@type": "xsd:double",
"@id": "reviewer_agreement"
},
"reviewer_id": {
"@type": "rdfs:Resource",
"@id": "reviewer_id"
Expand Down
Loading
Loading