ChemPal Documentation - v1.6.0
    Preparing search index...

    Type Alias SchemaNode

    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.

    const node: SchemaNode = {
    '@context': 'https://schema.org',
    '@type': 'Product',
    name: 'POTASSIUM HYDROXIDE 90%, kg',
    };
    export type SchemaNode = JsonObject;