-
Notifications
You must be signed in to change notification settings - Fork 27
Creating Example Metadata
Rene Beckmann edited this page Jul 12, 2016
·
9 revisions
After you have documented your example, the only task left is to write some metadata for YAKINDU SCT's example wizard. The metadata contains the display title of your example and the categories.
You can now rename your copy of the metadata - change the file extension from json_deactivated to json.
A well-formed metadata file looks like this:
{
"id": "org.yakindu.sct.examples.example_template",
"title": "Example Template",
"category": [
"open source",
"basic"
]
}
What you have to do:
- Give your example a unique ID. Choose whatever you want, you can just replace
example_templatewith your foldername. - The title must be exactly what you have chosen in
index.html. - Use the categories properly, so your example can be found.
Save the file, and you are ready for submitting your example!