Schema definition GeoTransform
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1126.png
location C:\x3d-code\www.web3d.org\specifications\x3d-3.3-JSONSchema.json
type Object
properties
Name   Occurrence
@DEF   Optional
@USE   Optional
IS   Optional
@bboxCenter   Optional
@bboxSize   Optional
-children   Optional
@geoCenter   Optional
@geoSystem   Optional
@rotation   Optional
@scale   Optional
@scaleOrientation   Optional
@translation   Optional
-geoOrigin   Optional
-metadata   Optional
used by GeoMetadata / -data > array items [0]+ / Schema / GeoTransform
Scene / -children > array items [0]+ / Schema / GeoTransform
TransformSensor / -targetObject > array items [0]+ / Schema / GeoTransform
-allNodes > array items [0]+ / Schema / GeoTransform
-child / GeoTransform
-children > array items [0]+ / Schema / GeoTransform
-grouping > array items [0]+ / Schema / GeoTransform
-pickTarget > array items [0]+ / Schema / GeoTransform
source code "GeoTransform": {
    "type": "object",
    "properties": {
        "@DEF": {
            "type": "string"
        },
        "@USE": {
            "type": "string"
        },
        "IS": {
            "$ref": "#/definitions/IS"
        },
        "@bboxCenter": {
            "type": "array",
            "minItems": 3,
            "maxItems": 3,
            "items": {
                "type": "number",
                "default": 0
            }
        },
        "@bboxSize": {
            "$ref": "#/definitions/@bboxSize"
        },
        "-children": {
            "$ref": "#/definitions/-children"
        },
        "@geoCenter": {
            "type": "array",
            "minItems": 3,
            "maxItems": 3,
            "items": {
                "type": "number",
                "default": 0
            }
        },
        "@geoSystem": {
            "$ref": "#/definitions/@geoSystem"
        },
        "@rotation": {
            "$ref": "#/definitions/@rotation"
        },
        "@scale": {
            "type": "array",
            "minItems": 3,
            "maxItems": 3,
            "items": {
                "type": "number",
                "exclusiveMinimum": 0,
                "default": 1
            }
        },
        "@scaleOrientation": {
            "$ref": "#/definitions/@rotation"
        },
        "@translation": {
            "type": "array",
            "minItems": 3,
            "maxItems": 3,
            "items": {
                "type": "number",
                "default": 0
            }
        },
        "-geoOrigin": {
            "$ref": "#/definitions/-geoOrigin"
        },
        "-metadata": {
            "$ref": "#/definitions/-metadata"
        }
    },
    "additionalProperties": false
}

Property GeoTransform / @DEF
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1127.png
property details
Occurrence  Optional
type String
source code "@DEF": {
    "type": "string"
}

Property GeoTransform / @USE
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1128.png
property details
Occurrence  Optional
type String
source code "@USE": {
    "type": "string"
}

Property GeoTransform / IS
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1129.png
property details
Occurrence  Optional
reference IS
source code "IS": {
    "$ref": "#/definitions/IS"
}

Property GeoTransform / @bboxCenter
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1130.png
property details
Occurrence  Optional
type Array
array constraints
Min Items  3
Max Items  3
array items
[0 - 2]  Schema
source code "@bboxCenter": {
    "type": "array",
    "minItems": 3,
    "maxItems": 3,
    "items": {
        "type": "number",
        "default": 0
    }
}

Array item wildcard GeoTransform / @bboxCenter > array items [0]+ / Schema
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1131.png
schema details
Default  0
type Numeric
source code {
    "type": "number",
    "default": 0
}

Property GeoTransform / @bboxSize
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1132.png
property details
Occurrence  Optional
reference @bboxSize
source code "@bboxSize": {
    "$ref": "#/definitions/@bboxSize"
}

Property GeoTransform / -children
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1133.png
property details
Occurrence  Optional
reference -children
source code "-children": {
    "$ref": "#/definitions/-children"
}

Property GeoTransform / @geoCenter
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1134.png
property details
Occurrence  Optional
type Array
array constraints
Min Items  3
Max Items  3
array items
[0 - 2]  Schema
source code "@geoCenter": {
    "type": "array",
    "minItems": 3,
    "maxItems": 3,
    "items": {
        "type": "number",
        "default": 0
    }
}

Array item wildcard GeoTransform / @geoCenter > array items [0]+ / Schema
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1135.png
schema details
Default  0
type Numeric
source code {
    "type": "number",
    "default": 0
}

Property GeoTransform / @geoSystem
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1136.png
property details
Occurrence  Optional
reference @geoSystem
source code "@geoSystem": {
    "$ref": "#/definitions/@geoSystem"
}

Property GeoTransform / @rotation
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1137.png
property details
Occurrence  Optional
reference @rotation
source code "@rotation": {
    "$ref": "#/definitions/@rotation"
}

Property GeoTransform / @scale
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1138.png
property details
Occurrence  Optional
type Array
array constraints
Min Items  3
Max Items  3
array items
[0 - 2]  Schema
source code "@scale": {
    "type": "array",
    "minItems": 3,
    "maxItems": 3,
    "items": {
        "type": "number",
        "exclusiveMinimum": 0,
        "default": 1
    }
}

Array item wildcard GeoTransform / @scale > array items [0]+ / Schema
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1139.png
schema details
Default  1
type Numeric
numeric constraints
Minimum  0
Excl. Min  true
source code {
    "type": "number",
    "exclusiveMinimum": 0,
    "default": 1
}

Property GeoTransform / @scaleOrientation
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1140.png
property details
Occurrence  Optional
reference @rotation
source code "@scaleOrientation": {
    "$ref": "#/definitions/@rotation"
}

Property GeoTransform / @translation
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1141.png
property details
Occurrence  Optional
type Array
array constraints
Min Items  3
Max Items  3
array items
[0 - 2]  Schema
source code "@translation": {
    "type": "array",
    "minItems": 3,
    "maxItems": 3,
    "items": {
        "type": "number",
        "default": 0
    }
}

Array item wildcard GeoTransform / @translation > array items [0]+ / Schema
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1142.png
schema details
Default  0
type Numeric
source code {
    "type": "number",
    "default": 0
}

Property GeoTransform / -geoOrigin
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1143.png
property details
Occurrence  Optional
reference -geoOrigin
source code "-geoOrigin": {
    "$ref": "#/definitions/-geoOrigin"
}

Property GeoTransform / -metadata
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p1144.png
property details
Occurrence  Optional
reference -metadata
source code "-metadata": {
    "$ref": "#/definitions/-metadata"
}


JSON Schema documentation generated by XMLSpy JSON Schema Editor http://www.altova.com/xmlspy/json-schema-editor.html