Schema definition PrimitivePickSensor
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p2338.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
@enabled   Optional
@intersectionType   Optional
@matchCriterion   Optional
@objectType   Optional
@sortOrder   Optional
-metadata   Optional
-pickingGeometry   Optional
-pickTarget   Optional
-children   Optional
used by Scene / -children > array items [0]+ / Schema / PrimitivePickSensor
-allNodes > array items [0]+ / Schema / PrimitivePickSensor
-child / PrimitivePickSensor
-children > array items [0]+ / Schema / PrimitivePickSensor
source code "PrimitivePickSensor": {
    "type": "object",
    "properties": {
        "@DEF": {
            "type": "string"
        },
        "@USE": {
            "type": "string"
        },
        "IS": {
            "$ref": "#/definitions/IS"
        },
        "@enabled": {
            "type": "boolean",
            "default": true
        },
        "@intersectionType": {
            "type": "string",
            "default": "BOUNDS"
        },
        "@matchCriterion": {
            "type": "string",
            "enum": [
                "MATCH_ANY",
                "MATCH_EVERY",
                "MATCH_ONLY_ONE"
            ],
            "default": "MATCH_ANY"
        },
        "@objectType": {
            "type": "array",
            "minItems": 1,
            "items": [
                {
                    "type": "string",
                    "default": "ALL"
                }
            ],
            "additionalItems": {
                "type": "string"
            }
        },
        "@sortOrder": {
            "type": "string",
            "enum": [
                "ANY",
                "CLOSEST",
                "ALL",
                "ALL_SORTED"
            ],
            "default": "CLOSEST"
        },
        "-metadata": {
            "$ref": "#/definitions/-metadata"
        },
        "-pickingGeometry": {
            "type": "array",
            "minItems": 1,
            "maxItems": 1,
            "items": {
                "type": "object",
                "properties": {
                    "Box": {
                        "$ref": "#/definitions/Box"
                    },
                    "Cone": {
                        "$ref": "#/definitions/Cone"
                    },
                    "Cylinder": {
                        "$ref": "#/definitions/Cylinder"
                    },
                    "Sphere": {
                        "$ref": "#/definitions/Sphere"
                    },
                    "ProtoInstance": {
                        "$ref": "#/definitions/ProtoInstance"
                    }
                },
                "additionalProperties": false
            }
        },
        "-pickTarget": {
            "$ref": "#/definitions/-pickTarget"
        },
        "-children": {
            "$ref": "#/definitions/-commentRoute"
        }
    },
    "additionalProperties": false
}

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

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

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

Property PrimitivePickSensor / @enabled
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p2342.png
property details
Occurrence  Optional
schema details
Default  true
type Boolean
source code "@enabled": {
    "type": "boolean",
    "default": true
}

Property PrimitivePickSensor / @intersectionType
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p2343.png
property details
Occurrence  Optional
schema details
Default  "BOUNDS"
type String
source code "@intersectionType": {
    "type": "string",
    "default": "BOUNDS"
}

Property PrimitivePickSensor / @matchCriterion
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p2344.png
property details
Occurrence  Optional
schema details
Default  "MATCH_ANY"
type String
enumerations
Type   Value
string   MATCH_ANY
string   MATCH_EVERY
string   MATCH_ONLY_ONE
source code "@matchCriterion": {
    "type": "string",
    "enum": [
        "MATCH_ANY",
        "MATCH_EVERY",
        "MATCH_ONLY_ONE"
    ],
    "default": "MATCH_ANY"
}

Property PrimitivePickSensor / @objectType
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p2345.png
property details
Occurrence  Optional
type Array
array constraints
Min Items  1
array items
[0]  Schema
[1]+  Schema
source code "@objectType": {
    "type": "array",
    "minItems": 1,
    "items": [
        {
            "type": "string",
            "default": "ALL"
        }
    ],
    "additionalItems": {
        "type": "string"
    }
}

Array item PrimitivePickSensor / @objectType > array items [0] / Schema
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p2346.png
schema details
Default  "ALL"
type String
source code {
    "type": "string",
    "default": "ALL"
}

Array item wildcard PrimitivePickSensor / @objectType > array items [1]+ / Schema
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p2347.png
type String
source code {
    "type": "string"
}

Property PrimitivePickSensor / @sortOrder
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p2348.png
property details
Occurrence  Optional
schema details
Default  "CLOSEST"
type String
enumerations
Type   Value
string   ANY
string   CLOSEST
string   ALL
string   ALL_SORTED
source code "@sortOrder": {
    "type": "string",
    "enum": [
        "ANY",
        "CLOSEST",
        "ALL",
        "ALL_SORTED"
    ],
    "default": "CLOSEST"
}

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

Property PrimitivePickSensor / -pickingGeometry
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p2350.png
property details
Occurrence  Optional
type Array
array constraints
Min Items  1
Max Items  1
array items
[0]  Schema
source code "-pickingGeometry": {
    "type": "array",
    "minItems": 1,
    "maxItems": 1,
    "items": {
        "type": "object",
        "properties": {
            "Box": {
                "$ref": "#/definitions/Box"
            },
            "Cone": {
                "$ref": "#/definitions/Cone"
            },
            "Cylinder": {
                "$ref": "#/definitions/Cylinder"
            },
            "Sphere": {
                "$ref": "#/definitions/Sphere"
            },
            "ProtoInstance": {
                "$ref": "#/definitions/ProtoInstance"
            }
        },
        "additionalProperties": false
    }
}

Array item wildcard PrimitivePickSensor / -pickingGeometry > array items [0]+ / Schema
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p2351.png
type Object
properties
Name   Occurrence
Box   Optional
Cone   Optional
Cylinder   Optional
Sphere   Optional
ProtoInstance   Optional
source code {
    "type": "object",
    "properties": {
        "Box": {
            "$ref": "#/definitions/Box"
        },
        "Cone": {
            "$ref": "#/definitions/Cone"
        },
        "Cylinder": {
            "$ref": "#/definitions/Cylinder"
        },
        "Sphere": {
            "$ref": "#/definitions/Sphere"
        },
        "ProtoInstance": {
            "$ref": "#/definitions/ProtoInstance"
        }
    },
    "additionalProperties": false
}

Property PrimitivePickSensor / -pickingGeometry > array items [0]+ / Schema / Box
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p2352.png
property details
Occurrence  Optional
reference Box
source code "Box": {
    "$ref": "#/definitions/Box"
}

Property PrimitivePickSensor / -pickingGeometry > array items [0]+ / Schema / Cone
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p2353.png
property details
Occurrence  Optional
reference Cone
source code "Cone": {
    "$ref": "#/definitions/Cone"
}

Property PrimitivePickSensor / -pickingGeometry > array items [0]+ / Schema / Cylinder
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p2354.png
property details
Occurrence  Optional
reference Cylinder
source code "Cylinder": {
    "$ref": "#/definitions/Cylinder"
}

Property PrimitivePickSensor / -pickingGeometry > array items [0]+ / Schema / Sphere
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p2355.png
property details
Occurrence  Optional
reference Sphere
source code "Sphere": {
    "$ref": "#/definitions/Sphere"
}

Property PrimitivePickSensor / -pickingGeometry > array items [0]+ / Schema / ProtoInstance
diagram x3d-3.3-JSONSchema_diagrams/x3d-3.3-JSONSchema_p2356.png
property details
Occurrence  Optional
reference ProtoInstance
source code "ProtoInstance": {
    "$ref": "#/definitions/ProtoInstance"
}

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

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


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