Created
July 27, 2015 12:34
-
-
Save karlhorky/497389befc9919805d42 to your computer and use it in GitHub Desktop.
Dynamic JSON Schema Defaults
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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