Difference between revisions of "Exploration/health"

From Wikibase Personal data
Jump to navigation Jump to search
 
(16 intermediate revisions by the same user not shown)
Line 1: Line 1:
We need to explore health data with {{Q|5465}} and in particular
+
We need to explore health data with {{Q|5465}} and in particular some of the {{P|392}}s listed in {{Q|83}}.
* laboratory data
+
 
* vaccination data
+
=== Swiss data controllers ===
* wearables data
+
{{SPARQL|label=Swiss data controllers|state=collapsed|query=
 +
SELECT ?item ?itemLabel WHERE {
 +
  ?item pdiot:P3 pdio:Q991.
 +
  SERVICE wikibase:label {
 +
    bd:serviceParam wikibase:language "en" .
 +
  }
 +
}
 +
}}
 +
 
 +
=== Laboratory data ===
 +
{{Q|5467}}
 +
{{SPARQL|label=Swiss medical analysis laboratory|state=collapsed|query=
 +
SELECT ?item ?itemLabel WHERE {
 +
  ?item pdiot:P3 pdio:Q5467.
 +
  ?item pdiot:P55 pdio:Q416.
 +
  SERVICE wikibase:label {
 +
    bd:serviceParam wikibase:language "en" .
 +
  }
 +
}
 +
}}
 +
 
 +
=== Vaccination data ===
 +
 
 +
=== Wearables ===
 +
{{Q|1144}}
 +
{{SPARQL|label=Wearables|state=collapsed|query=
 +
SELECT ?item ?itemLabel WHERE {
 +
  ?item pdiot:P3 pdio:Q1144.
 +
  SERVICE wikibase:label {
 +
    bd:serviceParam wikibase:language "en" .
 +
  }
 +
}
 +
}}
 +
 
 +
=== Insurance ===
 
{{SPARQL|label=insurance data in Switzerland|state=collapsed
 
{{SPARQL|label=insurance data in Switzerland|state=collapsed
 
|query=SELECT ?item ?itemLabel WHERE {
 
|query=SELECT ?item ?itemLabel WHERE {
Line 12: Line 46:
 
}
 
}
 
}}
 
}}
 +
({{Q|1013}} should appear because {{Claim|1013|55|416}} and {{Claim|1013|3|245}} are true but the database does not get automatically refreshed at the moment)
 +
 +
=== Mobile applications ===
 +
 +
=== Others ===
  
(each time we should have a query that enables us to get all the relevant companies listed in the right way, and documentation like {{Claim|P55|Q416}})
+
== SAR service tool ==
 +
See https://wiki.personaldata.io/wiki/MediaWiki:Architecture_of_SAR_service and the discussion tab there.

Latest revision as of 23:54, 10 April 2023

We need to explore health data with Gesundheitsdatenraum Schweiz (Q5465) and in particular some of the role type (P392)s listed in health personal data ecosystem (Q83).

Swiss data controllers

PREFIX pdio: <https://wiki.personaldata.io/entity/>
PREFIX pdiot: <https://wiki.personaldata.io/prop/direct/>
PREFIX pdiop: <https://wiki.personaldata.io/prop/>
PREFIX pdiops: <https://wiki.personaldata.io/prop/statement/>
PREFIX pdiopq: <https://wiki.personaldata.io/prop/qualifier/>
SELECT ?item ?itemLabel WHERE {
  ?item pdiot:P3 pdio:Q991.
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en" . 
  }
}

Swiss data controllers (embedded)


Laboratory data

medical analysis laboratory (Q5467)

PREFIX pdio: <https://wiki.personaldata.io/entity/>
PREFIX pdiot: <https://wiki.personaldata.io/prop/direct/>
PREFIX pdiop: <https://wiki.personaldata.io/prop/>
PREFIX pdiops: <https://wiki.personaldata.io/prop/statement/>
PREFIX pdiopq: <https://wiki.personaldata.io/prop/qualifier/>
SELECT ?item ?itemLabel WHERE {
  ?item pdiot:P3 pdio:Q5467.
  ?item pdiot:P55 pdio:Q416.
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en" . 
  }
}

Swiss medical analysis laboratory (embedded)


Vaccination data

Wearables

wearable (Q1144)

PREFIX pdio: <https://wiki.personaldata.io/entity/>
PREFIX pdiot: <https://wiki.personaldata.io/prop/direct/>
PREFIX pdiop: <https://wiki.personaldata.io/prop/>
PREFIX pdiops: <https://wiki.personaldata.io/prop/statement/>
PREFIX pdiopq: <https://wiki.personaldata.io/prop/qualifier/>
SELECT ?item ?itemLabel WHERE {
  ?item pdiot:P3 pdio:Q1144.
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en" . 
  }
}

Wearables (embedded)


Insurance

PREFIX pdio: <https://wiki.personaldata.io/entity/>
PREFIX pdiot: <https://wiki.personaldata.io/prop/direct/>
PREFIX pdiop: <https://wiki.personaldata.io/prop/>
PREFIX pdiops: <https://wiki.personaldata.io/prop/statement/>
PREFIX pdiopq: <https://wiki.personaldata.io/prop/qualifier/>
SELECT ?item ?itemLabel WHERE {
  ?item pdiot:P3 pdio:Q245.
  ?item pdiot:P55 pdio:Q416.
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en" . 
  }
}

insurance data in Switzerland (embedded)

(Helsana (Q1013) should appear because

< Helsana (Q1013) > country (P55) < Switzerland (Q416) >

and

< Helsana (Q1013) > instance of (P3) < insurance provider (Q245) >

are true but the database does not get automatically refreshed at the moment)

Mobile applications

Others

SAR service tool

See https://wiki.personaldata.io/wiki/MediaWiki:Architecture_of_SAR_service and the discussion tab there.