No description available.
Input
Encoding
application/jsonid
string
Optional
No description available.
lang
string
Optional
No description available.
name
string
Required
No description available.
maxLength: 80 bytesminLength: 1 bytesOutput
Encoding
application/jsoncount
integer
Required
No description available.
createdAt
stringdatetime
Required
An RFC 3339 formatted timestamp.
id
string
Required
No description available.
isDefault
boolean
Required
No description available.
name
string
Required
No description available.
updatedAt
stringdatetime
Required
An RFC 3339 formatted timestamp.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"name"
],
"properties": {
"id": {
"type": "string"
},
"lang": {
"type": "string",
"knownValues": [
"ja",
"en"
]
},
"name": {
"type": "string",
"maxLength": 80,
"minLength": 1
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"id",
"name",
"isDefault",
"count",
"createdAt",
"updatedAt"
],
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"count": {
"type": "integer"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"isDefault": {
"type": "boolean"
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
},
"encoding": "application/json"
}
}