The TypeHub platform supports the semantic web. This means if you describe a data model at our platform we automatically generate a JsonLD schema which can be used in different environments. This works similar to schema.org but with custom types for your use case.
To better understand how to use these JsonLD types lets take a look at the sdkfabric/openai
example document. This document has different types, we can now reference every type directly as JsonLD type, for example if we want to reference the
Completion_Request
type we can simply use the following JsonLD:
{
"@type": "https://typehub.cloud/s/sdkfabric/openai/0.1.1/Completion_Request",
"model": "gpt-4o"
}