Position

Contains the row and column of a location of a Statement element in a policy document.

This data type is used as a member of the Statement type.

APIs.ioEngineeringPlatform

Properties

Name Type Description
Line object
Column object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-position-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Position",
  "title": "Position",
  "type": "object",
  "properties": {
    "Line": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LineNumber"
        },
        {
          "description": "The line containing the specified position in the document."
        }
      ]
    },
    "Column": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ColumnNumber"
        },
        {
          "description": "The column in the line containing the specified position in the document."
        }
      ]
    }
  },
  "description": "<p>Contains the row and column of a location of a <code>Statement</code> element in a policy document.</p> <p>This data type is used as a member of the <code> <a>Statement</a> </code> type.</p>"
}