| 123456789101112131415161718192021222324252627 |
- {
- "$schema": "https://json-schema.org/draft/2020-12/schema",
- "$id": "node.EXT_instance_features.schema.json",
- "title": "EXT_instance_features glTF Node extension",
- "type": "object",
- "description": "An object describing per-instance feature IDs.",
- "allOf": [
- {
- "$ref": "glTFProperty.schema.json"
- }
- ],
- "properties": {
- "featureIds": {
- "type": "array",
- "description": "An array of feature ID sets.",
- "minItems": 1,
- "items": {
- "$ref": "featureId.schema.json"
- }
- },
- "extensions": {},
- "extras": {}
- },
- "required": [
- "featureIds"
- ]
- }
|