libs/core/schemas/src/file-schemas/library-json.schema.ts
Schema Definition for a file, which serves as a Library description and as the base for generating Building Blocks with examples
Properties |
| $schema (Optional) | |
| Type |
string
|
|
Description
|
The JSON Schema for this file |
| assets (Optional) | |
| Type |
string
|
|
Description
|
Root of the library assets |
| category | |
| Type |
string
|
|
Description
|
Category of the library |
| prefix | |
| Type |
string
|
|
Description
|
Prefix for the library |
export interface LibraryJsonSchema {
/**
* The JSON Schema for this file
*/
$schema?: string;
/**
* Category of the library
*/
category: string;
/**
* Prefix for the library
*/
prefix: string;
/**
* Root of the library assets
*/
assets?: string;
}