Property talk:P7033

Latest comment: 4 years ago by 99of9 in topic SPARQL endpoint

Documentation

Australian Educational Vocabulary ID
ID for curriculum term in one of the controlled vocabularies at Australian education vocabularies
Applicable "stated in" valueAustralian education vocabularies (Q65000840), Schools Online Thesaurus (Q65000093)
Data typeExternal identifier
Allowed values[\w\/\d]*
Examplephotodissociation (Q16814)scot/3614 (RDF)
language (Q315)scot/1028 (RDF)
chlamydia infection (Q153356)scot/11027 (RDF)
narrative form (Q6630149)scot/15068 (RDF)
mind map (Q192833)studentActivity/15 (RDF)
Mozilla Firefox (Q698)technicalRequirement/firefox (RDF)
Sourcehttp://vocabulary.curriculum.edu.au/
Formatter URLhttp://vocabulary.curriculum.edu.au/$1.html
Related to country  Australia (Q408) (See 201 others)
See alsoUNESCO Thesaurus ID (P3916), ERIC Thesaurus ID (P8539), Australian Thesaurus of Education Descriptors ID (P9497)
Lists
Proposal discussionProposal discussion
Current uses
Total8,610
Main statement8,59299.8% of uses
Qualifier6<0.1% of uses
Reference120.1% of uses
Search for values
[create Create a translatable help page (preferably in English) for this property to be included here]
Distinct values: this property likely contains a value that is different from all other items. (Help)
Exceptions are possible as rare values may exist. Exceptions can be specified using exception to constraint (P2303). Known exceptions: mammal (Q110551885), mammal (Q7377)
List of violations of this constraint: Database reports/Constraint violations/P7033#Unique value, SPARQL (every item), SPARQL (by value)
Format “(scot|technicalRequirement|languageModes|schoolLevel|framework|studentActivity|crossCurriculum)/[\w0-9-]*: value must be formatted using this pattern (PCRE syntax). (Help)
Exceptions are possible as rare values may exist. Exceptions can be specified using exception to constraint (P2303).
List of violations of this constraint: Database reports/Constraint violations/P7033#Format, SPARQL
Conflicts with “instance of (P31): Wikimedia disambiguation page (Q4167410): this property must not be used with the listed properties and values. (Help)
Exceptions are possible as rare values may exist. Exceptions can be specified using exception to constraint (P2303).
List of violations of this constraint: Database reports/Constraint violations/P7033#Conflicts with P31, search, SPARQL
Format “[a-z][a-zA-Z]*/.+: value must be formatted using this pattern (PCRE syntax). (Help)
List of violations of this constraint: Database reports/Constraint violations/P7033#Format, hourly updated report, SPARQL
Format “scot/[0-9]+|(crossCurriculum|languageModes)/[a-f0-9-]+|technicalRequirement/[a-z0-9-]+|(studentActivity|schoolLevel)/-?[0-9]*|framework/[A-Z0-9-]*: value must be formatted using this pattern (PCRE syntax). (Help)
Exceptions are possible as rare values may exist. Exceptions can be specified using exception to constraint (P2303).
List of violations of this constraint: Database reports/Constraint violations/P7033#Format, SPARQL
Allowed entity types are Wikibase item (Q29934200): the property may only be used on a certain entity type (Help)
Exceptions are possible as rare values may exist. Exceptions can be specified using exception to constraint (P2303).
List of violations of this constraint: Database reports/Constraint violations/P7033#Entity types
Scope is as main value (Q54828448), as reference (Q54828450): the property must be used by specified way only (Help)
Exceptions are possible as rare values may exist. Exceptions can be specified using exception to constraint (P2303).
List of violations of this constraint: Database reports/Constraint violations/P7033#Scope, SPARQL
Conflicts with “instance of (P31): scholarly article (Q13442814), academic journal (Q737498): this property must not be used with the listed properties and values. (Help)
Exceptions are possible as rare values may exist. Exceptions can be specified using exception to constraint (P2303).
List of violations of this constraint: Database reports/Constraint violations/P7033#Conflicts with P31, SPARQL

SPARQL endpoint edit

Try running this code

PREFIX skos:<http://www.w3.org/2004/02/skos/core#>
PREFIX :<http://www.w3.org/2004/02/skos/core#> 
SELECT ?uri (str(?lab) as ?prefLabel) ?broader ?broaderLabel
WHERE{ 
{?uri :prefLabel ?lab .} 
#UNION{?uri :altLabel ?lab .} 
FILTER(lang(?lab)='en') 
OPTIONAL {?uri skos:broader ?broader.
?broader :prefLabel ?broaderLabel .
FILTER(lang(?broaderLabel)='en') 
}
}ORDER BY ?uri
Try it!

at the SCOT SPARQL endpoint. May be useful (without the filters) for finding alternate labels once items are associated with WD. --99of9 (talk) 03:18, 22 July 2019 (UTC)Reply

For example, some are multilingual already:

PREFIX :<http://www.w3.org/2004/02/skos/core#> 
SELECT ?uri (SAMPLE(str(?enlab)) as ?prefLabel) (COUNT(?lab) AS ?count)
WHERE{ 
{?uri :prefLabel ?enlab .} 
FILTER(lang(?enlab)='en') 
{?uri :prefLabel ?lab .} 
#UNION{?uri :altLabel ?lab .} 
}
GROUP BY ?uri
ORDER BY DESC(?count)
Try it!
Return to "P7033" page.