{
"type": "object",
"required": [
"OrganizationId",
"Name",
"Type"
],
"title": "CreateResourceRequest",
"properties": {
"OrganizationId": {
"allOf": [
{
"$ref": "#/components/schemas/OrganizationId"
},
{
"description": "The identifier associated with the organization for which the resource is created."
}
]
},
"Name": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceName"
},
{
"description": "The name of the new resource."
}
]
},
"Type": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceType"
},
{
"description": "The type of the new resource. The available types are <code>equipment</code> and <code>room</code>."
}
]
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workmail/refs/heads/main/json-schema/workmail-create-resource-request-schema.json",
"description": "CreateResourceRequest schema from Amazon WorkMail API"
}