-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesaurus.ttl
1105 lines (805 loc) · 52.5 KB
/
thesaurus.ttl
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
@prefix audiences: <https://homernetwork.github.io/vocabulary/audiences/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix euvoc: <http://publications.europa.eu/ontology/euvoc#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix identifiers: <https://homernetwork.github.io/vocabulary/identifiers/> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix organisations: <https://homernetwork.github.io/vocabulary/organisations/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix qb: <http://purl.org/linked-data/cube#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix screenings: <https://homernetwork.github.io/vocabulary/screenings/> .
@prefix sem: <http://semanticweb.cs.vu.nl/2009/11/sem/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix skosthes: <http://purl.org/iso25964/skos-thes#> .
@prefix skosxl: <http://www.w3.org/2008/05/skos-xl#> .
@prefix subvenue: <https://homernetwork.github.io/vocabulary/rooms/> .
@prefix venues: <https://homernetwork.github.io/vocabulary/venues/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://homernetwork.github.io/vocabulary/venues/> dct:description "Terms to describe venues."@en;
dct:title "Venues"@en .
venues:Venue skos:altLabel "Movie Theatre"@en, "Picture House"@en, "Picture Palace"@en,
"Picture Theatre"@en, "Theatre"@en, "Venue"@en;
skos:definition "A place"@en;
skos:prefLabel "Biograf"@sv, "Salle de cinéma"@fr, "Salle obscure"@fr, "Venue"@en .
venues:Kommunales_Kino skos:altLabel "Kommunales Kino"@de;
skos:broader venues:Public_venue;
skos:definition "Cinema financed by a municipality, non-commercial, dedicated to art cinema and retrospectives of classics and other historically relevant films"@en;
skos:prefLabel "Kommunales Kino"@de, "Kommunales Kino"@en .
venues:Filmhuis skos:broader venues:Public_venue;
skos:definition "Art cinema, sometimes with financial support by the municipality"@en;
skos:prefLabel "Filmhuis"@en, "Filmhuis"@nl .
venues:Folkbiografer skos:broader venues:Public_venue;
skos:prefLabel "Folkbiografer"@en, "Folkbiografer"@sv .
venues:Folkets_bio skos:broader venues:Public_venue;
skos:prefLabel "Folkets bio"@en, "Folkets bio"@sv .
venues:Frontline_cinema sem:hasEarliestBeginTimeStamp "1939-01-01"^^xsd:date;
sem:hasLatestBeginTimeStamp "1941-12-31"^^xsd:date;
skos:altLabel "Frontline cinema"@en;
skos:broader venues:Private_venue;
skos:definition "Finland: dugouts that were built for protection during the war (frontline cinema) Viipuri during the Winter War. To add: period"@en;
skos:prefLabel "Frontline cinema"@en;
schema:spatialCoverage "Finland"@en .
venues:Warehouses sem:hasEarliestBeginTimeStamp "1939-01-01"^^xsd:date;
sem:hasLatestBeginTimeStamp "1941-12-31"^^xsd:date;
skos:altLabel "Warehouses"@en;
skos:broader venues:Venue_with_fixed_location;
skos:definition "Cinemas are warehouse buildings taken over during the war. To add: period."@en;
skos:prefLabel "Warehouses"@en;
schema:spatialCoverage "Finland"@en .
venues:Multiplex skos:broader venues:Multiplex_and_Multi-screen_cinema, venues:Public_venue,
venues:Venue_with_fixed_location;
skos:definition "A multiplex belonging to a large chain of cinemas"@en;
skos:prefLabel "Filmstaden"@sv, "Multiplex"@en .
venues:School skos:altLabel "School"@en;
skos:broader venues:Private_venue;
skos:definition "Indoor space for education where sometimes a film is shown"@en;
skos:prefLabel "School"@en .
venues:Arena skos:altLabel "Arena"@en;
skos:broader venues:Open-air;
skos:definition "An open air cinema, often temporary"@en;
skos:prefLabel "Arena"@en .
venues:Terraza skos:broader venues:Open-air;
skos:definition "when we refer to humble neighborhood cinema places with no roof, we tend to qualify the description, saying \"open-air cinemas\" or \"terrazas.\" DOI: https://doi.org/10.1007/978-3-031-38789-0_5, DOI: 10.1386/slac.14.3.277_1"@en;
skos:prefLabel "Terraza"@en, "Terraza"@es, "Terraza"@it .
venues:Utomhusbio skos:broader venues:Open-air, venues:Public_venue;
skos:definition "Outdoor cinema, temporary"@en;
skos:prefLabel "Utomhusbio"@en, "Utomhusbio"@sv .
venues:Folkets_Hus_Biografer skos:broader venues:Public_venue;
skos:definition "Cinemas driven by temperence societies and other independent cinemas and a smaller number of other kinds of grassroots organisations, such as local youth and sports clubs. This kind of ownership could involve a single cinema or a chain of cinemas."@en;
skos:prefLabel "Folkets Hus Biografer"@en, "Folkets Hus Biografer"@sv .
venues:Biograf skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "a venue, usually a building, for viewing films that has been listed by film companies (also known as 'cinemas' in the Swedish industry records, ie Filmägarnas kontrollbyrå) for more or less regular exhibition of film. It is a geographically fixed (with a street address) building. The frequency of film exhibition in a cinema varies from once every other month to 14 screenings a week (or more). Cinema can be one function of many in a multipurpose venue or a stand-alone purpose-built venue. Cinema can be owned by the organisation or company that owns the venue or it can be a company who rents the venue (multi-purpose of stand-alone) for exhibition. Sources: https://tmgonline.nl/articles/10.18146/tmg.601 https://www.cinemahistories.org/projects/swedish-cinema-everyday-life/"@en;
skos:prefLabel "Biograf"@en, "Biograf"@sv .
venues:Bioscope_theatre skos:altLabel "Bioscope theatre"@en;
skos:broader venues:Public_venue;
skos:definition "Similar to cinematograph theatre but less common becasue bioscope did not become the most common word for projector. The London-based trade journal The Bioscope kept it in circulation."@en;
skos:prefLabel "Bioscope theatre"@en .
venues:Cinema_theatre skos:altLabel "Cinema theatre"@en, "Kino"@de;
skos:broader venues:Public_venue;
skos:definition "A building in which films were shown for a public that pays an entrance fee (so commercial cinema operations, in our data restricted to members of the national cinema union NBB)"@en;
skos:prefLabel "Cinema theatre"@en, "Lichtspieltheater"@de, "Sala cinematografica"@it .
venues:Kinematographentheater sem:hasEarliestBeginTimeStamp "1700-01-01"^^xsd:date;
sem:hasLatestEndTimeStamp "1950-12-31"^^xsd:date;
skos:broader venues:Cinema_theatre, venues:Public_venue;
skos:prefLabel "Kinematographentheater"@de, "Kinematographentheater"@en;
skos:scopeNote "Historical term used for Cinema theatre"@en .
venues:Cinematograph_theatre skos:altLabel "Cinematograph theatre"@en;
skos:broader venues:Public_venue;
skos:definition "Cinematograph was the term used for projector in official discourse in the UK/Ireland, such as in the Cinematograph Act, 1909, and the licences that were issued by urban councils on foot of it. As a result, the premises that focused on showing films using one of these devices were often officially referred to as cinematograph theatres."@en;
skos:prefLabel "Cinematograph theatre"@en .
venues:Club_house skos:altLabel "Club house"@en;
skos:broader venues:Private_venue, venues:Venue_with_fixed_location;
skos:definition "labour associations, temperance clubs etc."@en;
skos:prefLabel "Club house"@en .
venues:Commercial_building_converted_into_cinema skos:altLabel "Commercial building converted into cinema"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "Commercial buildings converted into cinemas - shops, theatres, railway arches etc"@en;
skos:prefLabel "Commercial building converted into cinema"@en .
venues:Converted_premises skos:altLabel "Converted premises"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "Unlike the premises above, in which the buildings did not become cinemas, converted premises changed over to film exhibition but sometimes retained a connection to their previous use, often in the naming of the premises. This happened with converted theatres, churches and roller-skating rinks, hence the Rink Picture Palace."@en;
skos:prefLabel "Converted premises"@en .
venues:Drive-in_cinema skos:altLabel "Autokino"@de, "Drive-in cinema"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "Drive-ins are outdoor venues where audiences watch movies from their own vehicles. These locations provide all the necessary screening facilities for enjoying films."@en;
skos:prefLabel "Autokino"@de, "Drive-in cinema"@en .
venues:Electric_theatre skos:altLabel "Electric theatre"@en;
skos:broader venues:Public_venue;
skos:definition "A company called Electric Theatres existed, but other unaffiliated proprietors referred to their premises as an electric theatre."@en;
skos:prefLabel "Electric theatre"@en .
<https://homernetwork.github.io/vocabulary/venues/Kinematograf_(venue)> skos:altLabel
"Kinematograf (venue)"@de;
skos:broader venues:Public_venue;
skos:definition "The projection equipment and the term could also refer to the venue of film exhibition (used in the first decades of cinema)"@en;
skos:prefLabel "Kinematograf (venue)"@de, "Kinematograf (venue)"@en .
venues:Multiplex_and_Multi-screen_cinema skos:altLabel "Multi-screen cinema"@en, "Multiplex"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "A multiplex is a facility that accommodates multiple theaters for the simultaneous screening of several films. Multiplex (Italian: multisala) (alternative labels) Multi-screen cinema"@en;
skos:prefLabel "Multiplex and Multi-screen cinema"@en, "multisala"@it .
venues:Multipurpose_venue skos:altLabel "Multipurpose venue"@en;
skos:broader venues:Venue_with_fixed_location;
skos:definition "The most important of these were town halls, often serving as the main film exhibition venue in smaller towns or villages.Church halls were also important but may have served only part of the local community."@en;
skos:narrower venues:School;
skos:prefLabel "Multipurpose venue"@en .
venues:Open-air skos:altLabel "Open-air"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "It can be a square, a courtyard, a field. source: Europeancinemaaudiences.org"@en;
skos:prefLabel "Open-air"@en .
venues:Picture_House skos:altLabel "Picture House"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "in the early cinema period (1890s-c.1915), most things were in flux, and \"cinema\" was not the generic term for a premises exhibiting films; several other terms were used, the most common of which I have found in my research - which focuses on Ireland, still part of the UK at this time - was \"picture house\". But this was not a neutrally descriptive term; it and its alternatives often encoded class/commercial issues."@en;
skos:prefLabel "Picture House"@en .
venues:Picture_palace skos:altLabel "Picture palace"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "in certain contexts, this may have indicated a more salubrious venue than competitors or sometimes just the suggestion rather than the reality."@en;
skos:prefLabel "Picture palace"@en .
venues:Picture_theatre skos:altLabel "Picture theatre"@en;
skos:broader venues:Public_venue;
skos:definition "Probably the second most common term in Ireland in the 1910s."@en;
skos:prefLabel "Picture theatre"@en .
venues:Private_home skos:altLabel "Private home"@en;
skos:broader venues:Private_venue;
skos:closematch "ownership:private"@en;
skos:prefLabel "Private home"@en .
venues:Sala_cinematografica skos:broader venues:Venue_with_fixed_location;
skos:definition "Every single place, usually a building, where a movie was shown. It could be a real movie theatre, a theatre, a cinema-theatre, a multipurpose venue, a building used for something else (e.g. hospital), an open-air cinema, etc. It is an address, usually, and correspond to specific geographic coordinates. The building, the management, the architecture, the name, etc., all can change, but it stays the same 'sala cinematografica' as long as it shows movies. Travelling cinemas are exluded for now. To account for moving exhibitors, societies etc, we have other categories (such as people and companies)."@en;
skos:prefLabel "Sala"@it, "Sala cinematografica"@en, "Sala cinematografica"@it .
venues:Stand-alone_purpose-built_venue skos:altLabel "Stand-alone purpose-built venue"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:editorialNote "In UK since 1910"@en;
skos:prefLabel "Stand-alone purpose-built venue"@en .
venues:Theatre skos:altLabel "Theatre"@en;
skos:broader venues:Public_venue;
skos:definition "Theatre - here referring not in the US synonym for cinema but to a theatre which mostly hosted live shows but showed films occasionally or in the case of variety theatres, incorporated film into its offerings on a regular basis for a substantial period (years), particularly if the proprietors had invested in a projector."@en;
skos:prefLabel "Theatre"@en, "Varieté"@de .
venues:Travelling_cinema skos:altLabel "Travelling cinema"@en;
skos:broader venues:Travelling_venue;
skos:definition "A temporary setup for screening films to an audience at a venue that is not a purpose built building (e.g., fairs, community halls, etc.)"@en;
skos:prefLabel "Travelling cinema"@en, "Wanderkino"@de .
venues:Virtual_Venue skos:altLabel "Virtual Venue"@en;
skos:broader venues:Venue;
skos:definition "Online spaces for viewing digital audiovisual content. Viewers can access them through various screens at their convenience, choosing the time and mode of consumption."@en;
skos:prefLabel "Virtual Venue"@en .
venues:Warehouse_building sem:hasEarliestBeginTimeStamp "1939-01-01"^^xsd:date;
sem:hasLatestEndTimeStamp "1940-12-31"^^xsd:date;
skos:altLabel "Warehouse building"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "Warehouse buildings taken over during the war. Viipuri during the Winter War, 1939-1940"@en;
skos:prefLabel "Warehouse building"@en;
schema:spatialCoverage "Finland"@en .
venues:Streaming_Platform skos:altLabel "Streaming Platform"@en;
skos:broader venues:Virtual_Venue;
skos:prefLabel "Streaming Platform"@en .
venues:Cinema sem:hasEarliestBeginTimeStamp "1915-01-01"^^xsd:date;
skos:altLabel "Cinema"@en, "Salas de Cine"@es, "Teatros"@es;
skos:broader venues:Public_venue;
skos:definition "A building where films were shown, not necessarily on a regular basis. It does not matter whether this was on a regular basis or not. Also a cinema can be an open air space (not a building) where a film is screened. This can be a square, a courtyard, a field. Cinema is \"\"an arrangement of things in space (including tools and information carriers); an arrangement of activity in time. Cf definition of Picture House"@en;
skos:prefLabel "Cinema"@en, "Cines"@es;
schema:spatialCoverage "UK,Ireland"@en .
venues:Tent skos:broader venues:Public_venue;
skos:prefLabel "Tent"@en, "Tent"@nl .
venues:Registered_cinema skos:broader venues:Public_venue;
skos:definition "A venue, that has been listed by film companies (also known as 'cinemas' in the Swedish industry records, ie Filmägarnas kontrollbyrå"@en;
skos:prefLabel "Registered cinema"@en .
venues:Venue_with_fixed_location skos:broader venues:Venue;
skos:definition "Geographically fixed (with a street address) building"@en;
skos:prefLabel "Venue with fixed location"@en .
venues:Adult_cinema skos:broader venues:Cinema;
skos:prefLabel "Adult cinema"@en .
venues:Public_venue skos:broader venues:Venue;
skos:prefLabel "Public venue"@en .
venues:Private_venue skos:broader venues:Venue;
skos:closematch "ownership:private"@en;
skos:prefLabel "Private venue"@en .
venues:Single_purpose_venue skos:broader venues:Venue;
skos:prefLabel "Single purpose venue"@en .
venues:Teatro skos:broader venues:Venue;
skos:definition "In Latin America the word \"teatro\" is mostly used for live entertainment events and \"cine\" for film screenings, unlike American English which tend to use \"theatre\" also for movie venue"@en;
skos:prefLabel "Teatro"@en, "Teatro"@es;
schema:spatialCoverage "Latin America"@en .
venues:Cinema_house skos:broader venues:Cinema;
skos:prefLabel "Cinema house"@en, "Coliseum"@es;
skos:scopeNote "US only Spanish language areas"@en;
schema:spatialCoverage "Mexico, US"@en .
venues:Single_screen_cinema skos:broader venues:Cinema;
skos:definition "Cinema with 1 screen."@en;
skos:prefLabel "Single screen cinema"@en .
venues:Travelling_venue skos:broader venues:Venue;
skos:definition "Mobile venue."@en;
skos:prefLabel "Travelling venue"@en .
venues:Saal skos:broader venues:Venue;
skos:definition "\"Saal\" as defined in the Early German Film Database: not a Kino, not a theatre and not a traveling cinema"@en;
skos:prefLabel "Saal"@en .
venues:Venue_by_ownership skos:prefLabel "Venue by ownership"@en .
venues:Cinema_chain skos:broader venues:Independent;
skos:definition "In Sweden: independent cinemas owned by a private person or a smaller firm. A cinema chain would include travelling companies that traveled on a rotating schedule to a number of small locations."@en;
skos:prefLabel "Cinema chain"@en .
venues:Independent skos:broader venues:Venue_by_ownership;
skos:definition "In Sweden: Owned by a private person or a smaller firm. This kind of ownership could involve a single cinema or a chain of cinemas. The latter type of cinema would include travelling companies that traveled on a rotating schedule to a number of small locations."@en;
skos:prefLabel "Independent"@en .
venues:Franchise skos:broader venues:Dependent;
skos:prefLabel "Franchise"@en .
venues:Vertically_integrated_company skos:broader venues:Dependent;
skos:prefLabel "Vertically integrated company"@en;
a skos:Concept .
venues:Dependent a skos:Concept;
skos:broader venues:Venue_by_ownership;
skos:prefLabel "Dependent"@en .
venues:Art_house_cinema a skos:Concept;
skos:altLabel "Art house cinema"@es;
skos:broader venues:Venue_by_programming;
skos:prefLabel "Art house cinema"@en, "Programmkino"@fr .
venues:Nieuwsbioscoop a skos:Concept;
skos:altLabel "Nieuwsbioscoop"@de;
skos:broader venues:Venue_by_programming;
skos:prefLabel "Nieuwsbioscoop"@en .
venues:Mixed_programming_theatre_and_film a skos:Concept;
skos:altLabel "Theatre and film"@es;
skos:broader venues:Cinema, venues:Theatre, venues:Venue_by_programming;
skos:prefLabel "Mixed programming theatre and film"@en .
venues:Sex_cinema a skos:Concept;
skos:broader venues:Venue_by_programming;
skos:prefLabel "Sex cinema"@en .
venues:Venue_by_programming a skos:Concept;
skos:prefLabel "Venue by programming"@en .
venues:Venue_by_opening_type a skos:Concept;
skos:prefLabel "Venue by opening type"@en .
venues:Seasonal a skos:Concept;
skos:broader venues:Venue_by_opening_type;
skos:prefLabel "Seasonal"@en .
venues:Year-round a skos:Concept;
skos:broader venues:Venue_by_opening_type;
skos:prefLabel "Year-round"@en .
venues:Venues_by_category a skos:Concept;
skos:prefLabel "Venues by category"@en .
venues:First_run a skos:Concept;
skos:broader venues:Tier;
skos:prefLabel "First run"@en .
venues:Second_run a skos:Concept;
skos:broader venues:Tier;
skos:prefLabel "Second run"@en .
venues:ECA-Rank a skos:Concept;
skos:broader venues:Venues_by_category;
skos:prefLabel "ECA-Rank"@en .
venues:Intermediate a skos:Concept;
skos:broader venues:ECA-Rank;
skos:prefLabel "Intermediate"@en .
venues:Elite a skos:Concept;
skos:broader venues:ECA-Rank;
skos:prefLabel "Elite"@en .
venues:Minor a skos:Concept;
skos:broader venues:ECA-Rank;
skos:prefLabel "Minor"@en .
venues:Inactive a skos:Concept;
skos:broader venues:ECA-Rank;
skos:prefLabel "Inactive"@en .
venues:Major a skos:Concept;
skos:broader venues:ECA-Rank;
skos:prefLabel "Major"@en .
venues:Category a skos:Concept;
skos:broader venues:Venues_by_category;
skos:definition "(defined by Italian, UK or US authorities and pertains to the 'tier' of the cinema)"@en;
skos:prefLabel "Category"@de, "Category"@en .
venues:Tier a skos:Concept;
skos:broader venues:Venues_by_category;
skos:prefLabel "Tier"@en .
venues:Venue a skos:Concept .
venues:Kommunales_Kino a skos:Concept .
venues:Filmhuis a skos:Concept .
venues:Folkbiografer a skos:Concept .
venues:Folkets_bio a skos:Concept .
venues:Frontline_cinema a skos:Concept .
venues:Warehouses a skos:Concept .
venues:Multiplex a skos:Concept .
venues:School a skos:Concept .
venues:Arena a skos:Concept .
venues:Terraza a skos:Concept .
venues:Utomhusbio a skos:Concept .
venues:Folkets_Hus_Biografer a skos:Concept .
venues:Biograf a skos:Concept .
venues:Bioscope_theatre a skos:Concept .
venues:Cinema_theatre a skos:Concept;
skos:narrower venues:Kinematographentheater .
venues:Kinematographentheater a skos:Concept .
venues:Cinematograph_theatre a skos:Concept .
venues:Club_house a skos:Concept .
venues:Commercial_building_converted_into_cinema a skos:Concept .
venues:Converted_premises a skos:Concept .
venues:Drive-in_cinema a skos:Concept .
venues:Electric_theatre a skos:Concept .
<https://homernetwork.github.io/vocabulary/venues/Kinematograf_(venue)> a skos:Concept .
venues:Multiplex_and_Multi-screen_cinema a skos:Concept;
skos:narrower venues:Multiplex .
venues:Multipurpose_venue a skos:Concept .
venues:Open-air a skos:Concept;
skos:narrower venues:Arena, venues:Terraza, venues:Utomhusbio .
venues:Picture_House a skos:Concept .
venues:Picture_palace a skos:Concept .
venues:Picture_theatre a skos:Concept .
venues:Private_home a skos:Concept .
venues:Sala_cinematografica a skos:Concept .
venues:Stand-alone_purpose-built_venue a skos:Concept .
venues:Theatre a skos:Concept;
skos:narrower venues:Mixed_programming_theatre_and_film .
venues:Travelling_cinema a skos:Concept .
venues:Virtual_Venue a skos:Concept;
skos:narrower venues:Streaming_Platform .
venues:Warehouse_building a skos:Concept .
venues:Streaming_Platform a skos:Concept .
venues:Cinema a skos:Concept;
skos:narrower venues:Adult_cinema, venues:Cinema_house, venues:Mixed_programming_theatre_and_film,
venues:Single_screen_cinema .
venues:Tent a skos:Concept .
venues:Registered_cinema a skos:Concept .
venues:Venue_with_fixed_location a skos:Concept;
skos:narrower venues:Biograf, venues:Club_house, venues:Commercial_building_converted_into_cinema,
venues:Converted_premises, venues:Drive-in_cinema, venues:Multiplex, venues:Multiplex_and_Multi-screen_cinema,
venues:Multipurpose_venue, venues:Open-air, venues:Picture_House, venues:Picture_palace,
venues:Sala_cinematografica, venues:Stand-alone_purpose-built_venue, venues:Warehouse_building,
venues:Warehouses .
venues:Adult_cinema a skos:Concept .
venues:Public_venue a skos:Concept;
skos:narrower venues:Biograf, venues:Bioscope_theatre, venues:Cinema, venues:Cinema_theatre,
venues:Cinematograph_theatre, venues:Commercial_building_converted_into_cinema, venues:Converted_premises,
venues:Drive-in_cinema, venues:Electric_theatre, venues:Filmhuis, venues:Folkbiografer,
venues:Folkets_Hus_Biografer, venues:Folkets_bio, <https://homernetwork.github.io/vocabulary/venues/Kinematograf_(venue)>,
venues:Kinematographentheater, venues:Kommunales_Kino, venues:Multiplex;
skos:inScheme <https://homernetwork.github.io/vocabulary/venues/>;
skos:narrower venues:Multiplex_and_Multi-screen_cinema, venues:Open-air, venues:Picture_House,
venues:Picture_palace, venues:Picture_theatre, venues:Registered_cinema, venues:Stand-alone_purpose-built_venue,
venues:Tent, venues:Theatre, venues:Utomhusbio, venues:Warehouse_building .
venues:Private_venue a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/venues/>;
skos:narrower venues:Club_house, venues:Frontline_cinema, venues:Private_home, venues:School .
venues:Single_purpose_venue a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Teatro a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Cinema_house a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Single_screen_cinema a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Travelling_venue a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/venues/>;
skos:narrower venues:Travelling_cinema .
venues:Saal a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Venue_by_ownership a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/venues/>;
skos:narrower venues:Dependent, venues:Independent .
venues:Cinema_chain a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Independent a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/venues/>;
skos:narrower venues:Cinema_chain .
venues:Franchise a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Venue skos:inScheme <https://homernetwork.github.io/vocabulary/venues/>;
skos:narrower venues:Private_venue, venues:Public_venue, venues:Saal, venues:Single_purpose_venue,
venues:Teatro, venues:Travelling_venue, venues:Venue_with_fixed_location, venues:Virtual_Venue;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/venues/> .
venues:Dependent skos:inScheme <https://homernetwork.github.io/vocabulary/venues/>;
skos:narrower venues:Franchise, venues:Vertically_integrated_company .
venues:Venue_by_programming skos:inScheme <https://homernetwork.github.io/vocabulary/venues/>;
skos:narrower venues:Art_house_cinema, venues:Mixed_programming_theatre_and_film,
venues:Nieuwsbioscoop, venues:Sex_cinema;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/venues/> .
venues:Venue_by_opening_type skos:inScheme <https://homernetwork.github.io/vocabulary/venues/>;
skos:narrower venues:Seasonal, venues:Year-round;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/venues/> .
venues:Tier skos:inScheme <https://homernetwork.github.io/vocabulary/venues/>;
skos:narrower venues:First_run, venues:Second_run .
venues:Venues_by_category skos:inScheme <https://homernetwork.github.io/vocabulary/venues/>;
skos:narrower venues:Category, venues:ECA-Rank, venues:Tier;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/venues/> .
venues:ECA-Rank skos:inScheme <https://homernetwork.github.io/vocabulary/venues/>;
skos:narrower venues:Elite, venues:Inactive, venues:Intermediate, venues:Major, venues:Minor .
venues:School skos:broader venues:Multipurpose_venue;
skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Kommunales_Kino skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Filmhuis skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Folkbiografer skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Folkets_bio skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Frontline_cinema skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Warehouses skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Multiplex skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Arena skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Terraza skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Utomhusbio skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Folkets_Hus_Biografer skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Biograf skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Bioscope_theatre skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Cinema_theatre skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Kinematographentheater skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Cinematograph_theatre skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Club_house skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Commercial_building_converted_into_cinema skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Converted_premises skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Drive-in_cinema skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Electric_theatre skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
<https://homernetwork.github.io/vocabulary/venues/Kinematograf_(venue)> skos:inScheme
<https://homernetwork.github.io/vocabulary/venues/> .
venues:Multiplex_and_Multi-screen_cinema skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Multipurpose_venue skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Open-air skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Picture_House skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Picture_palace skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Picture_theatre skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Private_home skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Sala_cinematografica skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Stand-alone_purpose-built_venue skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Theatre skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Travelling_cinema skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Virtual_Venue skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Warehouse_building skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Streaming_Platform skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Cinema skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Tent skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Registered_cinema skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Venue_with_fixed_location skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Adult_cinema skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Vertically_integrated_company skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Art_house_cinema skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Nieuwsbioscoop skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Mixed_programming_theatre_and_film skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Sex_cinema skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Seasonal skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Year-round skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:First_run skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Second_run skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Intermediate skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Elite skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Minor skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Inactive skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Major skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
venues:Category skos:inScheme <https://homernetwork.github.io/vocabulary/venues/> .
<https://homernetwork.github.io/vocabulary/venues/> a skos:ConceptScheme;
skos:hasTopConcept venues:Venue, venues:Venue_by_opening_type, venues:Venue_by_ownership,
venues:Venue_by_programming, venues:Venues_by_category .
venues:Venue_by_ownership skos:topConceptOf <https://homernetwork.github.io/vocabulary/venues/> .
<https://homernetwork.github.io/vocabulary/audiences/> dct:description "Terms to describe audiences."@en;
dct:title "Audiences"@en .
audiences:audience_per_age_category a skos:Concept;
skos:prefLabel "audience per age category"@en .
audiences:adults a skos:Concept;
skos:broader audiences:audience_per_age_category;
skos:prefLabel "adults"@en .
audiences:children a skos:Concept;
skos:broader audiences:audience_per_age_category;
skos:prefLabel "children"@en .
audiences:young_adults a skos:Concept;
skos:broader audiences:audience_per_age_category;
skos:prefLabel "young adults"@en .
audiences:senior_citizens a skos:Concept;
skos:altLabel "elderly"@en;
skos:broader audiences:audience_per_age_category;
skos:prefLabel "senior citizens"@en .
audiences:audience_per_gender a skos:Concept;
skos:prefLabel "audience per gender"@en .
audiences:female a skos:Concept;
skos:altLabel "women"@en;
skos:broader audiences:audience_per_gender;
skos:prefLabel "female"@en .
audiences:male a skos:Concept;
skos:altLabel "men"@en;
skos:broader audiences:audience_per_gender;
skos:prefLabel "male"@en .
audiences:non-binary a skos:Concept;
skos:broader audiences:audience_per_gender;
skos:prefLabel "non-binary"@en .
audiences:trans a skos:Concept;
skos:broader audiences:audience_per_gender;
skos:prefLabel "trans"@en .
audiences:other a skos:Concept;
skos:broader audiences:audience_per_gender;
skos:prefLabel "other"@en .
audiences:audience_per_sexuality a skos:Concept;
skos:prefLabel "audience per sexuality"@en .
audiences:audience_per_ethnicity a skos:Concept;
skos:prefLabel "audience per ethnicity"@en .
audiences:audience_per_language a skos:Concept;
skos:prefLabel "audience per language"@en .
audiences:audience_per_ideology a skos:Concept;
skos:prefLabel "audience per ideology"@en .
audiences:audience_per_religion a skos:Concept;
skos:prefLabel "audience per religion"@en .
audiences:audience_per_household_income a skos:Concept;
skos:narrower audiences:high_income, audiences:low_income, audiences:middle_income;
skos:prefLabel "audience per household income"@en .
audiences:low_income a skos:Concept;
skos:broader audiences:audience_per_household_income;
skos:prefLabel "low income"@en .
audiences:middle_income a skos:Concept;
skos:broader audiences:audience_per_household_income;
skos:prefLabel "middle income"@en .
audiences:high_income a skos:Concept;
skos:broader audiences:audience_per_household_income;
skos:prefLabel "high income"@en .
audiences:audience_per_social_class a skos:Concept;
skos:narrower audiences:elite_social_class, audiences:middle_social_class, audiences:working_social_class;
skos:prefLabel "audience per social class"@en .
audiences:working_social_class a skos:Concept;
skos:broader audiences:audience_per_social_class;
skos:prefLabel "working social class"@en .
audiences:middle_social_class a skos:Concept;
skos:broader audiences:audience_per_social_class;
skos:prefLabel "middle social class"@en .
audiences:elite_social_class a skos:Concept;
skos:broader audiences:audience_per_social_class;
skos:prefLabel "elite social class"@en;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:audience_per_occupation a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:narrower audiences:firemen, audiences:military_audience;
skos:prefLabel "audience per occupation"@en .
audiences:military_audience a skos:Concept;
skos:broader audiences:audience_per_occupation;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:prefLabel "military audience"@en .
audiences:firemen a skos:Concept;
skos:broader audiences:audience_per_occupation;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:prefLabel "firemen"@en .
audiences:biografpublik a skos:Concept;
skos:broader audiences:cinema_audience;
skos:definition "Audience that goes to the movies to watch film"@en;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:prefLabel "Biografpublik"@sv, "biografpublik"@en .
audiences:film_viewer a skos:Concept;
skos:broader audiences:film_audience;
skos:definition "an individual watching a film"@en;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:prefLabel "film viewer"@en .
audiences:film_audience a skos:Concept;
skos:definition "A body of individuals watching and/or listening to a show, concert, film, or speech. The cinema audience comprises people who assemble to watch films in cinemas and other venues, both public and private, as well as those who consume films via alternative platforms such as video, DVD, home cinema, and television."@en;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:narrower audiences:film_viewer, audiences:filmpublik, audiences:pubblico, audiences:spettatore;
skos:prefLabel "film audience"@en .
audiences:cinema_audience a skos:Concept;
skos:definition "They are the sum of individual consumers who have chosen to buy a cinema ticket in a particular location/locality during a specific (period of) time."@en;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:narrower audiences:biografpublik, audiences:cinemagoers;
skos:prefLabel "cinema audience"@en .
audiences:cinemagoers a skos:Concept;
skos:broader audiences:cinema_audience;
skos:definition "members of the public, connected to the cinema. Not as simple as simply saying 'cinemagoers' although this is a preferred term. But also including those who may not be attending, but still connected to the cinema through physical proximity (they pass a marquee) or through social media/online marketing and comms"@en;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:prefLabel "cinemagoers"@en .
audiences:filmpublik a skos:Concept;
skos:broader audiences:film_audience;
skos:definition "Film audience (regardless of which kind of screen the film is shown on). Doesn't necessarily have to be on a regular basis"@en;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:prefLabel "Filmpublik"@sv, "filmpublik"@en .
audiences:pubblico a skos:Concept;
skos:broader audiences:film_audience;
skos:definition "The group of people who frequent a place open to the public, e.g. shops, offices, theatres, libraries or general of entertainment"@en;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:prefLabel "Pubblico"@it, "pubblico"@en .
audiences:spettatore a skos:Concept;
skos:broader audiences:film_audience;
skos:definition "A person who takes part in a show, a ceremony or a sporting event [definition, used most frequently in the plural form \"spettatori\"]"@en;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:prefLabel "Spettatore"@it, "spettatore"@en .
audiences:audience_per_location a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:narrower audiences:city-centre_audience, audiences:rural_audience, audiences:small-town_audience,
audiences:suburban_audience;
skos:prefLabel "audience per location"@en;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:city-centre_audience a skos:Concept;
skos:broader audiences:audience_per_location;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:prefLabel "city-centre audience"@en .
audiences:suburban_audience a skos:Concept;
skos:broader audiences:audience_per_location;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:prefLabel "suburban audience"@en .
audiences:small-town_audience a skos:Concept;
skos:broader audiences:audience_per_location;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:prefLabel "small-town audience"@en .
audiences:rural_audience a skos:Concept;
skos:broader audiences:audience_per_location;
skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:prefLabel "rural audience"@en .
audiences:audience_per_age_category skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:narrower audiences:adults, audiences:children, audiences:senior_citizens, audiences:young_adults;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:audience_per_gender skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:narrower audiences:female, audiences:male, audiences:non-binary, audiences:other,
audiences:trans;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:adults skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:children skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:young_adults skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:senior_citizens skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:female skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:male skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:non-binary skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:trans skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:other skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:audience_per_sexuality skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:audience_per_ethnicity skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:audience_per_language skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:audience_per_ideology skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:audience_per_religion skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:audience_per_household_income skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:low_income skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:middle_income skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:high_income skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:audience_per_social_class skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/>;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:working_social_class skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:middle_social_class skos:inScheme <https://homernetwork.github.io/vocabulary/audiences/> .
<https://homernetwork.github.io/vocabulary/audiences/> a skos:ConceptScheme;
skos:hasTopConcept audiences:audience_per_age_category, audiences:audience_per_ethnicity,
audiences:audience_per_gender, audiences:audience_per_household_income, audiences:audience_per_ideology,
audiences:audience_per_language, audiences:audience_per_location, audiences:audience_per_occupation,
audiences:audience_per_religion, audiences:audience_per_sexuality, audiences:audience_per_social_class,
audiences:cinema_audience, audiences:film_audience .
audiences:audience_per_occupation skos:topConceptOf <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:film_audience skos:topConceptOf <https://homernetwork.github.io/vocabulary/audiences/> .
audiences:cinema_audience skos:topConceptOf <https://homernetwork.github.io/vocabulary/audiences/> .
<https://homernetwork.github.io/vocabulary/screenings/> a skos:ConceptScheme;
dct:title "Screenings"@en;
skos:hasTopConcept screenings:Part_of_double_bill, screenings:Première, screenings:Screening_by_admission_price,
screenings:Screening_per_audience, screenings:Screening_per_event .
screenings:Paid_screening a skos:Concept;
skos:broader screenings:Screening_by_admission_price;
skos:inScheme <https://homernetwork.github.io/vocabulary/screenings/>;
skos:prefLabel "Paid screening"@en .
screenings:Screening_by_admission_price a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/screenings/>;
skos:narrower screenings:Free_screening, screenings:Paid_screening;
skos:prefLabel "Screening by admission price"@en;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/screenings/> .
screenings:Première a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/screenings/>;
skos:prefLabel "Première"@en;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/screenings/> .
screenings:Part_of_double_bill a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/screenings/>;
skos:prefLabel "Part of double bill"@en;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/screenings/> .
screenings:Free_screening a skos:Concept;
skos:broader screenings:Screening_by_admission_price;
skos:inScheme <https://homernetwork.github.io/vocabulary/screenings/>;
skos:prefLabel "Free screening"@en .
screenings:Educational_screening a skos:Concept;
skos:broader screenings:Screening_per_audience;
skos:inScheme <https://homernetwork.github.io/vocabulary/screenings/>;
skos:prefLabel "Educational screening"@en .
screenings:Propaganda_screening a skos:Concept;
skos:broader screenings:Screening_per_audience;
skos:inScheme <https://homernetwork.github.io/vocabulary/screenings/>;
skos:prefLabel "Propaganda screening"@en .
screenings:Screening_per_audience a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/screenings/>;
skos:narrower screenings:Educational_screening, screenings:Propaganda_screening;
skos:prefLabel "Screening per audience"@en;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/screenings/> .
screenings:Screening_per_event a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/screenings/>;
skos:narrower screenings:Festival;
skos:prefLabel "Screening per event"@en;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/screenings/> .
screenings:Festival a skos:Concept;
skos:broader screenings:Screening_per_event;
skos:inScheme <https://homernetwork.github.io/vocabulary/screenings/>;
skos:prefLabel "Festival"@en .
<https://homernetwork.github.io/vocabulary/organisations/> a skos:ConceptScheme;
dct:title "Organisations"@en;
skos:hasTopConcept organisations:Church, organisations:Club, organisations:Community,
organisations:Military, organisations:NGO, organisations:Private, organisations:Society,
organisations:State .
organisations:Military a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/organisations/>;
skos:prefLabel "Military"@en;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/organisations/> .
organisations:State a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/organisations/>;
skos:narrower organisations:Municipality;
skos:prefLabel "State"@en;
skos:topConceptOf <https://homernetwork.github.io/vocabulary/organisations/> .
organisations:Church a skos:Concept;
skos:inScheme <https://homernetwork.github.io/vocabulary/organisations/>;
skos:narrower organisations:Parish;