-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsavvi.html
1038 lines (882 loc) · 24.9 KB
/
savvi.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html><pre>
# Auto-generated from iotic-rdf-ontology repository, 3rd/savvi. Edits will be overwritten!
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix savvi: <http://data.iotics.com/savvi#> .
# Entity Classes
## Entities that exist in the SAVVI Logical Model
savvi:Action
a rdfs:Class ;
rdfs:label "Action"@en ;
rdfs:comment "An action that has been carried out as part of responding to a Need."@en ;
.
savvi:Attribute
a rdfs:Class ;
rdfs:label "Attribute"@en ;
rdfs:comment "A state of a person or household."@en ;
.
savvi:Case
a rdfs:Class ;
rdfs:label "Case"@en ;
rdfs:comment "A container for information recording the history of events for a person or household who may have needs."@en ;
.
savvi:ContactEvent
a rdfs:Class ;
rdfs:label "Contact Event"@en ;
rdfs:comment "A record of an event in which the situation of a person or household was sought."@en ;
.
savvi:Household
a rdfs:Class ;
rdfs:label "Household"@en ;
rdfs:comment "A collection of Persons who live together."@en ;
.
savvi:Need
a rdfs:Class ;
rdfs:label "Need"@en ;
rdfs:comment "The need where assistance is required to mitigate a vulnerability."@en ;
.
savvi:Organisation
a rdfs:Class ;
rdfs:label ""@en ;
rdfs:comment ""@en ;
.
savvi:Outcome
a rdfs:Class ;
rdfs:label "Outcome"@en ;
rdfs:comment "The resulting situation of a Case, or a Need."@en ;
.
savvi:Person
a rdfs:Class ;
rdfs:label "Person"@en ;
rdfs:comment "A person who may be vulnerable, or who needs assistance."@en ;
.
savvi:Plan
a rdfs:Class ;
rdfs:label "Plan"@en ;
rdfs:comment "A set of planned actions designed to respond to a Need over a period."@en ;
.
savvi:Residence
a rdfs:Class ;
rdfs:label "Residence"@en ;
rdfs:comment "A building, or part of a building, designed to accommodate a single Household."@en ;
.
savvi:RiskAssessment
a rdfs:Class ;
rdfs:label "Risk Assessment"@en ;
rdfs:comment "A categorisation of the risk of a Person or Household."@en ;
.
savvi:SituationAssessment
a rdfs:Class ;
rdfs:label "Situation Assessment"@en ;
rdfs:comment "An understanding of the situation of a Person or Household as a result of a contact."@en ;
.
# Non-entity Concept Classes
## Other concepts that exist in the SAVVI Conceptual Model
savvi:LeadOrganisation
a rdfs:Class ;
rdfs:label "Lead Organisation"@en ;
rdfs:comment "An organisation responsible for coordinating a vulnerability initiative."@en ;
rdfs:subClassOf savvi:Organisation;
.
savvi:ResponsibleOrganisation
a rdfs:Class ;
rdfs:label "Responsible Organisation"@en ;
rdfs:comment "An organisation who is made responsible for a Case."@en ;
rdfs:subClassOf savvi:Organisation;
.
savvi:DeliveryOrganisation
a rdfs:Class ;
rdfs:label "Delivery Organisation"@en ;
rdfs:comment "A service provider who delivers actions that respond to a Need."@en ;
rdfs:subClassOf savvi:Organisation;
.
savvi:SourceOrganisation
a rdfs:Class ;
rdfs:label "Source Organisation"@en ;
rdfs:comment "An organisation who is made responsible for a Case."@en ;
rdfs:subClassOf savvi:Organisation;
.
savvi:Area
a rdfs:Class ;
rdfs:label "Area"@en ;
rdfs:comment "A geographic area."@en ;
.
savvi:Provenance
a rdfs:Class ;
rdfs:label "Provenance"@en ;
rdfs:comment "A record of the steps taken to prepare a piece of data."@en ;
.
savvi:StratificationPolicy
a rdfs:Class ;
rdfs:label "Stratification Policy"@en ;
rdfs:comment "A definition of the rules by which Risk Categories will be determined"@en ;
.
# Data Structure Classes & Properties
## Structured information which is not present in the SAVVI Conceptual Model,
## but referred to by the Logical Model
savvi:Address
a rdfs:Class ;
rdfs:label "Address"@en ;
rdfs:comment "The Address of a Property"@en ;
.
savvi:addressLine
a rdf:Property ;
rdfs:label "Line"@en ;
rdfs:domain savvi:Address ;
rdfs:range xsd:string ;
.
savvi:postcode
a rdf:Property ;
rdfs:label "Postcode"@en ;
xsd:domain savvi:Address ;
rdfs:range xsd:string
.
savvi:Characteristic
a rdfs:Class ;
rdfs:label "Characteristic"@en ;
rdfs:comment "To indicate the presence of a feature of a thing"@en ;
.
savvi:characteristicScheme
a rdf:Property ;
rdfs:label "Scheme"@en ;
rdfs:comment "To define the scheme that the characteristic is taken from. e.g. condition, ons."@en ;
rdfs:domain savvi:Characteristic ;
rdfs:range xsd:string ;
.
savvi:characteristicTerm
a rdf:Property ;
rdfs:label "Term"@en ;
rdfs:comment "A term from the scheme representing a characteristic"@en ;
rdfs:domain savvi:Characteristic ;
rdfs:range xsd:string ;
.
savvi:characteristicUri
a rdf:Property ;
rdfs:label "URI"@en ;
rdfs:comment "A persistent identifier for the term"@en ;
rdfs:domain savvi:Characteristic ;
rdfs:range xsd:string ;
.
savvi:characteristicValue
a rdf:Property ;
rdfs:label "Value"@en ;
rdfs:comment "An optional value that quantifies the Term. e.g. if the term is 'number of bedrooms', the Value may be 3. Many Terms will not need a value."@en ;
rdfs:domain savvi:Characteristic ;
rdfs:range xsd:string ;
.
savvi:ContactPoint
a rdfs:Class ;
rdfs:label "ContactPoint"@en ;
rdfs:comment "Details for all kinds of technology-mediated contact points for a person or organization, including telephone, email, etc."@en ;
.
savvi:contactPointSystem
a rdf:Property ;
rdfs:label "System"@en ;
rdfs:comment "Telecommunications form for contact point - what communications system is required to make use of the contact. one of phone, email, sms"@en ;
rdfs:domain savvi:ContactPoint ;
rdfs:range savvi:ContactPointSystem
.
savvi:contactPointValue
a rdf:Property ;
rdfs:label "Value"@en ;
rdfs:range "The actual contact point details, in a form that is meaningful to the designated communication system (i.e. phone number or email address)."@en ;
rdfs:domain savvi:ContactPoint ;
rdfs:range xsd:string ;
.
savvi:Identifier
a rdfs:Class ;
rdfs:label "Identifier"@en ;
rdfs:comment "A reference from a scheme"@en ;
.
savvi:identifierScheme
a rdf:Property ;
rdfs:label "Scheme"@en ;
rdfs:comment "To define the scheme that the value is taken from. e.g. nino, nlpg."@en ;
rdfs:domain savvi:Identifier ;
rdfs:range xsd:string ;
.
savvi:isPseudonymised
a rdf:Property ;
rdfs:label "Pseudonymised"@en ;
rdfs:comment "To indicate if the Reference has been pseudonymised"@en ;
rdfs:domain savvi:Identifier ;
rdfs:range xsd:boolean ;
.
savvi:Position
a rdfs:Class ;
rdfs:label "Position"@en ;
rdfs:comment "The absolute geographic location of the Location, expressed using the WGS84 datum"@en ;
.
savvi:latitude
a rdf:Property ;
rdfs:label "latitude" ;
rdfs:comment "The latitude of a position expressed using the WGS84 datum"@en ;
rdfs:domain savvi:Position ;
rdfs:range xsd:decimal ;
.
savvi:longitude
a rdf:Property ;
rdfs:label "longitude" ;
rdfs:comment "The longitude of a position expressed using the WGS84 datum"@en ;
rdfs:domain savvi:Position ;
rdfs:range xsd:decimal ;
.
# Lookup Classes/Instances
## Terms used for properties whose object must be one of an enumerated list. Named by IOTICS,
## label represents "permitted value"
savvi:AttributeType
a rdfs:Class ;
rdfs:label "Attribute Type"@en ;
.
savvi:Circumstance
a savvi:AttributeType ;
rdfs:label "Circumstance"@en ;
.
savvi:Event
a savvi:AttributeType ;
rdfs:label "Event"@en ;
.
savvi:Risk
a savvi:AttributeType ;
rdfs:label "Risk"@en ;
.
savvi:Service
a savvi:AttributeType ;
rdfs:label "Service"@en ;
.
savvi:Status
a rdfs:Class ;
rdfs:label "Status"@en ;
.
savvi:Planned
a rdfs:CaseStatus ;
rdfs:label "planned" ;
.
savvi:Active
a rdfs:CaseStatus ;
rdfs:label "active" ;
.
savvi:OnHold
a rdfs:CaseStatus ;
rdfs:label "onhold" ;
.
savvi:Finished
a rdfs:CaseStatus ;
rdfs:label "finished" ;
.
savvi:Cancelled
a rdfs:CaseStatus ;
rdfs:label "Cancelled" ;
.
savvi:ContactMethod
a rdfs:Class ;
rdfs:label "Contact Method"@en ;
.
savvi:Phone
a savvi:ContactMethod ;
a savvi:ContactPointSystem ;
rdfs:label "phone"@en ;
.
savvi:AtHome
a savvi:ContactMethod ;
rdfs:label "at home"@en ;
.
savvi:Letter
a savvi:ContactMethod ;
rdfs:label "letter"@en ;
.
savvi:Text
a savvi:ContactMethod ;
rdfs:label "text"@en ;
.
savvi:WebForm
a savvi:ContactMethod ;
rdfs:label "web form"@en ;
.
savvi:Email
a savvi:ContactMethod ;
a savvi:ContactPointSystem ;
rdfs:label "email"@en ;
.
savvi:FaceToFace
a rdfs:ContactMethod ;
rdfs:label "face-2-face"@en ;
.
savvi:ContactDirection
a rdfs:Class ;
rdfs:label "Contact Method"@en ;
.
savvi:Inbound
a rdfs:ContactDirection ;
rdfs:label "inbound"@en ;
.
savvi:Outbound
a rdfs:ContactDirection ;
rdfs:label "outbound"@en ;
.
savvi:OrganisationType
a rdfs:Class ;
rdfs:label "Organisation Type"@en ;
.
savvi:LocalAuthority
a savvi:OrganisationType ;
rdfs:label "Local Authority"@en ;
.
savvi:GovernmentDepartment
a savvi:OrganisationType ;
rdfs:label "Government Department"@en ;
.
savvi:CommunityGroup
a savvi:OrganisationType ;
rdfs:label "Community or Voluntary Group"@en ;
.
savvi:PrivateSector
a savvi:OrganisationType ;
rdfs:label "Private Sector"@en ;
.
savvi:OtherOrganisationType
a savvi:OrganisationType ;
rdfs:label "Other"@en ;
.
savvi:Gender
a rdfs:Class ;
rdfs:label "Gender"@en ;
.
savvi:Male
a savvi:Gender ;
rdfs:label "male"@en ;
.
savvi:Female
a savvi:Gender ;
rdfs:label "female"@en ;
.
savvi:OtherGender
a savvi:Gender ;
rdfs:label "other"@en ;
.
savvi:UnknownGender
a savvi:Gender ;
rdfs:label "unknown"@en ;
.
savvi:ContactPointSystem
a rdfs:Class ;
rdfs:label "System"@en ;
.
savvi:sms
a savvi:ContactPointSystem ;
rdfs:label "SMS"@en ;
.
# Relationship Properties
## Predicates whose subject and object are both SAVVI entities. Named by IOTICS --
## "label" shows arrow's label in Logical Model diagram.
savvi:performedBy
a rdf:Property ;
rdfs:label "by"@en ;
rdfs:domain savvi:Action ;
rdfs:range savvi:DeliveryOrganisation ;
.
savvi:addressesNeed
a rdf:Property ;
rdfs:label "addresses"@en ;
rdfs:domain savvi:Action ;
rdfs:range savvi:Need ;
.
savvi:about
a rdf:Property ;
rdfs:label "about"@en ;
rdfs:domain savvi:Attribute ;
rdfs:domain savvi:Case ;
rdfs:domain savvi:Need ;
rdfs:range savvi:Person ;
rdfs:range savvi:Household;
.
savvi:receivesAttribute
a rdf:Property ;
rdfs:label "receives"@en ;
rdfs:domain savvi:LeadOrganisation ;
rdfs:range savvi:Attribute ;
.
savvi:usesAttribute
a rdf:Property ;
rdfs:label "uses"@en ;
rdfs:domain savvi:RiskAssessment ;
rdfs:range savvi:Attribute ;
.
savvi:providesAttribute
a rdf:Property ;
rdfs:label "provides"@en ;
rdfs:domain savvi:SourceOrganisation ;
rdfs:range savvi:Attribute ;
.
savvi:relatesToCase
a rdf:Property ;
rdfs:label "case"@en ;
rdfs:domain savvi:ContactEvent ;
rdfs:domain savvi:Need ;
rdfs:range savvi:Case ;
.
savvi:describesCase
a rdf:Property ;
rdfs:label "of"@en ;
rdfs:domain savvi:SituationAssessment ;
rdfs:range savvi:Case ;
.
savvi:hasRiskAssessment
a rdf:Property ;
rdfs:label "risk"@en ;
rdfs:domain savvi:Case ;
rdfs:range savvi:RiskAssessment ;
.
savvi:assignedTo
a rdf:Property ;
rdfs:label "assigned to"@en ;
rdfs:domain savvi:Case ;
rdfs:range savvi:ResponsibleOrganisation ;
.
savvi:regardingCase
a rdf:Property ;
rdfs:label "about"@en ;
rdfs:domain savvi:ContactEvent ;
rdfs:range savvi:Case ;
.
savvi:passesInfoTo
a rdf:Property ;
rdfs:label "passes info to"@en ;
rdfs:domain savvi:ContactEvent ;
rdfs:range savvi:ResponsibleOrganisation ;
.
savvi:residesAt
a rdf:Property ;
rdfs:label "resides at"@en ;
rdfs:domain savvi:Household ;
rdfs:range savvi:Residence ;
.
savvi:includesPerson
a rdf:Property ;
rdfs:label "contains"@en ;
rdfs:domain savvi:Household ;
rdfs:range savvi:Person ;
.
savvi:outcomeOf
a rdf:Property ;
rdfs:label "of"@en ;
rdfs:domain savvi:Outcome ;
rdfs:range savvi:Case ;
rdfs:range savvi:Need ;
.
savvi:plansForNeed
a rdf:Property ;
rdfs:label "about"@en ;
rdfs:domain savvi:Plan ;
rdfs:range savvi:Need ;
.
savvi:referredTo
a rdf:Property ;
rdfs:label "referred to"@en ;
rdfs:domain savvi:Need ;
rdfs:range savvi:DeliveryOrganisation ;
.
savvi:plannedBy
a rdf:Property ;
rdfs:label "of"@en ;
rdfs:domain savvi:Plan ;
rdfs:range savvi:DeliveryOrganisation ;
.
savvi:inArea
a rdf:Property ;
rdfs:label "in"@en ;
rdfs:domain savvi:Residence ;
rdfs:range savvi:Area ;
.
savvi:riskAssessedBy
a rdf:Property ;
rdfs:label "by"@en ;
rdfs:domain savvi:RiskAssessment ;
rdfs:range savvi:LeadOrganisation ;
.
savvi:appliesTo
a rdf:Property ;
rdfs:label "applies"@en ;
rdfs:domain savvi:RiskAssessment ;
rdfs:range savvi:StratificationPolicy ;
.
savvi:situationAssessedBy
a rdf:Property ;
rdfs:label "by"@en ;
rdfs:domain savvi:SituationAssessment ;
rdfs:range savvi:ResponsibleOrganisation ;
.
# Attribute Properties
## Properties relating SAVVI entities to Literals or objects which are not SAVVI
## conceptual entities (Characteristics, FHIR datatypes, etc.) Named by IOTICS --
## "label" shows "attribute" name in Logical Model diagram. Somewhat redundant to
## capture the separate descriptions (rdfs:comment) of similar fields on different
## classes.
savvi:actionType
a rdf:Property ;
rdfs:label "Type"@en ;
rdfs:comment "The type of action - e.g. 'food parcel', 'debt advice'"@en ;
rdfs:domain savvi:Action ;
rdfs:range savvi:Characteristic ;
.
savvi:actionDate
a rdf:Property ;
rdfs:label "Date"@en ;
rdfs:comment "The date of the Action"@en ;
rdfs:domain savvi:Action ;
rdfs:range xsd:date ;
.
savvi:attributeType
a rdf:Property ;
rdfs:label "Type"@en ;
rdfs:comment "The type of Attribute - one of Circumstance, Event, Risk, Service"@en ;
rdfs:domain savvi:Attribute ;
rdfs:range savvi:AttributeType ;
.
savvi:attributeCharacteristic
a rdf:Property ;
rdfs:label "Characteristic"@en ;
rdfs:comment "To describe the Attribute, e.g. In receipt of Universal Credit, Living Alone"@en ;
rdfs:domain savvi:Attribute ;
rdfs:range savvi:Characteristic ;
.
savvi:attributeDate
a rdf:Property ;
rdfs:label "Date"@en ;
rdfs:comment "The date from which the attribute is true"@en ;
rdfs:domain savvi:Attribute ;
rdfs:range xsd:date ;
.
savvi:attributeEndDate
a rdf:Property ;
rdfs:label "EndDate"@en ;
rdfs:comment "The date from which the attribute ended or is expected to end"@en ;
rdfs:domain savvi:Attribute ;
rdfs:range xsd:date ;
.
savvi:caseReference
a rdf:Property ;
rdfs:label "Reference"@en ;
rdfs:comment "A unique reference for the case."@en ;
rdfs:domain savvi:Case ;
rdfs:range savvi:Identifier ;
.
savvi:hasStatus
a rdf:Property ;
rdfs:label "Status"@en ;
rdfs:comment "one of planned, active, onhold, finished, cancelled"@en ;
rdfs:domain savvi:Case ;
rdfs:domain savvi:Plan ;
rdfs:range savvi:Status ;
.
savvi:riskCategory
a rdf:Property ;
rdfs:label "RiskCategory"@en ;
rdfs:comment "A Risk Category if the Case was raised as a result of a Risk Assessment"@en ;
rdfs:domain savvi:Case ;
rdfs:range savvi:Characteristic ;
.
savvi:dateRaised
a rdf:Property ;
rdfs:label "DateRaised"@en ;
rdfs:comment "The Date that the Case was started"@en ;
rdfs:domain savvi:Case ;
rdfs:range xsd:date ;
.
savvi:dateClosed
a rdf:Property ;
rdfs:label "DateClosed"@en ;
rdfs:comment "The Date that the Case was closed."@en ;
rdfs:domain savvi:Case ;
rdfs:range xsd:date ;
.
savvi:contactDate
a rdf:Property ;
rdfs:label "Date"@en ;
rdfs:comment "The Date that the contact took place"@en ;
rdfs:domain savvi:ContactEvent ;
rdfs:range xsd:date ;
.
savvi:contactRole
a rdf:Property ;
rdfs:label "ContactRole"@en ;
rdfs:comment "To indicate the role that is providing information about the Case, e.g. Vulnerable Person, Relative, Public, Professional, Community Group, Elected Representative"@en ;
rdfs:domain savvi:ContactEvent ;
rdfs:range savvi:Characteristic ;
.
savvi:contactPerson
a rdf:Property ;
rdfs:label "ContactPerson"@en ;
rdfs:comment "The name of the person providing information."@en ;
rdfs:domain savvi:ContactEvent ;
rdfs:range xsd:string ;
.
savvi:contactMethod
a rdf:Property ;
rdfs:label "ContactMethod"@en ;
rdfs:comment ""@en ;
rdfs:domain savvi:ContactEvent ;
rdfs:range savvi:ContactMethod ;
.
savvi:contactDirection
a rdf:Property ;
rdfs:label "ContactDirection"@en ;
rdfs:comment "To indicate if the contact was initiated by the Subject or a support organisation. One-off, outbound or inbound."@en ;
rdfs:domain savvi:ContactEvent ;
rdfs:range savvi:ContactDirection ;
.
savvi:householdCharacteristic
a rdf:Property ;
rdfs:label "Characteristic"@en ;
rdfs:comment "May provide useful information such as OAP, has children"@en ;
rdfs:domain savvi:Household ;
rdfs:range savvi:Characteristic ;
.
savvi:householdIdentifier
a rdf:Property ;
rdfs:label "Identifier"@en ;
# no comment
rdfs:domain savvi:Household ;
rdfs:range savvi:Identifier ;
.
savvi:needType
a rdf:Property ;
rdfs:label "Type"@en ;
rdfs:comment "The type of need - such as: access to shopping, access to medicine, financial stability, remaining in the current accommodation"@en ;
rdfs:domain savvi:Need ;
rdfs:range savvi:Characteristic ;
.
savvi:rationale
a rdf:Property ;
rdfs:label "Rationale"@en ;
rdfs:comment "The reasoning for the need"@en ;
rdfs:domain savvi:Need ;
rdfs:range xsd:string ;
.
savvi:needDate
a rdf:Property ;
rdfs:label "Date"@en ;
rdfs:comment "The date that the need is established"@en ;
rdfs:domain savvi:Need ;
rdfs:range xsd:date ;
.
savvi:needEndDate
a rdf:Property ;
rdfs:label "EndDate"@en ;
rdfs:comment "The date that the need was resolved"@en ;
rdfs:domain savvi:Need ;
rdfs:range xsd:date ;
.
savvi:targetDate
a rdf:Property ;
rdfs:label "Target Date"@en ;
rdfs:comment "The date that the need should be resolved by for it to be effective."@en ;
rdfs:domain savvi:Need ;
rdfs:range xsd:date ;
.
savvi:organisationIdentifier
a rdf:Property ;
rdfs:label "Identifier"@en ;
rdfs:comment "A reference by which the organisation is known, eg: GDS Register of Local Authorities, Companies House Number, Charity Number"@en ;
rdfs:domain savvi:Organisation ;
rdfs:range savvi:Identifier ;
.
savvi:organisationType
a rdf:Property ;
rdfs:label "Type"@en ;
rdfs:comment "To indicate the type of the Organisation."@en ;
rdfs:domain savvi:Organisation ;
rdfs:range savvi:OrganisationType ;
.
savvi:organisationName
a rdf:Property ;
rdfs:label "Name"@en ;
# no comment
rdfs:domain savvi:Organisation ;
rdfs:range xsd:string ;
.
savvi:department
a rdf:Property ;
rdfs:label "Department"@en ;
rdfs:comment "a part of the organisation"@en ;
rdfs:domain savvi:Organisation ;
rdfs:range xsd:string ;
.
savvi:orgContactPerson
a rdf:Property ;
rdfs:label "ContactPerson"@en ;
# no comment
rdfs:domain savvi:Organisation ;
rdfs:range xsd:string ;
.
savvi:orgContactPoint
a rdf:Property ;
rdfs:label "ContactPoint"@en ;
# no comment
rdfs:domain savvi:Organisation ;
rdfs:range savvi:ContactPoint ;
.
savvi:outcomeCategory
a rdf:Property ;
rdfs:label "Category"@en ;
rdfs:comment "A Categorisation of the Outcome, such as: now supported by family or friends, lock-down over, sustainable tenancy"@en ;
rdfs:domain savvi:Outcome ;
rdfs:range savvi:Characteristic ;
.
savvi:outcomeDescription
a rdf:Property ;
rdfs:label "Description"@en ;
# no comment
rdfs:domain savvi:Outcome ;
rdfs:range xsd:string ;
.
savvi:outcomeDate
a rdf:Property ;
rdfs:label "Date"@en ;
rdfs:comment "the date that the Outcome was achieved"@en ;
rdfs:domain savvi:Outcome ;
rdfs:range xsd:date ;
.
savvi:personTitle
a rdf:Property ;
rdfs:label "Title"@en ;
# no comment
rdfs:domain savvi:Person ;
rdfs:range xsd:string ;
.
savvi:familyName
a rdf:Property ;
rdfs:label "FamilyName"@en ;
# no comment
rdfs:domain savvi:Person ;
rdfs:range xsd:string ;
.
savvi:givenNames
a rdf:Property ;
rdfs:label "GivenNames"@en ;
# no comment
rdfs:domain savvi:Person ;
rdfs:range xsd:string ;
.
savvi:personAlias
a rdf:Property ;
rdfs:label "Alias"@en ;
rdfs:comment "may be a shortened or familiar form of the GivenName (e.g., Betty or Lizzie vs Elizabeth), by which the person is generally known by family & friends;"@en ;
rdfs:domain savvi:Person ;
rdfs:range xsd:string ;
.
savvi:birthDate
a rdf:Property ;
rdfs:label "BirthDate"@en ;
rdfs:comment "At least an estimated year should be provided as a guess if the real DOB is unknown."@en ;
rdfs:domain savvi:Person ;
rdfs:range xsd:date ;
.
savvi:gender
a rdf:Property ;
rdfs:label "Gender"@en ;
# no comment
rdfs:domain savvi:Person ;
rdfs:range savvi:Gender ;
.
savvi:personIdentifier
a rdf:Property ;
rdfs:label "Identifier"@en ;
rdfs:comment "References by which people are known in various schemes, e.g. NiNo, Health Number, a local reference."@en ;
rdfs:domain savvi:Person ;
rdfs:range savvi:Identifier ;
.
savvi:planDescription
a rdf:Property ;
rdfs:label "Description"@en ;
rdfs:comment "Description of the Plan"@en ;
rdfs:domain savvi:Plan ;
rdfs:range xsd:string ;
.
savvi:planStartDate
a rdf:Property ;
rdfs:label "StartDate"@en ;
# no comment
rdfs:domain savvi:Plan ;
rdfs:range xsd:date ;
.
savvi:planEndDate
a rdf:Property ;
rdfs:label "EndDate"@en ;
# no comment
rdfs:domain savvi:Plan ;
rdfs:range xsd:date ;
.
savvi:residenceAddress
a rdf:Property ;
rdfs:label "Address"@en ;
# no comment
rdfs:domain savvi:Residence ;
rdfs:range savvi:Address ;
.
savvi:residenceCharacteristic
a rdf:Property ;
rdfs:label "Characteristic"@en ;
rdfs:comment "Information about the residence such as the number of bedrooms, condition"@en ;
rdfs:domain savvi:Residence ;
rdfs:range savvi:Characteristic ;
.
savvi:residenceIdentifier
a rdf:Property ;
rdfs:label "Identifier"@en ;
rdfs:comment "Properties are known by references such as the UPRN from GeoPlace. A property reference can be pseudonymised so that it can be matched with others, without knowing the actual address."@en ;
rdfs:domain savvi:Residence ;
rdfs:range savvi:Identifier ;
.
savvi:residencePosition
a rdf:Property ;
rdfs:label "Position"@en ;
rdfs:comment "The coordinates of a map pin"@en ;
rdfs:domain savvi:Residence ;
rdfs:range savvi:Position ;
.
savvi:residenceArea
a rdf:Property ;
rdfs:label "Area"@en ;
rdfs:comment "To indicate a geographic area that a property is contained in. Schemes might include: * Statistical Geographies such as LSOA * Administrative Geographies such as Local Authority jurisdictions * USRN (Unique Street Reference Number)"@en ;
rdfs:domain savvi:Residence ;
rdfs:range savvi:Identifier ;
.
savvi:riskAssessmentDate
a rdf:Property ;
rdfs:label "Date"@en ;
rdfs:comment "The Date that the Risk Category was established"@en ;