diff --git a/versions/3.0.md b/versions/3.0.md
index 1d6a2d02a9..58b78b531a 100644
--- a/versions/3.0.md
+++ b/versions/3.0.md
@@ -586,6 +586,7 @@ Field Name | Type | Description
in | `string` | **Required.** The location of the parameter. Possible values are "query", "header", "path", "formData" or "body".
description | `string` | A brief description of the parameter. This could contain examples of use. [GFM syntax](https://help.github.com/articles/github-flavored-markdown) can be used for rich text representation.
required | `boolean` | Determines whether this parameter is mandatory. If the parameter is [`in`](#parameterIn) "path", this property is **required** and its value MUST be `true`. Otherwise, the property MAY be included and its default value is `false`.
+ deprecated | `boolean` | Specifies that a parameter is deprecated and should be transitioned out of usage.
If [`in`](#parameterIn) is `"body"`:
@@ -1242,6 +1243,7 @@ Field Name | Type | Description
xml | [XML Object](#xmlObject) | This MAY be used only on properties schemas. It has no effect on root schemas. Adds Additional metadata to describe the XML representation format of this property.
externalDocs | [External Documentation Object](#externalDocumentationObject) | Additional external documentation for this schema.
example | Any | A free-form property to include a an example of an instance for this schema.
+ deprecated | `boolean` | Specifies that a schema is deprecated and should be transitioned out of usage.
##### Patterned Objects