Domains
Update a schema with given URI.
Updates a schema with given URI.
put/domains/{domainId}/schemas/{uri}
Path parameters
domainIdstring required
ID of the domain to update schema for
uristring required
URI of the schema to update
Request body
Example request
{
"value": {
"$id": "address",
"required": [
"street_address",
"city",
"state"
],
"properties": {
"street_address": {
"type": "string"
},
"city": {
"type": "string"
},
"state": {
"type": "string"
}
}
}
}Response
successful operation
Example response
{
"data": {
"value": {
"$id": "address",
"required": [
"street_address",
"city",
"state"
],
"properties": {
"street_address": {
"type": "string"
},
"city": {
"type": "string"
},
"state": {
"type": "string"
}
}
}
}
}