Amazon Macie · Schema

Page

Specifies the location of an occurrence of sensitive data in an Adobe Portable Document Format file.

Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

Properties

Name Type Description
lineRange object
offsetRange object
pageNumber object
View JSON Schema on GitHub

JSON Schema

amazon-macie-page-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-macie/refs/heads/main/json-schema/amazon-macie-page-schema.json",
  "title": "Page",
  "description": "Specifies the location of an occurrence of sensitive data in an Adobe Portable Document Format file.",
  "type": "object",
  "properties": {
    "lineRange": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Range"
        },
        {
          "description": " <p>Reserved for future use.</p>"
        }
      ]
    },
    "offsetRange": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Range"
        },
        {
          "description": " <p>Reserved for future use.</p>"
        }
      ]
    },
    "pageNumber": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "The page number of the page that contains the sensitive data."
        }
      ]
    }
  }
}