RDF Triple
Schema describing an RDF triple (statement) as the fundamental unit of data in the Resource Description Framework. A triple consists of a subject, predicate, and object that together express a relationship between resources.
Properties
| Name | Type | Description |
|---|---|---|
| subject | string | The resource being described, expressed as an IRI (Internationalized Resource Identifier) or blank node identifier. |
| predicate | string | The property or relationship connecting the subject to the object, expressed as an IRI. |
| object | object | The value or resource that the subject is related to via the predicate. Can be an IRI, blank node, or literal value. |
JSON Schema
{
"$id": "rdf-triple.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "RDF Triple",
"description": "Schema describing an RDF triple (statement) as the fundamental unit of data in the Resource Description Framework. A triple consists of a subject, predicate, and object that together express a relationship between resources.",
"type": "object",
"required": [
"subject",
"predicate",
"object"
],
"properties": {
"subject": {
"type": "string",
"description": "The resource being described, expressed as an IRI (Internationalized Resource Identifier) or blank node identifier.",
"format": "uri"
},
"predicate": {
"type": "string",
"description": "The property or relationship connecting the subject to the object, expressed as an IRI.",
"format": "uri"
},
"object": {
"oneOf": [
{
"type": "string",
"description": "An IRI reference to another resource.",
"format": "uri"
},
{
"$ref": "#/$defs/literal"
}
],
"description": "The value or resource that the subject is related to via the predicate. Can be an IRI, blank node, or literal value."
}
},
"additionalProperties": false,
"$defs": {
"literal": {
"type": "object",
"description": "An RDF literal value with optional datatype and language tag.",
"required": [
"value"
],
"properties": {
"value": {
"type": "string",
"description": "The lexical form of the literal."
},
"datatype": {
"type": "string",
"description": "The IRI identifying the datatype of the literal, defaulting to xsd:string.",
"format": "uri"
},
"language": {
"type": "string",
"description": "A BCP47 language tag for language-tagged strings.",
"pattern": "^[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*$"
}
},
"additionalProperties": false
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
curl "https://apis.io/api/v1/json-schemas/rdf-triple"
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.