Skip to content

Commit 824837b

Browse files
committed
Addresses #3057 for technology platform enumeration
1 parent 386c356 commit 824837b

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

data/ext/pending/issue-3057.ttl

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
@prefix : <https://schema.org/> .
2+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
3+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
4+
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
5+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
6+
7+
:DigitalPlatformEnumeration a rdfs:Class ;
8+
rdfs:label "DigitalPlatformEnumeration" ;
9+
:isPartOf <https://pending.schema.org> ;
10+
:source <https://github.com/schemaorg/schemaorg/issues/3057> ;
11+
rdfs:comment "Enumerates some common technology platforms, for use with properties such as [[actionPlatform]]. It is not supposed to be comprehensive - when a suitable code is not enumerated here, textual or URL values can be used instead. These codes are at a fairly high level and do not deal with versioning and other nuance. Additional codes can be suggested [in github](https://github.com/schemaorg/schemaorg/issues/3057). " ;
12+
rdfs:subClassOf :Enumeration .
13+
14+
:DesktopWebPlatform a :DigitalPlatformEnumeration ;
15+
rdfs:label "DesktopWebPlatform" ;
16+
:isPartOf <https://pending.schema.org> ;
17+
:source <https://github.com/schemaorg/schemaorg/issues/2811> ;
18+
rdfs:comment "Represents the broad notion of 'desktop' browsers as a Web Platform." .
19+
20+
:MobileWebPlatform a :DigitalPlatformEnumeration ;
21+
rdfs:label "MobileWebPlatform" ;
22+
:isPartOf <https://pending.schema.org> ;
23+
:source <https://github.com/schemaorg/schemaorg/issues/2811> ;
24+
rdfs:comment "Represents the broad notion of 'mobile' browsers as a Web Platform." .
25+
26+
:GenericWebPlatform a :DigitalPlatformEnumeration ;
27+
rdfs:label "GenericWebPlatform" ;
28+
:isPartOf <https://pending.schema.org> ;
29+
:source <https://github.com/schemaorg/schemaorg/issues/2811> ;
30+
rdfs:comment "Represents the generic notion of the Web Platform. More specific codes include [[MobileWebPlatform]] and [[DesktopWebPlatform]], as an incomplete list. " .
31+
32+
:AndroidPlatform a :DigitalPlatformEnumeration ;
33+
rdfs:label "AndroidPlatform" ;
34+
:isPartOf <https://pending.schema.org> ;
35+
:source <https://github.com/schemaorg/schemaorg/issues/2811> ;
36+
rdfs:comment "Represents the broad notion of Android-based operating systems." .
37+
38+
:DigitalPlatformEnumeration a :DigitalPlatformEnumeration ;
39+
rdfs:label "IOSPlatform" ;
40+
:isPartOf <https://pending.schema.org> ;
41+
:source <https://github.com/schemaorg/schemaorg/issues/2811> ;
42+
rdfs:comment "Represents the broad notion of iOS-based operating systems." .
43+

0 commit comments

Comments
 (0)