Properties
| Name | Type | Description |
|---|---|---|
| Name | object | |
| AlternateNameEncoding | object | |
| Value | object | |
| AlternateValueEncoding | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-simpledb/refs/heads/main/json-schema/amazon-simpledb-attribute-schema.json",
"title": "Attribute",
"description": "",
"type": "object",
"properties": {
"Name": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The name of the attribute."
}
]
},
"AlternateNameEncoding": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": ""
}
]
},
"Value": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The value of the attribute."
}
]
},
"AlternateValueEncoding": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": ""
}
]
}
},
"required": [
"Name",
"Value"
]
}