{ "$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": "

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.

" }