Skip to content

Instantly share code, notes, and snippets.

@karlhorky
Created July 27, 2015 12:34
Show Gist options
  • Save karlhorky/497389befc9919805d42 to your computer and use it in GitHub Desktop.
Save karlhorky/497389befc9919805d42 to your computer and use it in GitHub Desktop.
Dynamic JSON Schema Defaults
{
"title": "root",
"type": "object",
"definitions": {
"emailShareSubject": {
"type": "string",
"description": "Email share subject",
"minLength": 4
},
"emailShareSubjectCREDIT": {
"default": "Get ${{math programDetails.referredRewardDetails.credit ' / 100'}} off {{companyName}}"
},
"emailShareSubjectTIME_CREDIT": {
"default": "Get {{programDetails.referredRewardDetails.credit}} month(s) of free {{companyName}}"
},
"emailShareSubjectPCT_DISCOUNT": {
"default": "Get {{companyName}} for {{programDetails.referredRewardDetails.discountPercent}}% less!"
}
},
"properties": {
"shareMessaging": {
"title": "Share Messaging",
"type": "object",
"properties": {
"emailShareSubject": {
"allOf": [
{ "$ref": "#/definitions/emailShareSubject" },
{ "$ref": "#/definitions/emailShareSubject{{programDetails.referredRewardDetails.rewardType}}" }
]
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment