This repository was archived by the owner on Jul 28, 2023. It is now read-only.
Description I created Postman client based on Swagger documentation (api.json file) and tried to register new thing. I got 500 ERROR (Problem accessing /td ).
(I set up version 10 according to this guideline #33 )
This is the thing that I want to register:
{
"name":"My Lamp",
"type": "alien-thing",
"description": "A web connected lamp",
"properties": {
"on": {
"type": "boolean",
"description": "Whether the lamp is turned on",
"href": "/things/lamp/properties/on"
},
"brightness" : {
"type": "number",
"description": "The level of light from 0-100",
"minimum" : 0,
"maximum" : 100,
"href": "/things/lamp/properties/brightness"
}
},
"actions": {
"toggle": {
"description": "Toggle the lamp on and off"
}
},
"events": {
"overheating": {
"description": "The lamp has exceeded its safe operating temperature"
}
},
"links": {
"properties": "/thing/lamp/properties",
"actions": "/things/lamp/actions",
"events": "/things/lamp/events"
}
}
Reactions are currently unavailable
I created Postman client based on Swagger documentation (api.json file) and tried to register new thing. I got 500 ERROR (Problem accessing /td).
(I set up version 10 according to this guideline #33)
This is the thing that I want to register: