40b441df04
- Introduced `field-list.schema.json`, `field-meta.schema.json`, and `field.schema.json` for field configurations. - Added `hooks.schema.json` for defining hooks in the Tibi project. - Created `image-filter.schema.json` for image processing configurations. - Implemented `job.schema.json` for job scheduling configurations. - Added `openapi.schema.json` for OpenAPI metadata generation. - Introduced `permissions.schema.json` for managing permissions in the project. - Created `project.schema.json` for overall project configuration. - Added `projections.schema.json` for defining projections in the project. - Implemented a validation script `validate-schemas.mjs` to ensure schema compliance.
18 lines
430 B
YAML
18 lines
430 B
YAML
namespace: myapi
|
|
|
|
# Metaangaben zum Projekt welche in der UI verwendet werden können
|
|
meta:
|
|
# wird in der Admin-UI zum Projekt aufgegeben
|
|
imageUrl: https://source.unsplash.com/random/?internet
|
|
|
|
# Liste aller möglichen Kollektionen (Listen, Seiten...) zum Projekt
|
|
collections:
|
|
- !include collections/mycol.yml
|
|
|
|
actions:
|
|
- !include actions/demo-action.yml
|
|
|
|
assets:
|
|
- name: _dist_
|
|
path: ../frontend/_dist_
|