Slide 33
Slide 33 text
API Specification
RAML
# schemas/character.json
{
"type": "object",
"$schema": "http://json-schema.org/draft-03/schema",
"required": true,
"properties": {
"name": {
"type": "string",
"required": true,
"maxLength": 125
},
"gender": {
"type": "string"
}
}
}