{ "$schema" : "http://json-schema.org/draft-07/schema#", "definitions" : { "Node" : { "type" : "object", "properties" : { "id" : { "type" : "string" }, "type" : { "type" : "string" } } } }, "type" : "object", "properties" : { "provenance" : { "type" : "object", "properties" : { "provenance" : { "type" : "string" }, "trust" : { "type" : "string" } }, "description" : "The reason why OpenAIRE holds the relation " }, "reltype" : { "type" : "object", "properties" : { "name" : { "type" : "string" }, "type" : { "type" : "string" } }, "description" : "To represent the semantics of a relation between two entities" }, "source" : { "allOf" : [ { "$ref" : "#/definitions/Node" }, { "description" : "The node source in the relation" } ] }, "target" : { "allOf" : [ { "$ref" : "#/definitions/Node" }, { "description" : "The node target in the relation" } ] }, "validated" : { "type" : "boolean", "description" : "True if the relation is related to a project and it has been collected from an authoritative source (i.e. the funder)" }, "validationDate" : { "type" : "string", "description" : "The date when the relation was collected from OpenAIRE" } } }