@unito/integration-debugger
Version:
The Unito Integration Debugger
15 lines (14 loc) • 544 B
TypeScript
import * as CrawlerDriver from '../crawlerDriver';
/**
* Check: Validate field types and semantics used in Unito
*
* We validate that fields of a relation have the correct type and semantic to be used in Unito.
*
* A classic comment must have:
* - a field of type html/markdown/string with the semantic "description"
* - a field of type datetime with the semantic "createdAt" (not required)
* - a field of type reference with the semantic "user" (not required)
*
*/
declare const check: CrawlerDriver.StepCheck;
export default check;