Skip to content
14 changes: 14 additions & 0 deletions advanced/content-package-template/card/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,20 @@ The .properties files should use suffix below and be UTF-8 encoded.
**Example**
````i18n_en_US.properties````

- **Card mainifest json example with mandatory fields :**
```json
{
"sap.app": {
"type": "card",
"title": "Card Title";
"applicationVersion": {
"version": "1.0.0"
}
},
"sap.card": {},
"_version": "1.0",
}
```

## Updating/Versioning of a card
The card manifest.json file contains also version information.
Expand Down
2 changes: 1 addition & 1 deletion standard/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
This repository serves as a template for SAP Work Zone Standard integration samples, providing a structured starting point for developers.

- **Content Package Template:**
[Standard](./content-package-template/README.md) code samples
[Standard](./content-package-template/README.md) code samples
15 changes: 15 additions & 0 deletions standard/content-package-template/docs/cards/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,21 @@ https://sapui5.hana.ondemand.com/test-resources/sap/ui/integration/demokit/cardE
`````
</details>

**Card mainifest json example with mandatory fields :**
```json
{
"sap.app": {
"type": "card",
"title": "Card Title";
"applicationVersion": {
"version": "1.0.0"
}
},
"sap.card": {},
"_version": "1.0",
}
```

## Updating/Versioning of a card

The card manifest.json file contains also version information.
Expand Down