os:RDFFunction
A declarative function reference with parameter bindings, following FnO patterns.
RDF functions are evaluated during request template materialization.
Unlike SPARQLFunction which embeds SPARQL queries, RDFFunction declares a function URI and parameter bindings.
# Example: Resolve a secret to a marker string
[
a os:RDFFunction ;
os:executesFunction secrets:resolve_secret ;
os:functionInput [
os:functionParameter secrets:secret ;
os:functionInputValue mymatrix:MyApiKey
]
]See also: ontology