A single schema.org entity — a JsonObject that normally carries an @type (and, at the top level, an @context). Every Thing in schema.org is modelled this way.
@type
@context
const node: SchemaNode = { '@context': 'https://schema.org', '@type': 'Product', name: 'POTASSIUM HYDROXIDE 90%, kg',}; Copy
const node: SchemaNode = { '@context': 'https://schema.org', '@type': 'Product', name: 'POTASSIUM HYDROXIDE 90%, kg',};
export type SchemaNode = JsonObject; Copy
export type SchemaNode = JsonObject;
A single schema.org entity — a JsonObject that normally carries an
@type(and, at the top level, an@context). Every Thing in schema.org is modelled this way.