generated from AMWA-TV/is-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed8a200
commit e1e8d1d
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"type": "object", | ||
"description": "PATCH request body for invoking a method", | ||
"title": "PATCH request body", | ||
"required": [ | ||
"methodId" | ||
], | ||
"properties": { | ||
"methodId": { | ||
"type": "object", | ||
"description": "ID structure for the target method", | ||
"required": [ | ||
"level", | ||
"index" | ||
], | ||
"properties": { | ||
"level": { | ||
"type": "integer", | ||
"description": "Level component of the method ID", | ||
"minimum": 1 | ||
}, | ||
"index": { | ||
"type": "integer", | ||
"description": "Index component of the method ID", | ||
"minimum": 1 | ||
} | ||
} | ||
}, | ||
"arguments": { | ||
"type": "object", | ||
"description": "Method arguments. Arguments are specified as nested properties inside this object and their types are dictated by the specific MS-05-02 model for the method targeted. Arguments only need to be included for methods which have arguments and MUST be omitted if the method does not require any arguments." | ||
} | ||
} | ||
} |