This commit is contained in:
tree 2022-04-12 13:37:40 +02:00
rodič ecf2898ffc
revize 3652a61f10
2 změnil soubory, kde provedl 5 přidání a 10 odebrání

Zobrazit soubor

@ -51,15 +51,8 @@ Veřejný HTTP endpoint s datovými soubory ve formátu JSON naleznete na adrese
| **projects** | Projekty | [https://spec.utxo.cz/22/projects.json](https://spec.utxo.cz/22/projects.json) |
| **bundle** | Vše v jednom souboru | [https://spec.utxo.cz/22/bundle.json](https://spec.utxo.cz/22/bundle.json) |
### Modely
#### Speaker
[Schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fspec.utxo.cz%2Fschema%2F1%2Fspeaker.json)
#### Event
[Event](https://json-schema.app/view/%23?url=https%3A%2F%2Fspec.utxo.cz%2Fschema%2F1%2Fevent.json)
Schema si můžete prohlédnout zde:
https://json-schema.app/view/%23%2Fdefinitions%2Fspeaker?url=https%3A%2F%2Fspec.utxo.cz%2Fschema%2F1%2Fbundle.json
## Detaily k jednotlivým ročníkům

Zobrazit soubor

@ -170,7 +170,9 @@ export class UTXOEngine {
);
schemaBundle[schema.name] = schema.schema;
}
await this._jsonWrite([outputSchemaDir, "bundle.json"], { definitions: schemaBundle });
await this._jsonWrite([outputSchemaDir, "bundle.json"], {
definitions: schemaBundle,
});
// write global index
await this._jsonWrite([outputDir, "index.json"], entriesIndex);