-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINDIGO_graffiti_thesaurus_v1.json
4183 lines (4182 loc) · 326 KB
/
INDIGO_graffiti_thesaurus_v1.json
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
[
{
"Unique identifier": "3dGraffiti",
"Type": "concept",
"skos:prefLabel @en": "3D (graffiti)",
"skos:broader": "letterformComponents",
"rdf:type (skos:)": "Concept",
"skos:member": "style",
"skos:altLabel @en": "3D $$ three-dimensional (graffiti) $$ three dimensional (graffiti) $$ 3d",
"skos:editorialNote @en": "\"3D (graffiti)\" refers to a style of graffiti that employs techniques such as shading, highlights, and perspective to give the illusion of three-dimensionality to the text, characters, or abstract motifs in a graffito. This style is designed to make the graffiti appear as if it is popping out from the surface, adding depth and a sense of realism to the work. The use of 3D techniques in graffiti showcases the technical skill and creativity of the graffitist, and contributes to the visual impact and aesthetic appeal of the work. As with all styles of graffiti, it should be understood within its specific cultural and aesthetic context.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "https://www.wikidata.org/wiki/Q34929",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "broadMatch",
"dct:source": "",
"skos:related": "blocksGraffiti"
},
{
"Unique identifier": "abstractStyleGraffiti",
"Type": "concept",
"skos:prefLabel @en": "abstract style (graffiti)",
"skos:broader": "stylesStreetArt",
"rdf:type (skos:)": "Concept",
"skos:member": "style",
"skos:altLabel @en": "abstract $$ Abstract style $$ Abstract Style $$ abstract (style) $$ abstract (graffiti)",
"skos:editorialNote @en": "\"Abstract Style (graffiti)\" refers to a style of graffiti that, while possibly inspired by the abstract art movement, is distinct and unique in its own right. This style is characterised by the use of non-representational or non-objective elements, focusing on the visual qualities such as colours, shapes, and lines rather than attempting to depict a recognisable reality. The abstract style in graffiti allows for a high degree of creative freedom and experimentation, and can be used to create visually striking and thought-provoking works. As with all styles of graffiti, it should be understood within its specific cultural and aesthetic context.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300108127\r\n",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "broadMatch",
"external concept (wikidata)": "https://www.wikidata.org/wiki/Q333357",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "broadMatch",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "accidentalSurfaceCoveringProcessesGT",
"Type": "guide term",
"skos:prefLabel @en": "accidental surface covering processes <guide term>",
"skos:broader": "additiveAndJoiningProcessesAndTechniquesGT",
"rdf:type (skos:)": "Concept",
"skos:member": "",
"skos:altLabel @en": "",
"skos:editorialNote @en": "This is one of the few guide terms, that is specifically created for project INDIGO/ the graffiti thesaurus and therefore can not be found in the Getty AAT.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "ActivitiesF",
"Type": "facet",
"skos:prefLabel @en": "Activities <facet>",
"skos:broader": "",
"rdf:type (skos:)": "Concept",
"skos:member": "",
"skos:altLabel @en": "",
"skos:editorialNote @en": "Contains information from the J. Paul Getty Trust, Getty Research Institute, the Art & Architecture Thesaurus, which is made available under the ODC Attribution License.",
"dc:creator": "Jona Schlegel",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "\"Includes terms for areas of endeavor, physical and mental actions, discrete occurrences, systematic sequences of actions, methods employed toward a certain end, and processes occurring in materials or objects classified as visual works. Activities may range from branches of learning and professional fields to specific life events, from mentally executed tasks to processes performed on or with materials and objects, from single physical actions to complex games. Examples: archaeology, engineering, analyzing, contests, exhibitions, running, drawing (image-making), corrosion.\" (The J. Paul Getty Trust. ‘Activities Facet’)",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300264090",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "The J. Paul Getty Trust. ‘Activities Facet’, Art & Architecture Thesaurus Full Record Display (Getty Research), 25 January 2021. [Date of Access, 1 Aug. 2023]. http://vocab.getty.edu/aat/300264090.",
"skos:related": ""
},
{
"Unique identifier": "activity",
"Type": "collection",
"skos:prefLabel @en": "activity",
"skos:broader": "",
"rdf:type (skos:)": "Collection",
"skos:member": "",
"skos:altLabel @en": "",
"skos:editorialNote @en": "The \"activity\" collection forms a cornerstone of the graffiti thesaurus, serving as a foundational category that encapsulates the diverse actions and processes integral to graffiti creation and appreciation. As a top-level concept, it stands independently, not falling under any broader category. The term \"activity\", within the graffiti context, is a broad umbrella under which specific actions contributing to the creation, distribution, or appreciation of graffiti reside. This includes techniques such as \"bombing\", \"scratching\", or \"spraying\". Each of these can be considered as a narrower concept, further refining the understanding of what constitutes an \"activity\" in the world of graffiti.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "Examples of the \"activity\" collection bring to life the various processes involved in graffiti creation. \"Bombing\" represents a swift, expansive approach, where a graffitist covers a large area with quick, often simple, graffiti. \"Scratching\" provides a contrast, with the graffitist etching a design into a surface using a sharp object, creating a different kind of visual impact. Lastly, \"spraying\" exemplifies a common graffiti technique, where aerosol paint cans are used to apply paint in a controlled manner, crafting the graffito on the chosen surface.",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "additiveAndJoiningProcessesAndTechniquesGT",
"Type": "guide term",
"skos:prefLabel @en": "additive and joining processes and techniques <guide term>",
"skos:broader": "processesAndTechniquesBySpecificTypeGT",
"rdf:type (skos:)": "Concept",
"skos:member": "",
"skos:altLabel @en": "",
"skos:editorialNote @en": "Contains information from the J. Paul Getty Trust, Getty Research Institute, the Art & Architecture Thesaurus, which is made available under the ODC Attribution License.",
"dc:creator": "Jona Schlegel",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300229467",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "AgentsF",
"Type": "facet",
"skos:prefLabel @en": "Agents <facet>",
"skos:broader": "",
"rdf:type (skos:)": "Concept",
"skos:member": "",
"skos:altLabel @en": "",
"skos:editorialNote @en": "Contains information from the J. Paul Getty Trust, Getty Research Institute, the Art & Architecture Thesaurus, which is made available under the ODC Attribution License.",
"dc:creator": "Jona Schlegel",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "\"This facet includes generic terms, dates, relationships, and other information related to or required to catalog, discover, and retrieve information about art, architecture, and other visual cultural heritage, including related disciplines dealing with visual works, such as archaeology and conservation, where the works are of the type collected by art museums and repositories for visual cultural heritage, or that are architecture. Used for work types, roles, materials, styles, cultures, techniques, subject, etc., so long as terms fit into established AAT facets. Examples: printmakers, landscape architects, corporations, religious orders. Also includes other living organisms, as necessary for the art and architecture domain.\" (The J. Paul Getty Trust. ‘Agents Facet’)",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300264089",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "The J. Paul Getty Trust. ‘Agents Facet’, Art & Architecture Thesaurus Full Record Display (Getty Research), 25 January 2021. [Date of Access, 1 Aug. 2023].. http://vocab.getty.edu/aat/300264089.",
"skos:related": ""
},
{
"Unique identifier": "anarchySymbols",
"Type": "concept",
"skos:prefLabel @en": "anarchy symbols",
"skos:broader": "motifs",
"rdf:type (skos:)": "Concept",
"skos:member": "signAndElement",
"skos:altLabel @en": "Anarchy sign $$ anarchy symbol $$ symbol, anarchy $$ anarchy sign $$ sign, anarchy",
"skos:editorialNote @en": "The \"anarchy symbols\" in graffiti represent a motif that can be created as an independent symbol or connected to a slogan or word. These symbols are often used to express anti-establishment sentiments or to challenge societal norms and structures. They are a part of the visual language of graffiti, conveying specific meanings and messages within the context of the graffiti culture. As with all motifs in graffiti, the interpretation of anarchy symbols can vary depending on the context in which they are used.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "https://www.wikidata.org/wiki/Q31895",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "relatedMatch",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "antiStyleGraffiti",
"Type": "concept",
"skos:prefLabel @en": "anti style (graffiti)",
"skos:broader": "stylesStreetArt",
"rdf:type (skos:)": "Concept",
"skos:member": "style",
"skos:altLabel @en": "Anti style $$ Anti Style $$ Ugly Style $$ ugly style $$ Ugly style $$ anti-style",
"skos:editorialNote @en": "The \"anti style (graffiti)\" refers to a specific form of graffiti writing style that intentionally defies the conventional aesthetics and norms of graffiti. This style is often characterised by its raw, unpolished, and seemingly amateurish appearance, which is a deliberate choice by the graffitist. The anti style can be seen as a form of rebellion not only against societal norms but also against the established rules and standards within the graffiti community itself. It serves as a reminder that graffiti is, at its core, an act of defiance and individual expression.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "arrowsLetterAttribute",
"Type": "concept",
"skos:prefLabel @en": "arrows (letter attribute)",
"skos:broader": "letterformComponents",
"rdf:type (skos:)": "Concept",
"skos:member": "",
"skos:altLabel @en": "arrow (letter attribute)",
"skos:editorialNote @en": "The concept \"arrows (letter attribute)\" in graffiti refers to the stylistic element where the endings of a letter are shaped as arrows. This is a common feature in many graffiti styles and serves to add dynamism and directionality to the piece. Arrows can be simple or complex, and their design can vary greatly depending on the individual style of the graffitist. They can be used to guide the viewer's eye, create a sense of movement, or add an additional layer of complexity to the piece.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "arrowsMotif",
"Type": "concept",
"skos:prefLabel @en": "arrows (motif)",
"skos:broader": "motifs",
"rdf:type (skos:)": "Concept",
"skos:member": "design",
"skos:altLabel @en": "arrow (motif) $$ arrows $$ arrow",
"skos:editorialNote @en": "The concept \"arrows (motif)\" in graffiti refers to the standalone depiction of arrows, not associated with a letter or a bow. Arrows as motifs can serve various purposes in a graffito. They can be used to direct attention, create a sense of movement, or simply as a decorative element. The design of the arrow can vary greatly, from simple straight lines to more complex and stylised representations. It's important to note that the interpretation of this motif can be subjective and may differ based on the context and the individual style of the graffitist.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "https://www.wikidata.org/wiki/Q1139519",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "closeMatch",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "AssociatedConceptsF",
"Type": "facet",
"skos:prefLabel @en": "Associated Concepts <facet>",
"skos:broader": "",
"rdf:type (skos:)": "Concept",
"skos:member": "",
"skos:altLabel @en": "",
"skos:editorialNote @en": "Contains information from the J. Paul Getty Trust, Getty Research Institute, the Art & Architecture Thesaurus, which is made available under the ODC Attribution License.",
"dc:creator": "Jona Schlegel",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "\"Includes terms for all abstract concepts and phenomena that relate to the study and execution of various areas of human thought and activity, including architecture and art in all media, as well as related disciplines. Also covered here are theoretical and critical concerns, ideologies, attitudes, and social or cultural movements, to the extent necessary to catalog or discover information about visual works. Examples: beauty, balance, connoisseurship, metaphor, beauty, balance, connoisseurship, metaphor, cultural pluralism.\" (The J. Paul Getty Trust. ‘Associated Concepts Facet’)",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300264086",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "The J. Paul Getty Trust. ‘Associated Concepts Facet’, Art & Architecture Thesaurus Full Record Display (Getty Research), 25 January 2021. [Date of Access, 1 Aug. 2023].. http://vocab.getty.edu/aat/300264086.",
"skos:related": ""
},
{
"Unique identifier": "AssociatedConceptsHN",
"Type": "hierarchy name",
"skos:prefLabel @en": "Associated Concepts <hierarchy name>",
"skos:broader": "AssociatedConceptsF",
"rdf:type (skos:)": "Concept",
"skos:member": "",
"skos:altLabel @en": "",
"skos:editorialNote @en": "Contains information from the J. Paul Getty Trust, Getty Research Institute, the Art & Architecture Thesaurus, which is made available under the ODC Attribution License.",
"dc:creator": "Jona Schlegel",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "\"The Associated Concepts hierarchy contains terms for concepts and phenomena relating to a wide range of topics, including topics not directly related to art, for example philosophical concepts. Relation to other hierarchies: Terms for branches of learning and areas of specialization, as well as professions and professional specialties, (e.g., \"history\") are found in the Disciplines hierarchy, while concepts associated with these disciplines (e.g., \"positivism \") appear here. Terms for styles and for art and architecture movements (e.g., \"Neoclassical;\" \"Impressionist\") are found in the Styles and Periods hierarchy, while forms of expression (e.g., \"abstraction\") and broad categories of art and architecture that are not specific to a given people or period (e.g., \"organic architecture;\" \"street art\") are here.\" (The J. Paul Getty Trust. ‘Associated Concepts (Hierarchy Name)’)",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300055126",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "The J. Paul Getty Trust. ‘Associated Concepts (Hierarchy Name)’, Art & Architecture Thesaurus Full Record Display (Getty Research), 25 January 2021. [Date of Access, 1 Aug. 2023].. http://vocab.getty.edu/aat/300055126.",
"skos:related": ""
},
{
"Unique identifier": "atSignsMotif",
"Type": "concept",
"skos:prefLabel @en": "@ signs (motif)",
"skos:broader": "motifs",
"rdf:type (skos:)": "Concept",
"skos:member": "signAndElement",
"skos:altLabel @en": "at-sign $$ at $$ @ $$ at-signs $$ @ sign $$ @-signs $$ @-sign",
"skos:editorialNote @en": "The \"@ sign (motif)\" in graffiti can serve multiple purposes. It can appear as an individual symbol, a decorative element, or most commonly, in conjunction with a social media handle. This motif is a reflection of the digital age and the increasing interplay between online and offline forms of expression. It signifies the graffitist's presence not only in the physical world but also in the digital sphere, serving as a bridge between their graffiti work and their online identity. As with all motifs in graffiti, it should be understood within its specific cultural and aesthetic context.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "https://www.wikidata.org/wiki/Q10714",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "attributesAndPropertiesBySpecificTypeGT",
"Type": "guide term",
"skos:prefLabel @en": "attributes and properties by specific type <guide term> ",
"skos:broader": "AssociatedConceptsHN",
"rdf:type (skos:)": "Concept",
"skos:member": "",
"skos:altLabel @en": "",
"skos:editorialNote @en": "Contains information from the J. Paul Getty Trust, Getty Research Institute, the Art & Architecture Thesaurus, which is made available under the ODC Attribution License.",
"dc:creator": "Jona Schlegel",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300226808",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "backgroundsGraffiti",
"Type": "concept",
"skos:prefLabel @en": "backgrounds (graffiti)",
"skos:broader": "graffitiConcepts",
"rdf:type (skos:)": "Concept",
"skos:member": "componentPart",
"skos:altLabel @en": "background (graffiti)",
"skos:editorialNote @en": "The concept of \"backgrounds (graffiti)\" refers to the elements that are situated behind the primary subject of a graffiti work. These elements can include patterns, decorative elements, or motifs that serve to enhance or complement the main focus of the graffiti. Backgrounds in graffiti are not about the priming of the area that will be covered by the creation of a graffito but rather focus on the elements that are in the background of the graffito. They provide a context and aesthetic framework that can influence the overall perception and interpretation of the graffiti. It's important to note that these backgrounds are not merely passive or incidental; they are often carefully considered and executed to contribute to the overall impact of the graffiti.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "battlesGraffiti",
"Type": "concept",
"skos:prefLabel @en": "battles (graffiti)",
"skos:broader": "publicAndInteractiveActivitiesGT",
"rdf:type (skos:)": "Concept",
"skos:member": "communityTerm",
"skos:altLabel @en": "battles $$ battle $$ battle (graffiti) $$ graffiti battles $$ graffiti battle",
"skos:editorialNote @en": "In the graffiti community, \"battles\" refer to competitive events where graffitists challenge each other to showcase their skills. These battles can take various forms, but typically involve two or more graffitists creating a graffiti piece within a set time frame, often in front of an audience. The pieces are then judged based on criteria such as creativity, technique, style, and originality. Graffiti battles provide a platform for graffitists to gain recognition, demonstrate their abilities, and engage with the wider graffiti community. They are a testament to the competitive nature inherent in graffiti culture, reflecting the drive of graffitists to outdo each other in terms of skill and creativity.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "https://www.wikidata.org/wiki/Q105826326",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "broadMatch",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "bitingsGraffiti",
"Type": "concept",
"skos:prefLabel @en": "bitings (graffiti)",
"skos:broader": "publicAndInteractiveActivitiesGT",
"rdf:type (skos:)": "Concept",
"skos:member": "communityTerm",
"skos:altLabel @en": "biting (graffiti) $$ bitings $$ biting",
"skos:editorialNote @en": "The concept of \"bitings\" in the graffiti community refers to the frowned-upon activity of copying the style and graffiti of another graffitist and then taking credit for it. This is considered disrespectful and against the unwritten rules of the graffiti community. While beginners can learn by copying techniques and styles from other graffitists, it is expected that they will eventually develop and create their own unique style. The term \"biting\" is derived from the slang term \"to bite\", meaning to steal or copy from someone else. It is important to note that the concept of \"bitings\" is subjective and can be interpreted differently depending on the context and the individuals involved.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300053257 ",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "closeMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "blackBooksGraffiti",
"Type": "concept",
"skos:prefLabel @en": "black books (graffiti)",
"skos:broader": "sketchbooks",
"rdf:type (skos:)": "Concept",
"skos:member": "communityTerm",
"skos:altLabel @en": "blackbooks $$ blackbook $$ black book $$ book, black $$ books, black $$ black book (graffiti)",
"skos:editorialNote @en": "\"Black books\" in graffiti culture serve as a personal archive for graffitists, where they can practice their designs, document their progress, and collect tags and sketches from other graffitists. These books often contain sketches, designs, and tags, and in the past, they also included printed pictures. The black book can be seen as a friendship book, a testament to the connections and interactions within the graffiti community. It is also akin to a graffitist's sketchbook, reflecting the development of the graffitist's skills and ideas over time. In the graffiti community, the black book holds significant value as it not only showcases a graffitist's work but also their influences, collaborations, and evolution. It is a tangible manifestation of the graffitist's journey in the graffiti world.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "\"Sketchbooks in which graffiti artists develop ideas, practice tags, and acquire other artists' signatures.\" (The J. Paul Getty Trust. ‘Black Books (Graffiti)’)",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300379259 ",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "The J. Paul Getty Trust. ‘Black Books (Graffiti)’, Art & Architecture Thesaurus Full Record Display (Getty Research), 25 January 2021. [Date of Access, 1 Aug. 2023].. http://vocab.getty.edu/aat/300379259.",
"skos:related": ""
},
{
"Unique identifier": "blockbusterStyleGraffiti",
"Type": "concept",
"skos:prefLabel @en": "blockbuster style (graffiti)",
"skos:broader": "stylesWriting",
"rdf:type (skos:)": "Concept",
"skos:member": "style",
"skos:altLabel @en": "style, blockbuster $$ blockbuster style $$ Blockbuster style $$ Blockbuster Style",
"skos:editorialNote @en": "The \"blockbuster style\" is a distinctive form of graffiti writing that originated on the East Coast of the United States. Characterised by its large, square-like block letters, this style is not only one of the older graffiti writing styles but also continues to be practised in the present day. The blockbuster style is often used to cover large areas, such as entire walls or sides of buildings, making it highly visible in the urban landscape. This visibility, combined with the style's bold and straightforward lettering, makes it an effective tool for graffitists seeking to make a significant impact and establish their presence in a particular area. Despite its apparent simplicity, the blockbuster style requires a certain level of skill and control to execute effectively, particularly when covering large surfaces. The ability to maintain consistency in letter shape and size across a large scale is a testament to a graffitist's proficiency.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "blocksGraffiti",
"Type": "concept",
"skos:prefLabel @en": "blocks (graffiti)",
"skos:broader": "letterformComponents",
"rdf:type (skos:)": "Concept",
"skos:member": "componentPart",
"skos:altLabel @en": "block (graffiti) $$ block $$ blocks",
"skos:editorialNote @en": "The concept \"blocks (graffiti)\" pertains to a specific style of graffiti writing, often associated with the \"blockbuster style\". This style is characterized by the use of large, block-like letters, typically filled in with a single, solid colour. The block style is designed for maximum visibility and readability, often used to cover large areas or to overwrite other graffitists' works. The simplicity and boldness of the block style make it a popular choice for large-scale graffiti pieces, particularly in urban environments where visibility is key. It's important to note that while the block style is a distinctive aspect of graffiti culture, it should not be interpreted within the framework of traditional art forms. Instead, it should be understood as a unique form of expression within the graffiti community.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300211042",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "broadMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": "3dGraffiti"
},
{
"Unique identifier": "bombingGraffiti",
"Type": "concept",
"skos:prefLabel @en": "bombing (graffiti)",
"skos:broader": "publicAndInteractiveActivitiesGT",
"rdf:type (skos:)": "Concept",
"skos:member": "communityTerm $$ activity",
"skos:altLabel @en": "bombing $$ bombing (activity)",
"skos:editorialNote @en": "\"Bombing\" in the graffiti community refers to the act of creating multiple graffiti, especially tags or throw-ups, in a single session. This activity is often used by graffiti artists as a way to gain recognition and fame, also known as \"getting up\", by covering large areas of a city with their unique handstyle. The term \"bombing\" comes from the metaphorical comparison of the widespread and rapid spread of graffiti to the extensive damage caused by bombs. The graffiti created during bombing are often less complex and more quickly executed than traditional pieces, allowing the artist to cover more area in a shorter amount of time.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "\"In the context of graffiti, bombing denotes prolific and repeated renderings of a single 'tag' in a given physical area in order to attract recognition.\" (The J. Paul Getty Trust. ‘Bombing (Graffiti)’)",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300410273",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "The J. Paul Getty Trust. ‘Bombing (Graffiti)’, Art & Architecture Thesaurus Full Record Display (Getty Research), 25 January 2021. [Date of Access, 1 Aug. 2023].. http://vocab.getty.edu/aat/300410273.",
"skos:related": ""
},
{
"Unique identifier": "bubblesMotif",
"Type": "concept",
"skos:prefLabel @en": "bubbles (motif)",
"skos:broader": "motifs",
"rdf:type (skos:)": "Concept",
"skos:member": "design",
"skos:altLabel @en": "bubble (motif) $$ bubble $$ bubbles",
"skos:editorialNote @en": "In the context of graffiti, \"bubbles\" as a motif can be used in various ways. They can be a standalone symbol or sign, or they can be incorporated into the background or the filling of a letter as a pattern. The use of bubbles can add a playful or whimsical element to a graffiti piece, and their round, soft shapes can provide a contrast to the often angular and hard-edged forms of graffiti letters. The use of bubbles can also contribute to the overall visual impact and aesthetic appeal of a graffiti piece.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300443508",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "broadMatch",
"external concept (wikidata)": "https://www.wikidata.org/wiki/Q75794",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "broadMatch",
"dct:source": "",
"skos:related": "cloudsMotifs"
},
{
"Unique identifier": "bubbleStyleGraffiti",
"Type": "concept",
"skos:prefLabel @en": "bubble style (graffiti)",
"skos:broader": "stylesWriting",
"rdf:type (skos:)": "Concept",
"skos:member": "style",
"skos:altLabel @en": "style, bubble $$ Bubble Style $$ Bubble style",
"skos:editorialNote @en": "The \"Bubble Style\" in graffiti is one of the earliest graffiti writing styles. It is characterized by its simplicity and legibility, making it easy for both the graffitist and the observer to read. The letters in this style are often rounded and inflated, resembling bubbles, hence the name. This style is also quick to execute, making it ideal for \"bombing\" or creating multiple graffiti in one session. This style originated from the East Coast of the United States and has since become a staple in the graffiti community.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "buffingsGraffiti",
"Type": "concept",
"skos:prefLabel @en": "buffings (graffiti)",
"skos:broader": "publicAndInteractiveActivitiesGT",
"rdf:type (skos:)": "Concept",
"skos:member": "communityTerm",
"skos:altLabel @en": "buffing $$ buffings $$ buffing (graffiti)",
"skos:editorialNote @en": "\"Buffings\" in the context of graffiti refers to the activity of covering or removing existing graffiti, often to create a clean slate for new work. This can be seen as a respectful act when done by another graffitist preparing to create their own work, or as a playful act when graffitists creatively respond to the actions of those tasked with graffiti removal. However, it can also be seen negatively when it is done by authorities or companies as a form of censorship or control. The concept of buffings is complex and multifaceted, reflecting the dynamic and often contentious nature of graffiti culture.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "BuiltEnvironmentHN",
"Type": "hierarchy name",
"skos:prefLabel @en": "Built Environment <hierarchy name>",
"skos:broader": "ObjectsF",
"rdf:type (skos:)": "Concept",
"skos:member": "",
"skos:altLabel @en": "",
"skos:editorialNote @en": "Contains information from the J. Paul Getty Trust, Getty Research Institute, the Art & Architecture Thesaurus, which is made available under the ODC Attribution License.",
"dc:creator": "Jona Schlegel",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "\"The Built Environment hierarchy includes terms for the built and natural environment, covering constructed works and natural landscapes, forming a continuum from the largest natural landscapes and settled areas to the smallest of individual built works. Relation to other hierarchies: The constituent parts of constructed works, such as doors and walls, that extend the continuum at even smaller scale, are found in the Components hierarchy. Concepts may have multiple parents, therefore, in those instances where a concept may logically appear at more than one level of the continuum (e.g., \"chapels (rooms or structures)\" which may be either single built works or components of a work), it is placed with a preferred parent in the hierarchy containing the smaller scale elements unless factors of common usage, design intent, or historical precedence dictate otherwise, it has a second, non-preferred parent in the other logical hierarchical view (e.g., for \"chapels;\" with Single Built Works).\" (The J. Paul Getty Trust. ‘Built Environment (Hierarchy Name)’)",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300264550",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "The J. Paul Getty Trust. ‘Built Environment (Hierarchy Name)’, Art & Architecture Thesaurus Full Record Display (Getty Research), 25 January 2021. [Date of Access, 1 Aug. 2023].. http://vocab.getty.edu/aat/300264550.",
"skos:related": ""
},
{
"Unique identifier": "burnersGraffiti",
"Type": "concept",
"skos:prefLabel @en": "burners (graffiti)",
"skos:broader": "graffitiConcepts",
"rdf:type (skos:)": "Concept",
"skos:member": "communityTerm",
"skos:altLabel @en": "burner (graffiti) $$ burners $$ burner",
"skos:editorialNote @en": "The term \"burners\" in the context of graffiti refers to works that are particularly impressive or elaborate, often considered as masterpieces within the graffiti community. The designation of a graffiti piece as a \"burner\" is subjective and largely depends on the perception of the audience or the graffiti community. It's a form of recognition and appreciation for the graffitist's skill and creativity. The term originates from the idea that the piece is so hot, it's \"burning\" off the wall. However, it's important to note that the term \"burner\" is not universally defined and can vary in meaning across different graffiti communities and regions.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "\"Graffiti pieces that are regarded as being of exceptional quality, as judged by other graffiti artists. To 'burn' is to outdo the work of others.\" (The J. Paul Getty Trust. ‘Burners (Graffiti Art)’)",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300410278 ",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "The J. Paul Getty Trust. ‘Burners (Graffiti Art)’, Art & Architecture Thesaurus Full Record Display (Getty Research), 25 January 2021. [Date of Access, 1 Aug. 2023].. http://vocab.getty.edu/aat/300410278.",
"skos:related": ""
},
{
"Unique identifier": "calligraffitiStyle",
"Type": "concept",
"skos:prefLabel @en": "calligraffiti (style)",
"skos:broader": "stylesGraffiti",
"rdf:type (skos:)": "Concept",
"skos:member": "style",
"skos:altLabel @en": "calligraffito (style) $$ calligraffiti $$ calligraffito",
"skos:editorialNote @en": "\"Calligraffiti\" is a unique fusion of calligraphy, typography, and graffiti, which can be categorized as either abstract expressionism or abstract vandalism. This art form integrates letters into compositions that aim to communicate a broader message through aesthetically altered writing, transcending its literal meaning. It is a conscious effort to transform a word or group of words into a visual composition, providing both an aesthetic experience and provocative art.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "The term \"calligraffiti\" has been used in various contexts, but it gained prominence when Dutch artist Niels Shoe Meulman used it as the title of his solo exhibition in 2007. He described calligraffiti as \"traditional handwriting with a metropolitan attitude,\" a way of translating the art of the street to the interior of museums, galleries, and apartments. However, the use of the term predates Meulman's contributions by at least thirty years. It was used by Canadian painter Brion Gysin in his final exhibition, \"Calligraffiti of Fire,\" in 1986, and in a book about post-modernism by H.L. Hix in 1995. Jordanian artist and art historian Wijdan Ali also used the term in her book, \"Modern Islamic Art: Development and Continuity,\" (1997) to describe a style of art that had been flourishing across the Middle East and North Africa from the mid-20th century.",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "https://www.wikidata.org/wiki/Q22669850",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "broadMatch",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "charactagGraffiti",
"Type": "concept",
"skos:prefLabel @en": "charactags (graffiti)",
"skos:broader": "charactersWriting",
"rdf:type (skos:)": "Concept",
"skos:member": "graffitoType",
"skos:altLabel @en": "charactag (graffiti) $$ charactags $$ charactag",
"skos:editorialNote @en": "The term \"charactags\" in the context of graffiti refers to a unique form of signature employed by graffitists. Unlike traditional tags, which are typically text-based and often feature the graffitist's chosen name or moniker, charactags incorporate a character or symbol that is consistently used by the graffitist across their works. These characters, which can range from simple symbols to more complex and stylised designs, are typically created using a marker and are repeated throughout the urban landscape, much like a traditional tag. The consistent use of a specific character allows the graffitist to establish a recognisable identity within the graffiti community and the wider public. Charactags represent a fusion of visual artistry and identity-making, offering a creative alternative to text-based tags. They demonstrate the versatility of graffiti as a medium and the innovative ways in which graffitists seek to express their individuality and leave their mark on the urban environment.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": "tagsGraffiti"
},
{
"Unique identifier": "charactersStreetArt",
"Type": "concept",
"skos:prefLabel @en": "characters (street art)",
"skos:broader": "figureWorks",
"rdf:type (skos:)": "Concept",
"skos:member": "graffitoType",
"skos:altLabel @en": "character (street art)",
"skos:editorialNote @en": "The term \"characters\" within the context of street art refers to the figurative or symbolic elements that often form the central focus of a graffito. These characters can range from human figures to animals, mythical creatures, or even abstract forms. They are typically stylised and can be either realistic or fantastical in nature. Characters in street art serve various purposes. They can convey a narrative, express an emotion, or communicate a political or social message. They can also serve as a signature or identifier for the graffitist, much like a tag in graffiti writing. The creation of characters in street art requires a different set of skills compared to traditional graffiti writing. It often involves a more detailed and intricate process, requiring knowledge of drawing, shading, and colour theory.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "charactersWriting",
"Type": "concept",
"skos:prefLabel @en": "characters (writing)",
"skos:broader": "figuresRepresentations",
"rdf:type (skos:)": "Concept",
"skos:member": "graffitoType",
"skos:altLabel @en": "character (writing)",
"skos:editorialNote @en": "The term \"characters\" within the context of graffiti writing refers to the figurative or symbolic elements that often accompany the main textual elements of a graffito. These characters can range from human figures to animals, mythical creatures, or even abstract forms. They are typically stylised and can be either realistic or fantastical in nature.\nIn graffiti writing, characters often serve as secondary elements, complementing the main textual components such as tags, throw-ups, or pieces. They can add visual interest, enhance the narrative, or provide additional context to the graffito. Characters in graffiti writing can also serve as a signature or identifier for the graffitist, adding an extra layer of personalisation to their work. However, they are typically less prominent and less frequent compared to characters in street art. The creation of characters in graffiti writing requires a blend of skills, combining the stylistic elements of graffiti lettering with the principles of drawing and illustration.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "cloudsMotifs",
"Type": "concept",
"skos:prefLabel @en": "clouds (motifs)",
"skos:broader": "motifs",
"rdf:type (skos:)": "Concept",
"skos:member": "design",
"skos:altLabel @en": "cloud (motif)",
"skos:editorialNote @en": "The term \"clouds\" within the context of graffiti refers to a recurring motif or pattern that can be incorporated into a graffito. This motif can be used in various ways, such as a decorative element, a background feature, or even as a part of the main design. Clouds in graffiti are typically stylised and can vary greatly in form and complexity, from simple, abstract shapes to more detailed and realistic representations. They can add visual interest, create a sense of depth or movement, or contribute to the overall narrative or theme of the graffito.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300343840 ",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "closeMatch",
"external concept (wikidata)": "https://www.wikidata.org/wiki/Q8074",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "broadMatch",
"dct:source": "",
"skos:related": "bubblesMotif"
},
{
"Unique identifier": "commissionedWorksGraffiti",
"Type": "concept",
"skos:prefLabel @en": "commissioned works (graffiti)",
"skos:broader": "graffitiConcepts",
"rdf:type (skos:)": "Concept",
"skos:member": "conceptIdea",
"skos:altLabel @en": "commissioned work (graffiti)",
"skos:editorialNote @en": "The term \"commissioned work\" within the context of graffiti refers to a graffito that has been legally created, often at the request of a specific individual, organisation, or entity. This type of work is typically sanctioned and permitted by the property owner or relevant authorities, and it may even be a paid project. Commissioned works in graffiti can range from small-scale pieces to large murals that cover entire walls or buildings. They often serve a specific purpose, such as beautifying a space, conveying a particular message, or contributing to a community project. While commissioned works are legal and often appreciated by the public, they can sometimes be seen as less authentic or controversial within the graffiti community. This is because the very nature of graffiti is often associated with rebellion, spontaneity, and the act of reclaiming public space without permission.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "\"Orders, charges, projects, or activities requested and usually financed by one party and ordered or entrusted to an artist or other party to perform or execute, for example a commission may be made for a particular art work. For the process of assigning or granting a commission, use \"commissioning (function).\"\" (The J. Paul Getty Trust. ‘Commissions (Orders for Works)’)",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300400904",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "The J. Paul Getty Trust. ‘Commissions (Orders for Works)’, Art & Architecture Thesaurus Full Record Display (Getty Research), 25 January 2021. [Date of Access, 1 Aug. 2023].. http://vocab.getty.edu/aat/300400904.",
"skos:related": ""
},
{
"Unique identifier": "communityTerm",
"Type": "collection",
"skos:prefLabel @en": "community term",
"skos:broader": "",
"rdf:type (skos:)": "Collection",
"skos:member": "",
"skos:altLabel @en": "",
"skos:editorialNote @en": "The \"community term\" collection is a key component of the graffiti thesaurus, representing the specific language and terminology used within the graffiti community. As a standalone collection, it does not fall under a broader category but rather serves as a parent category for a range of more specific concepts. The \"community term\" collection encapsulates the unique vernacular of the graffiti world, including terms that describe specific activities, roles, styles, and phenomena within the graffiti culture. These terms, such as \"battles\", \"bitings\", \"bombing\", \"buffings\", \"kings\", \"toys\", \"burners\", and \"handstyles\", each represent narrower concepts that further illuminate the rich tapestry of the graffiti community language.",
"dc:creator": "Jona Schlegel",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "The \"community term\" collection is exemplified by terms that are deeply embedded in the graffiti culture. \"Battles\" refer to competitions where graffitists showcase their skills. \"Bitings\" is a term used to describe the act of copying another graffitist's style. \"Bombing\" is a quick, expansive approach to creating graffiti over a large area. \"Buffings\" refer to the removal or painting over (crossing) of graffiti by authorities or property owners. \"Kings\" are respected and influential graffitists within the community. \"Toys\" is a term used to describe inexperienced or unskilled graffitists. \"Burners\" are complex, colourful pieces of graffiti art, often created in a mural style. Lastly, \"handstyles\" refer to a graffitist's unique, personalised script or tag.",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "componentPart",
"Type": "collection",
"skos:prefLabel @en": "component part",
"skos:broader": "",
"rdf:type (skos:)": "Collection",
"skos:member": "graffitoComponent",
"skos:altLabel @en": "",
"skos:editorialNote @en": "The \"component part\" collection is a sub-category within the \"graffito components\" collection of the graffiti thesaurus. It focuses on the physical parts or elements that make up a graffito. This collection includes more specific concepts such as \"backgrounds\", \"shadows\", \"fadings\", \"fill ins\", and \"outlines\". The \"component part\" collection provides a detailed look at the individual elements that come together to form a complete graffito, each contributing to the overall visual effect.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "The \"component part\" collection is exemplified by its sub-concepts. \"Backgrounds\" refers to the area or surface on which the graffiti is created, which can be manipulated or altered to enhance the overall design. \"Shadows\" are used to give the graffiti depth and a three-dimensional effect. \"Fadings\" refers to a technique where the intensity of the colour gradually decreases, creating a fading effect. \"Fill ins\" are the parts of the graffiti that are filled in with colour, usually after the outlines have been drawn. \"Outlines\" are the lines that define the shape of the graffiti, often drawn first and then filled in. Each of these components plays a crucial role in the creation of a graffito, contributing to its overall aesthetic and impact.",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "componentsBySpecificContextGT",
"Type": "guide term",
"skos:prefLabel @en": "components by specific context <guide term>",
"skos:broader": "componentsObjectsParts",
"rdf:type (skos:)": "Concept",
"skos:member": "",
"skos:altLabel @en": "",
"skos:editorialNote @en": "Contains information from the J. Paul Getty Trust, Getty Research Institute, the Art & Architecture Thesaurus, which is made available under the ODC Attribution License.",
"dc:creator": "Jona Schlegel",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300241584",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "ComponentsHN",
"Type": "hierarchy name",
"skos:prefLabel @en": "Components <hierarchy name>",
"skos:broader": "ObjectsF",
"rdf:type (skos:)": "Concept",
"skos:member": "",
"skos:altLabel @en": "",
"skos:editorialNote @en": "Contains information from the J. Paul Getty Trust, Getty Research Institute, the Art & Architecture Thesaurus, which is made available under the ODC Attribution License.",
"dc:creator": "Jona Schlegel",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "\t\"The Components hierarchy contains terms for the constituent parts of objects, including structures, images, and texts. In those instances where a term refers to an element that may sometimes be a component and sometimes stand alone, it is placed with a preferred parent in the most suitable hierarchy. For example, \"chapels (rooms or structures);\" which are always rooms or spaces but may sometimes also be independent buildings, appears with a preferred parent in the <Christian religious building spaces> section of the Components hierarchy, and a non-preferred parent as Single Built Works. Relation to other hierarchies: Higher-level nodes for components are placed with a second parent under the record for the visual work, tool, etc. to which they pertain, this relationship is a partitive (whole/part) relationship, whereas all other relationships in the AAT are genus/species. For example \"aerophone components\" has a second parent as a Partitive Relationship (P) to \"aerophones.\" Terms for features that are not separable as actual components, such as ornamental patterns and physical effects (e.g., \"fluting;\" \"wrinkles\"), are in the Physical Attributes facet. Terms for items permanently installed into the fabric of the built environment (e.g. \"altars\") are Components, while movable articles used to furnish indoor or outdoor spaces are in the Furnishings hierarchy.\" (The J. Paul Getty Trust. ‘Components (Hierarchy Name)’)",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300241490",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "The J. Paul Getty Trust. ‘Components (Hierarchy Name)’. Accessed 1 August 2023. http://vocab.getty.edu/aat/300241490.",
"skos:related": ""
},
{
"Unique identifier": "componentsObjectsParts",
"Type": "concept",
"skos:prefLabel @en": "components (objects parts)",
"skos:broader": "ComponentsHN",
"rdf:type (skos:)": "Concept",
"skos:member": "",
"skos:altLabel @en": "",
"skos:editorialNote @en": "Contains information from the J. Paul Getty Trust, Getty Research Institute, the Art & Architecture Thesaurus, which is made available under the ODC Attribution License.",
"dc:creator": "Jona Schlegel",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "\"Constituent parts of a larger object. A component differs from an item in that the item can stand alone as an independent work but the component typically cannot or does not stand alone. Examples are a panel of a polyptych or a discrete architectural component such as a dome.\" (The J. Paul Getty Trust. ‘Components (Objects Parts)’)",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300241583",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "The J. Paul Getty Trust. ‘Components (Objects Parts)’. Art & Architecture Thesaurus, Art & Architecture Thesaurus Full Record Display (Getty Research), 25 January 2021. [Date of Access, 1 Aug. 2023].. http://vocab.getty.edu/aat/300241583.",
"skos:related": ""
},
{
"Unique identifier": "computerNetworkingConcepts",
"Type": "concept",
"skos:prefLabel @en": "computer networking concepts",
"skos:broader": "informationTechnology",
"rdf:type (skos:)": "Concept",
"skos:member": "",
"skos:altLabel @en": "",
"skos:editorialNote @en": "Contains information from the J. Paul Getty Trust, Getty Research Institute, the Art & Architecture Thesaurus, which is made available under the ODC Attribution License.",
"dc:creator": "Jona Schlegel",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "\"Concepts related to telecommunications systems that allow computers to exchange data.\" (The J. Paul Getty Trust. ‘Computer Networking Concepts’)",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300266010",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "The J. Paul Getty Trust. ‘Computer Networking Concepts’, Art & Architecture Thesaurus Full Record Display (Getty Research), 25 January 2021. [Date of Access, 1 Aug. 2023].. http://vocab.getty.edu/aat/300266010.",
"skos:related": ""
},
{
"Unique identifier": "conceptIdea",
"Type": "collection",
"skos:prefLabel @en": "concept idea",
"skos:broader": "",
"rdf:type (skos:)": "Collection",
"skos:member": "graffitoComponent",
"skos:altLabel @en": "",
"skos:editorialNote @en": "The \"concept idea\" collection is a sub-category within the \"graffito components\" collection of the graffiti thesaurus. It focuses on the underlying themes, messages, or ideas that a graffito may convey. This collection includes more specific concepts such as \"crossing out\", \"commissioned works\", \"concept walls\", \"dedications\", and \"greetings\". The \"concept idea\" collection provides insight into the various motivations, intentions, and messages that can be expressed through graffiti, highlighting the communicative and expressive potential of this art form.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "The \"concept idea\" collection is exemplified by its sub-concepts. \"Crossing out\" refers to the act of deliberately marking over another graffitist's work, often as a sign of disrespect or rivalry. \"Commissioned works\" are graffiti pieces that have been officially sanctioned or commissioned, often by businesses or local authorities. \"Concept walls\" are large-scale graffiti works that revolve around a specific theme or concept. \"Dedications\" are graffiti pieces created as a tribute to a specific person or event. \"Greetings\" are graffiti pieces that convey a greeting or message to a specific individual or the wider community. Each of these concepts represents a different idea or message that can be communicated through graffiti, demonstrating the diverse range of expressions possible within this art form.",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "conceptsInTheArtsAndHumanitiesGT",
"Type": "guide term",
"skos:prefLabel @en": "concepts in the arts and humanities <guide term>",
"skos:broader": "AssociatedConceptsHN",
"rdf:type (skos:)": "Concept",
"skos:member": "",
"skos:altLabel @en": "",
"skos:editorialNote @en": "Contains information from the J. Paul Getty Trust, Getty Research Institute, the Art & Architecture Thesaurus, which is made available under the ODC Attribution License.",
"dc:creator": "Jona Schlegel",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300056107",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "exactMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "conceptWallsGraffiti",
"Type": "concept",
"skos:prefLabel @en": "concept walls (graffiti)",
"skos:broader": "graffitiConcepts",
"rdf:type (skos:)": "Concept",
"skos:member": "conceptIdea",
"skos:altLabel @en": "concept wall (graffiti)",
"skos:editorialNote @en": "The term \"concept walls\" within the context of graffiti refers to a wall or surface that has been used by a graffitist or a group of graffitists to execute a preconceived idea or theme. These walls often feature interconnected graffiti that collectively express a specific concept or narrative. Concept walls can be seen as visual storytelling, where each graffito contributes to the overall message or theme. The concept could be anything from a social or political commentary, a depiction of a particular event or person, or an abstract idea expressed through visual metaphors. Creating a concept wall requires planning and coordination, especially when multiple graffitists are involved. Each graffitist needs to understand the overall concept and how their individual work contributes to it. This collaborative process can result in a cohesive and impactful visual statement beyond individual graffito.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "connectionsGraffiti",
"Type": "concept",
"skos:prefLabel @en": "connections (graffiti)",
"skos:broader": "outlinesGraffiti",
"rdf:type (skos:)": "Concept",
"skos:member": "conceptIdea",
"skos:altLabel @en": "connection (graffiti)",
"skos:editorialNote @en": "The term \"connections\" within the context of graffiti refers to the visual and conceptual links that are established between different elements within a graffito. These connections can take various forms and serve different purposes, depending on the intent of the graffitist and the nature of the graffito.\nVisually, connections can be created through the use of lines, shapes, colours, and patterns that link different parts of the graffito together. For example, a graffitist might use a consistent colour scheme or recurring motifs to create a sense of unity and cohesion within their work. Similarly, the letters in a piece of graffiti writing might be interconnected or overlapped in a way that creates a visual flow and rhythm.\nConceptually, connections can be established through the use of shared themes, symbols, or references. For instance, graffitist might incorporate elements from popular culture, political movements, or personal experiences into their work, creating connections that can be interpreted and understood by the viewer.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"external concept (wikidata)": "https://www.wikidata.org/wiki/Q230629",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "broadMatch",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "cracksMotif",
"Type": "concept",
"skos:prefLabel @en": "cracks (motif)",
"skos:broader": "motifs",
"rdf:type (skos:)": "Concept",
"skos:member": "design",
"skos:altLabel @en": "crack (motif)",
"skos:editorialNote @en": "The term \"cracks\" within the context of graffiti refers to a specific motif or pattern that a graffitist may incorporate into their work. This motif, as the name suggests, mimics the appearance of cracks or fissures, and can be used in various ways to enhance the visual complexity and depth of a graffito. Cracks can be used as a background element, providing texture and visual interest to the surface on which the graffito is created. They can also be used within the fillings of a graffito, adding an additional layer of detail to the letters or images. The use of a cracks motif can create a sense of age, decay, or fragility, contributing to the overall narrative or aesthetic of the graffito.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300209168 ",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "broadMatch",
"external concept (wikidata)": "",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "crewsGraffiti",
"Type": "concept",
"skos:prefLabel @en": "crews (graffiti)",
"skos:broader": "groupsOfPeople",
"rdf:type (skos:)": "Concept",
"skos:member": "graffitoCreator",
"skos:altLabel @en": "crew (graffiti)",
"skos:editorialNote @en": "In the context of graffiti, the term \"crews\" refers to a collective or group of two or more graffitists who have decided to collaborate or associate with each other. This association is often based on shared interests, styles, geographical locations, or friendships. Being part of a crew can provide a graffitist with a sense of community and support, as well as opportunities for collaboration and collective action. Crews often work together on larger graffiti projects, such as murals or productions, and may also engage in collective activities such as battles or exhibitions.\nThe formation of a crew is a significant aspect of graffiti culture, contributing to the development of shared identities and styles, as well as fostering a sense of camaraderie and competition within the graffiti community.",
"dc:creator": "Jona Schlegel $$ Stefan Worgin",
"dc:contributor": "",
"skos:historyNote @en": "",
"skos:note @en (getty)": "",
"skos:definition @en": "",
"skos:example @en": "",
"external concept (getty)": "http://vocab.getty.edu/aat/300192630 ",
"type of match (getty) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "broadMatch",
"external concept (wikidata)": "https://www.wikidata.org/wiki/Q345844",
"type of match (wikidata) (exactMatch, closeMatch, broadMatch, narrowMatch, relatedMatch)": "closeMatch",
"dct:source": "",
"skos:related": ""
},
{
"Unique identifier": "crossingOutGraffiti",
"Type": "concept",
"skos:prefLabel @en": "crossing out (graffiti)",
"skos:broader": "publicAndInteractiveActivitiesGT",
"rdf:type (skos:)": "Concept",
"skos:member": "conceptIdea",
"skos:altLabel @en": "crossing",
"skos:editorialNote @en": "\"Crossing out\" in the context of graffiti refers to the act of a graffitist deliberately painting or marking over the work of another graffitist. This act is often seen as a form of disrespect or challenge within the graffiti community, as it involves defacing or obscuring someone else's work. The motivations behind crossing out can vary. It may be done as a form of rivalry or competition, to claim territory, or to express disagreement or disapproval with the crossed-out work or the graffitist who created it. It can also be a way of drawing attention to oneself, as crossing out a well-known or respected graffito can be a provocative act that generates discussion and controversy.",