-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Target folder persists to be incorrect #99
Comments
nicolasmol
changed the title
Target folder seems to be incorrect
Target folder persists to be incorrect
Sep 15, 2022
@nicolasmol Hi 👋 Example:{
"__className": "biology", // <- classname and path only paste here at the top of the body.
"Description": "Basic Biology Multiple Choice Questions (MCQ) to practice basic Biology quiz answers",
"id": "ppr004",
"image_url": "",
"questions": [ // <- this key is a class name and you don't need to add it manually.
{
"__className": "question", // <- remove this, generator handle it automatically.
"answers": [ // <- here is a class name for list members.
{
"__className": "answer", // <- don't do that, that's why you Answer class is not implemented. The generator already knows that this object is Answer object due to the list keeper key name.
"Answer": "Symbiosis",
"identifier": "A"
}
],
"correct_answer": "D",
"id": "ppr004q001",
"question": "A relationship in which one animal hunts, kills and eats another"
}
],
"time_seconds": 900,
"title": "Biology"
} This is how your JSON should look: {
"__className": "biology",
"Description": "Basic Biology Multiple Choice Questions (MCQ) to practice basic Biology quiz answers",
"id": "ppr004",
"image_url": "",
"questions": [
{
"answers": [
{
"Answer": "Symbiosis",
"identifier": "A"
}
],
"correct_answer": "D",
"id": "ppr004q001",
"question": "A relationship in which one animal hunts, kills and eats another"
}
],
"time_seconds": 900,
"title": "Biology"
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is there an existing issue for this?
Current Behavior
Defining my target folder like this
However persists to generate into /lib/data
Expected Behavior
No response
Steps To Reproduce
No response
Version
No response
Relevant JSON syntax
Anything else?
No response
The text was updated successfully, but these errors were encountered: