diff --git a/sqs/README.md b/sqs/README.md
index 9061e425..1475139d 100644
--- a/sqs/README.md
+++ b/sqs/README.md
@@ -46,7 +46,6 @@ An SQS queue can set up a Dead Letter Queue as part of a Redelivery Policy. To s
#### Queue
|Field Name | Type | Description|
|---|:---:|---|
-|$ref | `string` | Allows for an external definition of a queue. The referenced structure MUST be in the format of a [Queue](#queue). If there are conflicts between the referenced definition and this Queue's definition, the behavior is *undefined*.|
| `name` | string | **Required.** The name of the queue. When an [SNS Operation Binding Object]() references an SQS queue by name, the identifier should be the one in this field.|
| `fifoQueue` | boolean | **Required.** Is this a FIFO queue? |
| `deliveryDelay` | integer | **Optional.** The number of seconds to delay before a message sent to the queue can be received. Used to create a *delay queue*. Range is 0 to 15 minutes. Defaults to 0. |
diff --git a/sqs/json_schemas/channel.json b/sqs/json_schemas/channel.json
index 179d4035..3930780a 100644
--- a/sqs/json_schemas/channel.json
+++ b/sqs/json_schemas/channel.json
@@ -38,10 +38,6 @@
}
},
"properties": {
- "$ref": {
- "type": "string",
- "description": "Allows for an external definition of a queue. The referenced structure MUST be in the format of a Queue. If there are conflicts between the referenced definition and this Queue's definition, the behavior is undefined."
- },
"name": {
"type": "string",
"description": "The name of the queue. When an SNS Operation Binding Object references an SQS queue by name, the identifier should be the one in this field."