Skip to content

Instantly share code, notes, and snippets.

@nvie
Last active March 7, 2017 13:48
Show Gist options
  • Save nvie/b1cf8227802c0ec9e292bf47cd29053c to your computer and use it in GitHub Desktop.
Save nvie/b1cf8227802c0ec9e292bf47cd29053c to your computer and use it in GitHub Desktop.
# Define types of building blocks
SUBDOMAIN = STRING.set('validate', validate_subdomain)
...
@schema({
'data': NESTED({
'type': WEBSPACE_TYPE,
'attributes': NESTED({
'subdomain': SUBDOMAIN,
'domain': DOMAIN,
'description': OPTIONAL(STRING),
}).set('validate', check_fqdn_len)
})
})
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment