graphdb-workbench-tests 2.5.1 → 2.6.0-RC2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fixtures/graphdb-import/resource-test-data.ttl +99 -0
- package/fixtures/graphql-editor/default-query-response.json +517 -0
- package/fixtures/guides/guides.json +764 -0
- package/fixtures/guides/movies.ttl +629 -0
- package/fixtures/guides/starwars.ttl +4384 -0
- package/fixtures/locale-en.json +53 -12
- package/fixtures/namespaces/ontotext-generated-namespace.json +22 -0
- package/fixtures/queries/empty-query-response.json +11 -0
- package/integration/cluster/cluster-management.spec.js +1 -2
- package/integration/explore/graphs.overview.spec.js +4 -2
- package/integration/explore/similariti-index-create.spec.js +333 -0
- package/integration/explore/similarity-index.spec.js +88 -0
- package/integration/explore/similarity.spec.js +180 -56
- package/integration/explore/visual-graph/graphs-config.spec.js +453 -0
- package/integration/explore/{visual.graph.spec.js → visual-graph/visual.graph.spec.js} +146 -347
- package/integration/guides/movies-interactive-guide.spec.js +73 -0
- package/integration/guides/star-wars-interactive-guide.js +60 -0
- package/integration/home/language-change.spec.js +3 -3
- package/integration/import/import.user.data.spec.js +2 -0
- package/integration/resource/resource.spec.js +357 -0
- package/integration/setup/aclmanagement/create-rule.spec.js +88 -11
- package/integration/setup/aclmanagement/delete-rule.spec.js +6 -4
- package/integration/setup/aclmanagement/edit-rule.spec.js +13 -8
- package/integration/setup/aclmanagement/render-rules.spec.js +4 -2
- package/integration/setup/aclmanagement/reorder-rules.spec.js +5 -3
- package/integration/setup/aclmanagement/revert-rules.spec.js +4 -3
- package/integration/setup/aclmanagement/scopes.spec.js +228 -0
- package/integration/setup/aclmanagement/update-rules.spec.js +17 -9
- package/integration/setup/jdbc-create.spec.js +330 -0
- package/integration/setup/jdbc.spec.js +78 -154
- package/integration/setup/my-settings.spec.js +9 -41
- package/integration/setup/sparql-template-create.js +150 -0
- package/integration/setup/sparql-templates.spec.js +82 -146
- package/integration/sparql-editor/actions/execute-query.spec.js +44 -0
- package/integration/sparql-editor/actions/expand-results-over-sameas.spec.js +136 -0
- package/integration/sparql-editor/actions/include-inferred-statements.spec.js +100 -0
- package/integration/sparql-editor/actions/inferred-sameas.spec.js +47 -0
- package/integration/sparql-editor/actions/save-query.spec.js +70 -0
- package/integration/sparql-editor/actions/show-saved-queries.spec.js +61 -0
- package/integration/sparql-editor/internationalization.spec.js +41 -0
- package/integration/sparql-editor/saved-query/abort-query.spec.js +51 -0
- package/integration/sparql-editor/saved-query/delete-query.spec.js +56 -0
- package/integration/sparql-editor/saved-query/edit-query.spec.js +68 -0
- package/integration/sparql-editor/saved-query/share-query.spec.js +78 -0
- package/integration/sparql-editor/sparql-editor.spec.js +55 -0
- package/integration/sparql-editor/yasgui-tabs.spec.js +107 -0
- package/integration/sparql-editor/yasr/download-as.spec.js +54 -0
- package/integration/sparql-editor/yasr/pagination.spec.js +234 -0
- package/integration/sparql-editor/yasr/table-plugin.spec.js +39 -0
- package/integration/sparql-editor/yasr/toolbar/visual-graph-button.spec.js +57 -0
- package/integration-flaky/explore/visual.graph.spec.js +3 -2
- package/integration-flaky/setup/sparql-template-create.js +139 -0
- package/integration-flaky/sparql-editor/actions/execute-update-query.spec.js +89 -0
- package/integration-flaky/sparql-editor/actions/share-query.spec.js +84 -0
- package/integration-flaky/sparql-editor/lucene-connector.spec.js +62 -0
- package/integration-flaky/sparql-editor/plugins/error-plugin.spec.js +83 -0
- package/integration-flaky/sparql-editor/yasr/table-plugin.spec.js +81 -0
- package/package.json +3 -1
- package/steps/application-steps.js +5 -0
- package/steps/autocomplete-steps.js +10 -0
- package/steps/error-steps.js +9 -0
- package/steps/explore/graphs-overview-steps.js +24 -0
- package/steps/explore/similarity-index-create-steps.js +113 -0
- package/steps/explore/similarity-indexes-steps.js +18 -0
- package/steps/guides/guide-dialog-steps.js +38 -0
- package/steps/guides/guide-steps.js +278 -0
- package/steps/guides/movies-guide-steps.js +241 -0
- package/steps/guides/star-wars-guide-steps.js +188 -0
- package/steps/import-steps.js +16 -0
- package/steps/language-selector-steps.js +22 -0
- package/steps/loader-steps.js +10 -0
- package/steps/lucene-connector-steps.js +43 -0
- package/steps/main-menu-steps.js +67 -0
- package/steps/repository-selector-steps.js +26 -0
- package/steps/repository-steps.js +4 -0
- package/steps/resource/resource-edit-steps.js +111 -0
- package/steps/resource/resource-steps.js +149 -0
- package/steps/setup/acl-management-steps.js +201 -39
- package/steps/setup/jdbc-create-steps.js +97 -0
- package/steps/setup/jdbc-steps.js +42 -0
- package/steps/setup/sparql-create-update-steps.js +55 -0
- package/steps/setup/sparql-templates-steps.js +38 -0
- package/steps/sparql-editor-steps.js +20 -0
- package/steps/sparql-steps.js +0 -6
- package/steps/visual-graph-steps.js +365 -6
- package/steps/yasgui/confirmation-dialog-steps.js +13 -0
- package/steps/yasgui/pagination-steps.js +47 -0
- package/steps/yasgui/plugin/error-plugin-steps.js +30 -0
- package/steps/yasgui/save-query-dialog.js +61 -0
- package/steps/yasgui/saved-queries-dialog.js +29 -0
- package/steps/yasgui/saved-query.js +25 -0
- package/steps/yasgui/share-saved-query-dialog.js +25 -0
- package/steps/yasgui/table-plugin-steps.js +29 -0
- package/steps/yasgui/yasgui-loader.js +10 -0
- package/steps/yasgui/yasgui-steps.js +191 -0
- package/steps/yasgui/yasqe-steps.js +187 -0
- package/steps/yasgui/yasr-steps.js +108 -0
- package/stubs/namespace-stubs.js +10 -0
- package/stubs/repositories-stub.js +58 -0
- package/stubs/security-stubs.js +69 -0
- package/stubs/yasgui/connectors-stubs.js +12 -0
- package/stubs/yasgui/query-stubs.js +253 -0
- package/support/index.js +3 -0
- package/support/repository-commands.js +5 -5
- package/support/sparql-commands.js +1 -1
- package/support/visual-graph-commands.js +25 -0
- package/integration/sparql/main.menu.spec.js +0 -232
- package/integration/sparql/sparql-error-handling.spec.js +0 -74
- package/integration/sparql/sparql-language-change.spec.js +0 -58
- package/integration/sparql/sparql-result-formating.spec.js +0 -84
- package/integration/sparql/sparql.menu.spec.js +0 -1253
- package/integration-flaky/setup/sparql-templates.spec.js +0 -125
- package/integration-flaky/sparql/sparql-language-change.spec.js +0 -45
- package/integration-flaky/sparql/sparql.menu.spec.js +0 -75
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
@prefix wgs: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
|
|
2
|
+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
|
3
|
+
@prefix gn: <http://www.geonames.org/ontology#> .
|
|
4
|
+
@prefix fn: <http://www.w3.org/2005/xpath-functions#> .
|
|
5
|
+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
|
6
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
7
|
+
@prefix ensembl_id: <http://rdf.ebi.ac.uk/resource/ensembl/> .
|
|
8
|
+
@prefix path: <http://www.ontotext.com/path#> .
|
|
9
|
+
@prefix ensembl: <https://rdf.ttmsiheomuma.com/ensembl#> .
|
|
10
|
+
@prefix ont: <https://rdf.ttmsiheomuma.com/expression#> .
|
|
11
|
+
@prefix experiment: <https://rdf.ttmsiheomuma.com/resource/experiment/> .
|
|
12
|
+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
|
13
|
+
@prefix sesame: <http://www.openrdf.org/schema/sesame#> .
|
|
14
|
+
@prefix rdf4j: <http://rdf4j.org/schema/rdf4j#> .
|
|
15
|
+
<http://example.com/resource/person/W6J1827> a <http://example.com/ontology#NaturalPerson>;
|
|
16
|
+
<http://example.com/ontology#id> "W6J1827";
|
|
17
|
+
<http://example.com/ontology#firstName> "Burgunda";
|
|
18
|
+
<http://example.com/ontology#lastName> "Auris";
|
|
19
|
+
<http://example.com/ontology#gender> "W";
|
|
20
|
+
<http://example.com/ontology#religion> "Hinduism";
|
|
21
|
+
<http://example.com/ontology#hasEvent> <http://example.com/resource/person/W6J1827/marital/1> .
|
|
22
|
+
<http://example.com/resource/person/W6J1827/address> a <http://example.com/ontology#Address>.
|
|
23
|
+
<<<http://example.com/resource/person/W6J1827> <http://example.com/ontology#hasAddress> <http://example.com/resource/person/W6J1827/address>>> <http://example.com/ontology#street> "Weiherstr.";
|
|
24
|
+
<http://example.com/ontology#postalCode> "63825";
|
|
25
|
+
<http://example.com/ontology#city> <http://example.com/resource/country/DE/city/Sommerkahl>;
|
|
26
|
+
<http://example.com/ontology#country> <http://example.com/resource/country/DE> .
|
|
27
|
+
<http://example.com/resource/country/DE/city/Sommerkahl> a <http://example.com/ontology#City>;
|
|
28
|
+
<http://example.com/ontology#country> <http://example.com/resource/country/DE>;
|
|
29
|
+
<http://example.com/ontology#name> "Sommerkahl" .
|
|
30
|
+
<http://example.com/resource/country/DE> a <http://example.com/ontology#Country>;
|
|
31
|
+
<http://example.com/ontology#code> "DE" .
|
|
32
|
+
<http://example.com/resource/person/W6J1827/marital/1> a <http://example.com/ontology#MaritalEvent> .
|
|
33
|
+
<http://example.com/resource/person/W6J1827/metric> a <http://example.com/ontology#Metric>.
|
|
34
|
+
<http://example.com/ontology#CustomerLoyalty> rdfs:subClassOf <http://example.com/ontology#Metric>.
|
|
35
|
+
<http://example.com/resource/person/W6J1827/customerLoyalty> a <http://example.com/ontology#CustomerLoyalty>.
|
|
36
|
+
<<<http://example.com/resource/person/W6J1827> <http://example.com/ontology#hasCustomerLoyaltyMetric> <http://example.com/resource/person/W6J1827/metric>>> <http://example.com/ontology#hasMetric> <http://example.com/resource/person/W6J1827/customerLoyalty>;
|
|
37
|
+
<http://example.com/ontology#value> 3.0E1 .
|
|
38
|
+
<http://example.com/resource/person/W6J1827/sentimentScore> a <http://example.com/ontology#SentimentScore> .
|
|
39
|
+
<http://example.com/ontology#SentimentScore> rdfs:subClassOf <http://example.com/ontology#Metric>.
|
|
40
|
+
<<<http://example.com/resource/person/W6J1827> <http://example.com/ontology#hasSentimentScoreMetric> <http://example.com/resource/person/W6J1827/metric>>> <http://example.com/ontology#hasMetric> <http://example.com/resource/person/W6J1827/sentimentScore> ;
|
|
41
|
+
<http://example.com/ontology#value> 6.513399999999999E-1 .
|
|
42
|
+
<http://example.com/resource/person/W6J1827/churnLikelihood> a <http://example.com/ontology#ChurnLikelihood>.
|
|
43
|
+
<http://example.com/ontology#ChurnLikelihood> rdfs:subClassOf <http://example.com/ontology#Metric>.
|
|
44
|
+
<<<http://example.com/resource/person/W6J1827> <http://example.com/ontology#hasChurnLikelihood> <http://example.com/resource/person/W6J1827/metric>>> <http://example.com/ontology#hasMetric> <http://example.com/resource/person/W6J1827/churnLikelihood> ;
|
|
45
|
+
<http://example.com/ontology#value> 0.0E0 .
|
|
46
|
+
<http://example.com/resource/person/W6J1827/fraudScore> a <http://example.com/ontology#FraudScore>.
|
|
47
|
+
<http://example.com/ontology#FraudScore> rdfs:subClassOf <http://example.com/ontology#Metric>.
|
|
48
|
+
<<<http://example.com/resource/person/W6J1827> <http://example.com/ontology#hasFraudScore> <http://example.com/resource/person/W6J1827/metric>>> <http://example.com/ontology#hasMetric> <http://example.com/resource/person/W6J1827/fraudScore> ;
|
|
49
|
+
<http://example.com/ontology#value> 1.583E-2 .
|
|
50
|
+
<http://example.com/resource/person/W6J1827/influencerScore> a <http://example.com/ontology#InfluencerScore>.
|
|
51
|
+
<http://example.com/ontology#InfluencerScore> rdfs:subClassOf <http://example.com/ontology#Metric>.
|
|
52
|
+
<<<http://example.com/resource/person/W6J1827> <http://example.com/ontology#hasInfluencerScore> <http://example.com/resource/person/W6J1827/metric>>> <http://example.com/ontology#hasMetric> <http://example.com/resource/person/W6J1827/influencerScore> ;
|
|
53
|
+
<http://example.com/ontology#value> 7.0E-2 .
|
|
54
|
+
<http://example.com/resource/person/W6J1827/policy/6OP1237433/role> a <http://example.com/ontology#PolicyRole>.
|
|
55
|
+
<<<http://example.com/resource/person/W6J1827> <http://example.com/ontology#hasRole> <http://example.com/resource/person/W6J1827/policy/6OP1237433/role>>> <http://example.com/ontology#role> "Holder";
|
|
56
|
+
<http://example.com/ontology#isRoleIn> <http://example.com/resource/policy/6OP1237433> .
|
|
57
|
+
<http://example.com/resource/policy/6OP1237433> a <http://example.com/ontology#Policy>;
|
|
58
|
+
<http://example.com/ontology#id> "6OP1237433";
|
|
59
|
+
<http://example.com/ontology#hasEvent> <http://example.com/resource/policy/6OP1237433/start>,
|
|
60
|
+
<http://example.com/resource/policy/6OP1237433/cancellation>;
|
|
61
|
+
<http://example.com/ontology#hasLimit> <http://example.com/resource/policy/6OP1237433/limit>;
|
|
62
|
+
<http://example.com/ontology#hasAnnualPremium> <http://example.com/resource/policy/6OP1237433/premium>;
|
|
63
|
+
<http://example.com/ontology#hasStatus> <http://example.com/resource/policy/6OP1237433/status>;
|
|
64
|
+
<http://example.com/ontology#hasClaim> <http://example.com/resource/claim/R6H45447> .
|
|
65
|
+
<http://example.com/resource/policy/6OP1237433/start> a <http://example.com/ontology#PolicyStartEvent>;
|
|
66
|
+
<http://example.com/ontology#value> "2009-04-10"^^xsd:date .
|
|
67
|
+
<http://example.com/resource/policy/6OP1237433/cancellation> a <http://example.com/ontology#PolicyCancellationEvent>;
|
|
68
|
+
<http://example.com/ontology#hasDate> "2013-04-09"^^xsd:date .
|
|
69
|
+
<http://example.com/resource/policy/6OP1237433/limit> a <http://example.com/ontology#PolicyLimit>;
|
|
70
|
+
<http://example.com/ontology#value> 1.0E5 .
|
|
71
|
+
<http://example.com/resource/policy/6OP1237433/premium> a <http://example.com/ontology#PolicyPremium>;
|
|
72
|
+
<http://example.com/ontology#value> 1.63027E3 .
|
|
73
|
+
<http://example.com/resource/policy/6OP1237433/status> a <http://example.com/ontology#PolicyStatus>;
|
|
74
|
+
<http://example.com/ontology#status> "cancelled" .
|
|
75
|
+
<http://example.com/resource/claim/R6H45447> a <http://example.com/ontology#Claim>;
|
|
76
|
+
<http://example.com/ontology#id> "R6H45447";
|
|
77
|
+
<http://example.com/ontology#hasEvent> <http://example.com/resource/claim/R6H45447/open>,
|
|
78
|
+
<http://example.com/resource/claim/R6H45447/close>, <http://example.com/resource/claim/R6H45447/pay>,
|
|
79
|
+
<http://example.com/resource/claim/R6H45447/fnol>;
|
|
80
|
+
<http://example.com/ontology#hasStatus> <http://example.com/resource/claim/R6H45447/status>;
|
|
81
|
+
<http://example.com/ontology#hasType> "material damage";
|
|
82
|
+
<http://example.com/ontology#hasClass> "A";
|
|
83
|
+
<http://example.com/ontology#hasExpense> <http://example.com/resource/claim/R6H45447/expense>;
|
|
84
|
+
<http://example.com/ontology#hasReserve> <http://example.com/resource/claim/R6H45447/reserve>;
|
|
85
|
+
<http://example.com/ontology#hasPayment> <http://example.com/resource/claim/R6H45447/payment> .
|
|
86
|
+
<http://example.com/resource/person/W6J1827/birth> a <http://example.com/ontology#BirthEvent>.
|
|
87
|
+
<<<http://example.com/resource/person/W6J1827> <http://example.com/ontology#hasEvent> <http://example.com/resource/person/W6J1827/birth>>> <http://example.com/ontology#hasDate> "1939-09-11"^^xsd:date .
|
|
88
|
+
<http://example.com/resource/person/W6J1827/education> a <http://example.com/ontology#EducationEvent>.
|
|
89
|
+
<<<http://example.com/resource/person/W6J1827> <http://example.com/ontology#graduated> <http://example.com/resource/person/W6J1827/education>>> <http://example.com/ontology#hasDate> "2015-02-06"^^xsd:date;
|
|
90
|
+
<http://example.com/ontology#university> <http://example.com/resource/university/Fachhochschule_Karlsruhe> .
|
|
91
|
+
<<<http://example.com/resource/person/W6J1827> <http://example.com/ontology#universityDegree> <http://example.com/resource/person/W6J1827/education>>> <http://example.com/ontology#specialty> <http://example.com/resource/degree/Mathematics> ;
|
|
92
|
+
<http://example.com/ontology#degree> "Master's degree" .
|
|
93
|
+
<http://example.com/resource/university/Fachhochschule_Karlsruhe> a <http://example.com/ontology#University>;
|
|
94
|
+
<http://example.com/ontology#name> "Fachhochschule Karlsruhe" .
|
|
95
|
+
<http://example.com/resource/degree/Mathematics> a <http://example.com/ontology#AcademicDegree>;
|
|
96
|
+
<http://example.com/ontology#name> "Mathematics" .
|
|
97
|
+
<http://example.com/resource/person/W6J1827/email> a <http://example.com/ontology#Email>.
|
|
98
|
+
<<<http://example.com/resource/person/W6J1827> <http://example.com/ontology#hasEmail> <http://example.com/resource/person/W6J1827/email>>> <http://example.com/ontology#value> "burgunda.auris@gmail.com" .
|
|
99
|
+
[] <http://www.w3.org/2000/01/rdf-schema#subClassOf> "Blank node" .
|
|
@@ -0,0 +1,517 @@
|
|
|
1
|
+
{
|
|
2
|
+
"head" : {
|
|
3
|
+
"vars" : [
|
|
4
|
+
"s",
|
|
5
|
+
"p",
|
|
6
|
+
"o"
|
|
7
|
+
]
|
|
8
|
+
},
|
|
9
|
+
"results" : {
|
|
10
|
+
"bindings" : [
|
|
11
|
+
{
|
|
12
|
+
"s" : {
|
|
13
|
+
"type" : "uri",
|
|
14
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
15
|
+
},
|
|
16
|
+
"p" : {
|
|
17
|
+
"type" : "uri",
|
|
18
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
19
|
+
},
|
|
20
|
+
"o" : {
|
|
21
|
+
"type" : "uri",
|
|
22
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"s" : {
|
|
27
|
+
"type" : "uri",
|
|
28
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#subPropertyOf"
|
|
29
|
+
},
|
|
30
|
+
"p" : {
|
|
31
|
+
"type" : "uri",
|
|
32
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
33
|
+
},
|
|
34
|
+
"o" : {
|
|
35
|
+
"type" : "uri",
|
|
36
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"s" : {
|
|
41
|
+
"type" : "uri",
|
|
42
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#subPropertyOf"
|
|
43
|
+
},
|
|
44
|
+
"p" : {
|
|
45
|
+
"type" : "uri",
|
|
46
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
47
|
+
},
|
|
48
|
+
"o" : {
|
|
49
|
+
"type" : "uri",
|
|
50
|
+
"value" : "http://www.w3.org/2002/07/owl#TransitiveProperty"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"s" : {
|
|
55
|
+
"type" : "uri",
|
|
56
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#subClassOf"
|
|
57
|
+
},
|
|
58
|
+
"p" : {
|
|
59
|
+
"type" : "uri",
|
|
60
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
61
|
+
},
|
|
62
|
+
"o" : {
|
|
63
|
+
"type" : "uri",
|
|
64
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"s" : {
|
|
69
|
+
"type" : "uri",
|
|
70
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#subClassOf"
|
|
71
|
+
},
|
|
72
|
+
"p" : {
|
|
73
|
+
"type" : "uri",
|
|
74
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
75
|
+
},
|
|
76
|
+
"o" : {
|
|
77
|
+
"type" : "uri",
|
|
78
|
+
"value" : "http://www.w3.org/2002/07/owl#TransitiveProperty"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"s" : {
|
|
83
|
+
"type" : "uri",
|
|
84
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#domain"
|
|
85
|
+
},
|
|
86
|
+
"p" : {
|
|
87
|
+
"type" : "uri",
|
|
88
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
89
|
+
},
|
|
90
|
+
"o" : {
|
|
91
|
+
"type" : "uri",
|
|
92
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"s" : {
|
|
97
|
+
"type" : "uri",
|
|
98
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#range"
|
|
99
|
+
},
|
|
100
|
+
"p" : {
|
|
101
|
+
"type" : "uri",
|
|
102
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
103
|
+
},
|
|
104
|
+
"o" : {
|
|
105
|
+
"type" : "uri",
|
|
106
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"s" : {
|
|
111
|
+
"type" : "uri",
|
|
112
|
+
"value" : "http://www.w3.org/2002/07/owl#equivalentProperty"
|
|
113
|
+
},
|
|
114
|
+
"p" : {
|
|
115
|
+
"type" : "uri",
|
|
116
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
117
|
+
},
|
|
118
|
+
"o" : {
|
|
119
|
+
"type" : "uri",
|
|
120
|
+
"value" : "http://www.w3.org/2002/07/owl#SymmetricProperty"
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"s" : {
|
|
125
|
+
"type" : "uri",
|
|
126
|
+
"value" : "http://www.w3.org/2002/07/owl#equivalentProperty"
|
|
127
|
+
},
|
|
128
|
+
"p" : {
|
|
129
|
+
"type" : "uri",
|
|
130
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
131
|
+
},
|
|
132
|
+
"o" : {
|
|
133
|
+
"type" : "uri",
|
|
134
|
+
"value" : "http://www.w3.org/2002/07/owl#TransitiveProperty"
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"s" : {
|
|
139
|
+
"type" : "uri",
|
|
140
|
+
"value" : "http://www.w3.org/2002/07/owl#equivalentClass"
|
|
141
|
+
},
|
|
142
|
+
"p" : {
|
|
143
|
+
"type" : "uri",
|
|
144
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
145
|
+
},
|
|
146
|
+
"o" : {
|
|
147
|
+
"type" : "uri",
|
|
148
|
+
"value" : "http://www.w3.org/2002/07/owl#SymmetricProperty"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"s" : {
|
|
153
|
+
"type" : "uri",
|
|
154
|
+
"value" : "http://www.w3.org/2002/07/owl#equivalentClass"
|
|
155
|
+
},
|
|
156
|
+
"p" : {
|
|
157
|
+
"type" : "uri",
|
|
158
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
159
|
+
},
|
|
160
|
+
"o" : {
|
|
161
|
+
"type" : "uri",
|
|
162
|
+
"value" : "http://www.w3.org/2002/07/owl#TransitiveProperty"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"s" : {
|
|
167
|
+
"type" : "uri",
|
|
168
|
+
"value" : "http://proton.semanticweb.org/protonsys#transitiveOver"
|
|
169
|
+
},
|
|
170
|
+
"p" : {
|
|
171
|
+
"type" : "uri",
|
|
172
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
173
|
+
},
|
|
174
|
+
"o" : {
|
|
175
|
+
"type" : "uri",
|
|
176
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"s" : {
|
|
181
|
+
"type" : "uri",
|
|
182
|
+
"value" : "http://www.w3.org/2002/07/owl#inverseOf"
|
|
183
|
+
},
|
|
184
|
+
"p" : {
|
|
185
|
+
"type" : "uri",
|
|
186
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
187
|
+
},
|
|
188
|
+
"o" : {
|
|
189
|
+
"type" : "uri",
|
|
190
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"s" : {
|
|
195
|
+
"type" : "uri",
|
|
196
|
+
"value" : "http://www.w3.org/2002/07/owl#inverseOf"
|
|
197
|
+
},
|
|
198
|
+
"p" : {
|
|
199
|
+
"type" : "uri",
|
|
200
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
201
|
+
},
|
|
202
|
+
"o" : {
|
|
203
|
+
"type" : "uri",
|
|
204
|
+
"value" : "http://www.w3.org/2002/07/owl#SymmetricProperty"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"s" : {
|
|
209
|
+
"type" : "uri",
|
|
210
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#subject"
|
|
211
|
+
},
|
|
212
|
+
"p" : {
|
|
213
|
+
"type" : "uri",
|
|
214
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
215
|
+
},
|
|
216
|
+
"o" : {
|
|
217
|
+
"type" : "uri",
|
|
218
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"s" : {
|
|
223
|
+
"type" : "uri",
|
|
224
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate"
|
|
225
|
+
},
|
|
226
|
+
"p" : {
|
|
227
|
+
"type" : "uri",
|
|
228
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
229
|
+
},
|
|
230
|
+
"o" : {
|
|
231
|
+
"type" : "uri",
|
|
232
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"s" : {
|
|
237
|
+
"type" : "uri",
|
|
238
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#object"
|
|
239
|
+
},
|
|
240
|
+
"p" : {
|
|
241
|
+
"type" : "uri",
|
|
242
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
243
|
+
},
|
|
244
|
+
"o" : {
|
|
245
|
+
"type" : "uri",
|
|
246
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"s" : {
|
|
251
|
+
"type" : "uri",
|
|
252
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#first"
|
|
253
|
+
},
|
|
254
|
+
"p" : {
|
|
255
|
+
"type" : "uri",
|
|
256
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
257
|
+
},
|
|
258
|
+
"o" : {
|
|
259
|
+
"type" : "uri",
|
|
260
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"s" : {
|
|
265
|
+
"type" : "uri",
|
|
266
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#rest"
|
|
267
|
+
},
|
|
268
|
+
"p" : {
|
|
269
|
+
"type" : "uri",
|
|
270
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
271
|
+
},
|
|
272
|
+
"o" : {
|
|
273
|
+
"type" : "uri",
|
|
274
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"s" : {
|
|
279
|
+
"type" : "uri",
|
|
280
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#value"
|
|
281
|
+
},
|
|
282
|
+
"p" : {
|
|
283
|
+
"type" : "uri",
|
|
284
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
285
|
+
},
|
|
286
|
+
"o" : {
|
|
287
|
+
"type" : "uri",
|
|
288
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"s" : {
|
|
293
|
+
"type" : "uri",
|
|
294
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"
|
|
295
|
+
},
|
|
296
|
+
"p" : {
|
|
297
|
+
"type" : "uri",
|
|
298
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
299
|
+
},
|
|
300
|
+
"o" : {
|
|
301
|
+
"type" : "uri",
|
|
302
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#List"
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"s" : {
|
|
307
|
+
"type" : "uri",
|
|
308
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#comment"
|
|
309
|
+
},
|
|
310
|
+
"p" : {
|
|
311
|
+
"type" : "uri",
|
|
312
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
313
|
+
},
|
|
314
|
+
"o" : {
|
|
315
|
+
"type" : "uri",
|
|
316
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"s" : {
|
|
321
|
+
"type" : "uri",
|
|
322
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#label"
|
|
323
|
+
},
|
|
324
|
+
"p" : {
|
|
325
|
+
"type" : "uri",
|
|
326
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
327
|
+
},
|
|
328
|
+
"o" : {
|
|
329
|
+
"type" : "uri",
|
|
330
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"s" : {
|
|
335
|
+
"type" : "uri",
|
|
336
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral"
|
|
337
|
+
},
|
|
338
|
+
"p" : {
|
|
339
|
+
"type" : "uri",
|
|
340
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
341
|
+
},
|
|
342
|
+
"o" : {
|
|
343
|
+
"type" : "uri",
|
|
344
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#Class"
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"s" : {
|
|
349
|
+
"type" : "uri",
|
|
350
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral"
|
|
351
|
+
},
|
|
352
|
+
"p" : {
|
|
353
|
+
"type" : "uri",
|
|
354
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
355
|
+
},
|
|
356
|
+
"o" : {
|
|
357
|
+
"type" : "uri",
|
|
358
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#Datatype"
|
|
359
|
+
}
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"s" : {
|
|
363
|
+
"type" : "uri",
|
|
364
|
+
"value" : "http://www.w3.org/2002/07/owl#differentFrom"
|
|
365
|
+
},
|
|
366
|
+
"p" : {
|
|
367
|
+
"type" : "uri",
|
|
368
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
369
|
+
},
|
|
370
|
+
"o" : {
|
|
371
|
+
"type" : "uri",
|
|
372
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"s" : {
|
|
377
|
+
"type" : "uri",
|
|
378
|
+
"value" : "http://www.w3.org/2002/07/owl#differentFrom"
|
|
379
|
+
},
|
|
380
|
+
"p" : {
|
|
381
|
+
"type" : "uri",
|
|
382
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
383
|
+
},
|
|
384
|
+
"o" : {
|
|
385
|
+
"type" : "uri",
|
|
386
|
+
"value" : "http://www.w3.org/2002/07/owl#SymmetricProperty"
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"s" : {
|
|
391
|
+
"type" : "uri",
|
|
392
|
+
"value" : "http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
|
|
393
|
+
},
|
|
394
|
+
"p" : {
|
|
395
|
+
"type" : "uri",
|
|
396
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
397
|
+
},
|
|
398
|
+
"o" : {
|
|
399
|
+
"type" : "uri",
|
|
400
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#Class"
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"s" : {
|
|
405
|
+
"type" : "uri",
|
|
406
|
+
"value" : "http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
|
|
407
|
+
},
|
|
408
|
+
"p" : {
|
|
409
|
+
"type" : "uri",
|
|
410
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
411
|
+
},
|
|
412
|
+
"o" : {
|
|
413
|
+
"type" : "uri",
|
|
414
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#Datatype"
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"s" : {
|
|
419
|
+
"type" : "uri",
|
|
420
|
+
"value" : "http://www.w3.org/2001/XMLSchema#string"
|
|
421
|
+
},
|
|
422
|
+
"p" : {
|
|
423
|
+
"type" : "uri",
|
|
424
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
425
|
+
},
|
|
426
|
+
"o" : {
|
|
427
|
+
"type" : "uri",
|
|
428
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#Class"
|
|
429
|
+
}
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"s" : {
|
|
433
|
+
"type" : "uri",
|
|
434
|
+
"value" : "http://www.w3.org/2001/XMLSchema#string"
|
|
435
|
+
},
|
|
436
|
+
"p" : {
|
|
437
|
+
"type" : "uri",
|
|
438
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
439
|
+
},
|
|
440
|
+
"o" : {
|
|
441
|
+
"type" : "uri",
|
|
442
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#Datatype"
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"s" : {
|
|
447
|
+
"type" : "uri",
|
|
448
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#_1"
|
|
449
|
+
},
|
|
450
|
+
"p" : {
|
|
451
|
+
"type" : "uri",
|
|
452
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
453
|
+
},
|
|
454
|
+
"o" : {
|
|
455
|
+
"type" : "uri",
|
|
456
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"s" : {
|
|
461
|
+
"type" : "uri",
|
|
462
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#_1"
|
|
463
|
+
},
|
|
464
|
+
"p" : {
|
|
465
|
+
"type" : "uri",
|
|
466
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
467
|
+
},
|
|
468
|
+
"o" : {
|
|
469
|
+
"type" : "uri",
|
|
470
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty"
|
|
471
|
+
}
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"s" : {
|
|
475
|
+
"type" : "uri",
|
|
476
|
+
"value" : "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine"
|
|
477
|
+
},
|
|
478
|
+
"p" : {
|
|
479
|
+
"type" : "uri",
|
|
480
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
481
|
+
},
|
|
482
|
+
"o" : {
|
|
483
|
+
"type" : "uri",
|
|
484
|
+
"value" : "http://www.w3.org/2002/07/owl#Ontology"
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"s" : {
|
|
489
|
+
"type" : "uri",
|
|
490
|
+
"value" : "http://www.w3.org/2002/07/owl#priorVersion"
|
|
491
|
+
},
|
|
492
|
+
"p" : {
|
|
493
|
+
"type" : "uri",
|
|
494
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
495
|
+
},
|
|
496
|
+
"o" : {
|
|
497
|
+
"type" : "uri",
|
|
498
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"s" : {
|
|
503
|
+
"type" : "uri",
|
|
504
|
+
"value" : "http://www.w3.org/TR/2003/CR-owl-guide-20030818/wine"
|
|
505
|
+
},
|
|
506
|
+
"p" : {
|
|
507
|
+
"type" : "uri",
|
|
508
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"
|
|
509
|
+
},
|
|
510
|
+
"o" : {
|
|
511
|
+
"type" : "uri",
|
|
512
|
+
"value" : "http://www.w3.org/2002/07/owl#Ontology"
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
]
|
|
516
|
+
}
|
|
517
|
+
}
|