Predicates/Authorship/Contribution

created by

The subject was originally created or brought into existence by the object actor.

enshrined Authorship/Contribution createdBy

Enshrined — the object model is decided and the ID below is what every conforming app and the contract resolve.

Identity

A predicate is itself an atom. Its ID is derived from these exact bytes — the same value in your app, in anyone else's, and onchain.

predicate atom data
{
  "@context": "https://schema.org/",
  "@type": "DefinedTerm",
  "name": "created by",
  "description": "The subject was originally created or brought into existence by the object actor"
}
atom id 0x3df2eaf3b9bdaf2018bc5d45fa770c470ab5067b5afdc9e3097151f9c87d92a4

Semantics

Market patternattributive — describes the subject

Recommended for

Classifications whose metadata vocabulary includes createdBy:

Use it

import
// tree-shakeable: only this predicate ships in your bundle
import { createdById } from "@0xintuition/predicates/createdBy";

// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.createdBy; // 0x3df2eaf3b9bdaf2018bc5d45fa770c470ab5067b5afdc9e3097151f9c87d92a4
make a claim
import { buildTripleByName } from "@0xintuition/primitives/triple";

const { value: triple } = buildTripleByName(
	subjectId,
	"createdBy",
	objectId,
);
// triple.predicateId === 0x3df2eaf3… — resolved from the registry