Domains
Retrieve a schema by URI.
Provides details of a schema with a given URI.
get/domains/{domainId}/schemas/{uri}
Path parameters
domainIdstring required
ID of the domain to retrieve schema of
uristring required
URI of the schema
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"
}
}
}
}
}