Skip to content

Commit

Permalink
Test integration with GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ljgarcia authored Nov 19, 2024
1 parent c4bdad4 commit e86a32c
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions BioChemEntity/jsonld/type/BioChemEntity_v0.9-DRAFT.jsonld
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
"@context": {
"schema": "http://schema.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"bioschemas": "https://discovery.biothings.io/ns/bioschemas/"
},
"@graph": [
{
"@id": "bioschemas:BioChemEntity",
"@type": "rdfs:Class",
"rdfs:comment": "Any biological, chemical, or biochemical thing. For example: a protein; a gene; a chemical; a synthetic chemical. Version 0.9-DRAFT",
"rdfs:label": "BioChemEntity",
"rdfs:subClassOf": {
"@id": "schema:BioChemEntity"
},
"schemaVersion": [
"https://schema.org/docs/releases.html#v28.0"
]
},
{
"@id": "bioschemas:hasBioPolymerSequence",
"@type": "rdf:Property",
"rdfs:comment": "A symbolic representation of a BioChemEnity. For example, a nucleotide sequence of a Gene or an amino acid sequence of a Protein.",
"rdfs:label": "hasBioPolymerSequence",
"schema:domainIncludes": {
"@id": "bioschemas:BioChemEntity"
},
"schema:rangeIncludes": [
{
"@id": "schema:Text"
}
]
},
{
"@id": "bioschemas:hasSequenceAnnotation",
"@type": "rdf:Property",
"rdfs:comment": "An annotation on the BioPolymerSequence associated with this BioChemEntity.",
"rdfs:label": "hasSequenceAnnotation",
"schema:domainIncludes": {
"@id": "bioschemas:BioChemEntity"
},
"schema:rangeIncludes": [
{
"@id": "schema:URL"
},
{
"@id": "bioschemastypesdrafts:SequenceAnnotation"
}
]
},
{
"@id": "bioschemas:testProperty",
"@type": "rdf:Property",
"rdfs:comment": "This is an integration test",
"rdfs:label": "testProperty",
"schema:domainIncludes": {
"@id": "bioschemas:BioChemEntity"
},
"schema:rangeIncludes": [
{
"@id": "schema:Text"
}
]
}
]
}

0 comments on commit e86a32c

Please sign in to comment.