├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .nycrc ├── .prettierignore ├── .prettierrc.json ├── CHANGES.md ├── IMPLEMENTATION.md ├── LICENSE.md ├── README.md ├── ThirdParty.json ├── api-extractor.jsonc ├── bin ├── README.md └── main ├── demos ├── README.md ├── validationOptionsDemo.ts └── validationResultDemos.ts ├── etc └── 3d-tiles-validator.api.md ├── generateThirdParty.js ├── package.json ├── specs ├── BasicValidatorSpec.ts ├── BinaryBufferStructureSpec.ts ├── ExternalTilesetExtensionsValidationSpec.ts ├── MetadataSchemaValidationSpec.ts ├── SubtreeValidationSpec.ts ├── TilesetPackageValidationSpec.ts ├── TilesetValidationSpec.ts ├── data │ ├── Samples │ │ ├── ImplicitTileMetadata │ │ │ ├── content │ │ │ │ ├── 0 │ │ │ │ │ └── 0 │ │ │ │ │ │ └── 0.b3dm │ │ │ │ └── 1 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 0.b3dm │ │ │ │ │ └── 1.b3dm │ │ │ │ │ └── 1 │ │ │ │ │ └── 1.b3dm │ │ │ ├── subtrees │ │ │ │ ├── 1.1 │ │ │ │ │ └── 0.0.0.json │ │ │ │ └── shared.bin │ │ │ └── tileset_1.1.json │ │ ├── PaddingIssues │ │ │ ├── README.md │ │ │ ├── llA.b3dm │ │ │ ├── llB.b3dm │ │ │ ├── llC.b3dm │ │ │ ├── llD.b3dm │ │ │ ├── llE.b3dm │ │ │ ├── tilesetA.json │ │ │ ├── tilesetB.json │ │ │ ├── tilesetC.json │ │ │ ├── tilesetD.json │ │ │ └── tilesetE.json │ │ ├── README.md │ │ ├── SparseImplicitQuadtree │ │ │ ├── content │ │ │ │ ├── content_5__0_21.glb │ │ │ │ ├── content_5__10_31.glb │ │ │ │ ├── content_5__11_30.glb │ │ │ │ ├── content_5__12_25.glb │ │ │ │ ├── content_5__13_24.glb │ │ │ │ ├── content_5__14_27.glb │ │ │ │ ├── content_5__15_26.glb │ │ │ │ ├── content_5__16_5.glb │ │ │ │ ├── content_5__17_4.glb │ │ │ │ ├── content_5__18_7.glb │ │ │ │ ├── content_5__19_6.glb │ │ │ │ ├── content_5__1_20.glb │ │ │ │ ├── content_5__20_1.glb │ │ │ │ ├── content_5__21_0.glb │ │ │ │ ├── content_5__22_3.glb │ │ │ │ ├── content_5__23_2.glb │ │ │ │ ├── content_5__24_13.glb │ │ │ │ ├── content_5__25_12.glb │ │ │ │ ├── content_5__26_15.glb │ │ │ │ ├── content_5__27_14.glb │ │ │ │ ├── content_5__28_9.glb │ │ │ │ ├── content_5__29_8.glb │ │ │ │ ├── content_5__2_23.glb │ │ │ │ ├── content_5__30_11.glb │ │ │ │ ├── content_5__31_10.glb │ │ │ │ ├── content_5__3_22.glb │ │ │ │ ├── content_5__4_17.glb │ │ │ │ ├── content_5__5_16.glb │ │ │ │ ├── content_5__6_19.glb │ │ │ │ ├── content_5__7_18.glb │ │ │ │ ├── content_5__8_29.glb │ │ │ │ └── content_5__9_28.glb │ │ │ ├── subtrees │ │ │ │ ├── 0.0.0.subtree │ │ │ │ ├── 3.0.5.subtree │ │ │ │ ├── 3.1.4.subtree │ │ │ │ ├── 3.2.7.subtree │ │ │ │ ├── 3.3.6.subtree │ │ │ │ ├── 3.4.1.subtree │ │ │ │ ├── 3.5.0.subtree │ │ │ │ ├── 3.6.3.subtree │ │ │ │ └── 3.7.2.subtree │ │ │ └── tileset.json │ │ ├── TilesetGzipped │ │ │ ├── ll.b3dm │ │ │ ├── lr.b3dm │ │ │ ├── parent.b3dm │ │ │ ├── tileset.json │ │ │ ├── ul.b3dm │ │ │ └── ur.b3dm │ │ ├── TilesetOfTilesets │ │ │ ├── lr.b3dm │ │ │ ├── parent.b3dm │ │ │ ├── tileset.json │ │ │ ├── tileset2.json │ │ │ ├── tileset3 │ │ │ │ ├── ll.b3dm │ │ │ │ └── tileset3.json │ │ │ ├── ul.b3dm │ │ │ └── ur.b3dm │ │ ├── TilesetOfTilesetsWithError │ │ │ ├── lr.b3dm │ │ │ ├── parent.b3dm │ │ │ ├── tileset.json │ │ │ ├── tileset2.json │ │ │ ├── tileset3 │ │ │ │ ├── ll.b3dm │ │ │ │ └── tileset3.json │ │ │ ├── ul.b3dm │ │ │ └── ur.b3dm │ │ └── TilesetWithFullMetadata │ │ │ └── tileset.json │ ├── buffers │ │ ├── bufferViewsElementBufferInvalidType.json │ │ ├── bufferViewsElementBufferInvalidValueA.json │ │ ├── bufferViewsElementBufferInvalidValueB.json │ │ ├── bufferViewsElementBufferInvalidValueC.json │ │ ├── bufferViewsElementByteLengthInvalidType.json │ │ ├── bufferViewsElementByteLengthInvalidValueA.json │ │ ├── bufferViewsElementByteLengthInvalidValueB.json │ │ ├── bufferViewsElementByteOffsetInvalidType.json │ │ ├── bufferViewsElementByteOffsetInvalidValueA.json │ │ ├── bufferViewsElementByteOffsetInvalidValueB.json │ │ ├── bufferViewsElementExceedsBufferLength.json │ │ ├── bufferViewsElementInvalidType.json │ │ ├── bufferViewsInvalidLength.json │ │ ├── bufferViewsInvalidType.json │ │ ├── buffersElementByteLengthInvalidType.json │ │ ├── buffersElementByteLengthInvalidValueA.json │ │ ├── buffersElementByteLengthInvalidValueB.json │ │ ├── buffersElementByteLengthMissing.json │ │ ├── buffersElementInvalidType.json │ │ ├── buffersElementNameInvalidLength.json │ │ ├── buffersElementNameInvalidType.json │ │ ├── buffersElementUriInvalidType.json │ │ ├── buffersElementUriMissing.json │ │ ├── buffersInvalidLength.json │ │ └── buffersInvalidType.json │ ├── extensions │ │ ├── boundingVolumeS2 │ │ │ ├── s2AndInvalidBox.json │ │ │ ├── s2MaximumHeightInvalidType.json │ │ │ ├── s2MinimumHeightGreaterThanMaximumHeight.json │ │ │ ├── s2MinimumHeightInvalidType.json │ │ │ ├── s2TokenInvalidType.json │ │ │ ├── s2TokenInvalidValue.json │ │ │ ├── s2TokenMissing.json │ │ │ └── validTilesetWithS2.json │ │ ├── contentGltf │ │ │ ├── contentGltfExtensionRequiredButNotUsed.json │ │ │ ├── contentGltfExtensionsRequiredDuplicateElement.json │ │ │ ├── contentGltfExtensionsRequiredInvalidArrayLength.json │ │ │ ├── contentGltfExtensionsRequiredInvalidElementType.json │ │ │ ├── contentGltfExtensionsRequiredInvalidType.json │ │ │ ├── contentGltfExtensionsUsedDuplicateElement.json │ │ │ ├── contentGltfExtensionsUsedInvalidArrayLength.json │ │ │ ├── contentGltfExtensionsUsedInvalidElementType.json │ │ │ ├── contentGltfExtensionsUsedInvalidType.json │ │ │ ├── tileset_1_0_withContentGltfRequiredButNotUsed.json │ │ │ ├── tileset_1_0_withContentGltfUsedButNotFound.json │ │ │ ├── tileset_1_0_withContentGltfUsedButNotRequired.json │ │ │ ├── tileset_1_1_withContentGltfUsedButNotFound.json │ │ │ ├── validTileset_1_0_withExtensionObject.json │ │ │ ├── validTileset_1_0_withGltf.json │ │ │ ├── validTileset_1_1_withContentGltfUsedAndFound.json │ │ │ └── validTileset_1_1_withGltf.json │ │ ├── gpm │ │ │ ├── anchorPointMetadataContentIndexInvalidType.json │ │ │ ├── anchorPointMetadataContentIndexInvalidValue.json │ │ │ ├── anchorPointMetadataContentIndexMissing.json │ │ │ ├── anchorPointMetadataPlacementTypeInvalidValue.json │ │ │ ├── anchorPointMetadataPlacementTypeMeshContentWithContentIndex.json │ │ │ ├── anchorPointMetadataPlacementTypeMissing.json │ │ │ ├── collectionRecordCollectionIdInvalidType.json │ │ │ ├── collectionRecordCollectionIdMissing.json │ │ │ ├── collectionRecordPlatformIdInvalidType.json │ │ │ ├── collectionRecordPlatformIdMissing.json │ │ │ ├── collectionRecordSensorRecordsElementInvalidType.json │ │ │ ├── collectionRecordSensorRecordsInvalidLength.json │ │ │ ├── collectionRecordSensorRecordsInvalidType.json │ │ │ ├── collectionRecordSensorRecordsMissing.json │ │ │ ├── collectionUnitRecordCollectionUnitIdInvalidType.json │ │ │ ├── collectionUnitRecordCollectionUnitIdMissing.json │ │ │ ├── collectionUnitRecordExtentInformationInvalidType.json │ │ │ ├── collectionUnitRecordExtentInformationMissing.json │ │ │ ├── collectionUnitRecordPointSourceIdInvalidType.json │ │ │ ├── collectionUnitRecordPointSourceIdInvalidValue.json │ │ │ ├── collectionUnitRecordPointSourceIdMissing.json │ │ │ ├── collectionUnitRecordReferenceDateTimeInvalidType.json │ │ │ ├── collectionUnitRecordReferenceDateTimeMissing.json │ │ │ ├── correlationGroupGroupFlagsElementInvalidType.json │ │ │ ├── correlationGroupGroupFlagsInvalidLengthA.json │ │ │ ├── correlationGroupGroupFlagsInvalidLengthB.json │ │ │ ├── correlationGroupGroupFlagsMissing.json │ │ │ ├── correlationGroupGroupsGroupFlagsInvalidType.json │ │ │ ├── correlationGroupGroupsParamsInvalidType.json │ │ │ ├── correlationGroupGroupsParamsMissing.json │ │ │ ├── correlationGroupParamsElementInvalidType.json │ │ │ ├── correlationGroupParamsInvalidLengthA.json │ │ │ ├── correlationGroupParamsInvalidLengthB.json │ │ │ ├── correlationGroupRotationThetasInvalidType.json │ │ │ ├── correlationGroupRotationThetasMissing.json │ │ │ ├── covarUpperTriangleElementInvalidType.json │ │ │ ├── covarUpperTriangleInvalidLengthA.json │ │ │ ├── covarUpperTriangleInvalidLengthB.json │ │ │ ├── extentInformationLsrAxisUnitVectorsElementInvalidType.json │ │ │ ├── extentInformationLsrAxisUnitVectorsInvalidLengthA.json │ │ │ ├── extentInformationLsrAxisUnitVectorsInvalidLengthB.json │ │ │ ├── extentInformationLsrAxisUnitVectorsInvalidType.json │ │ │ ├── extentInformationLsrAxisUnitVectorsMissing.json │ │ │ ├── extentInformationLsrLengthsElementInvalidType.json │ │ │ ├── extentInformationLsrLengthsInvalidLengthA.json │ │ │ ├── extentInformationLsrLengthsInvalidLengthB.json │ │ │ ├── extentInformationLsrLengthsInvalidType.json │ │ │ ├── extentInformationLsrLengthsMissing.json │ │ │ ├── extentInformationOriginInvalidType.json │ │ │ ├── extentInformationOriginMissing.json │ │ │ ├── idInformationDatasetIdInvalidType.json │ │ │ ├── idInformationDatasetIdMissing.json │ │ │ ├── idInformationReferenceDateTimeInvalidType.json │ │ │ ├── idInformationReferenceDateTimeMissing.json │ │ │ ├── interpolationParamsDampeningParamInvalidType.json │ │ │ ├── interpolationParamsDampeningParamMissing.json │ │ │ ├── interpolationParamsInterpNumPostsInvalidType.json │ │ │ ├── interpolationParamsInterpNumPostsInvalidValueA.json │ │ │ ├── interpolationParamsInterpNumPostsInvalidValueB.json │ │ │ ├── interpolationParamsInterpNumPostsMissing.json │ │ │ ├── interpolationParamsInterpolationModeInvalidType.json │ │ │ ├── interpolationParamsInterpolationModeInvalidValue.json │ │ │ ├── interpolationParamsInterpolationModeMissing.json │ │ │ ├── interpolationParamsInterpolationModeNearestNeighborWithDampeningParam.json │ │ │ ├── interpolationParamsInterpolationModeNearestNeighborWithInterpNumPoints.json │ │ │ ├── lsrAxisUnitVectorsNotOrthogonalA.json │ │ │ ├── lsrAxisUnitVectorsNotOrthogonalB.json │ │ │ ├── lsrAxisUnitVectorsNotOrthogonalC.json │ │ │ ├── masterRecordCollectionRecordListElementInvalidType.json │ │ │ ├── masterRecordCollectionRecordListInvalidLength.json │ │ │ ├── masterRecordCollectionRecordListInvalidType.json │ │ │ ├── masterRecordDatasetExtentInformationInvalidType.json │ │ │ ├── masterRecordIdInformationInvalidType.json │ │ │ ├── masterRecordIdInformationMissing.json │ │ │ ├── masterRecordImplementationInvalidType.json │ │ │ ├── masterRecordImplementationMissing.json │ │ │ ├── masterRecordModelCoordSystemInvalidType.json │ │ │ ├── masterRecordModelCoordSystemMissing.json │ │ │ ├── masterRecordVersionInvalidType.json │ │ │ ├── masterRecordVersionMissing.json │ │ │ ├── modelCoordSystemCrsEcefInvalidType.json │ │ │ ├── modelCoordSystemCrsEcefMissing.json │ │ │ ├── modelCoordSystemMcsTypeEcefCrsEcefInvalidType.json │ │ │ ├── modelCoordSystemMcsTypeEcefCrsEcefMissing.json │ │ │ ├── modelCoordSystemMcsTypeEcefWithAxisUnitVectors.json │ │ │ ├── modelCoordSystemMcsTypeEcefWithCrsHorizontalUtm.json │ │ │ ├── modelCoordSystemMcsTypeEcefWithCrsVertical.json │ │ │ ├── modelCoordSystemMcsTypeEcefWithOrigin.json │ │ │ ├── modelCoordSystemMcsTypeInvalidType.json │ │ │ ├── modelCoordSystemMcsTypeInvalidValue.json │ │ │ ├── modelCoordSystemMcsTypeLsrAxisUnitVectorsInvalidType.json │ │ │ ├── modelCoordSystemMcsTypeLsrAxisUnitVectorsMissing.json │ │ │ ├── modelCoordSystemMcsTypeLsrOriginInvalidType.json │ │ │ ├── modelCoordSystemMcsTypeLsrOriginMissing.json │ │ │ ├── modelCoordSystemMcsTypeLsrWithCrsEcef.json │ │ │ ├── modelCoordSystemMcsTypeLsrWithCrsHorizontalUtm.json │ │ │ ├── modelCoordSystemMcsTypeLsrWithCrsVertical.json │ │ │ ├── modelCoordSystemMcsTypeMissing.json │ │ │ ├── modelCoordSystemMcsTypeUtmCrsHorizontalUtmInvalidType.json │ │ │ ├── modelCoordSystemMcsTypeUtmCrsHorizontalUtmMissing.json │ │ │ ├── modelCoordSystemMcsTypeUtmCrsVerticalInvalidType.json │ │ │ ├── modelCoordSystemMcsTypeUtmCrsVerticalMissing.json │ │ │ ├── modelCoordSystemMcsTypeUtmWithAxisUnitVectors.json │ │ │ ├── modelCoordSystemMcsTypeUtmWithCrsEcef.json │ │ │ ├── modelCoordSystemMcsTypeUtmWithOrigin.json │ │ │ ├── ngaGpmAnchorPointMetadataInvalidType.json │ │ │ ├── ngaGpmInterTileCorrelationGroupsElementInvalidType.json │ │ │ ├── ngaGpmInterTileCorrelationGroupsInvalidLength.json │ │ │ ├── ngaGpmInterTileCorrelationGroupsInvalidType.json │ │ │ ├── ngaGpmInterTileCorrelationGroupsMissing.json │ │ │ ├── ngaGpmInterpolationParamsInvalidType.json │ │ │ ├── ngaGpmInterpolationParamsMissing.json │ │ │ ├── ngaGpmInvalidType.json │ │ │ ├── ngaGpmMasterRecordInvalidType.json │ │ │ ├── ngaGpmMasterRecordMissing.json │ │ │ ├── ngaGpmPpeManifestInvalidType.json │ │ │ ├── ngaGpmThreeDimConformalParamsInvalidType.json │ │ │ ├── ngaGpmUnmodeledErrorRecordInvalidType.json │ │ │ ├── ngaGpmUnmodeledErrorRecordMissing.json │ │ │ ├── organizationSystemIdPairOrganizationInvalidType.json │ │ │ ├── organizationSystemIdPairOrganizationMissing.json │ │ │ ├── organizationSystemIdPairSystemIdInvalidType.json │ │ │ ├── organizationSystemIdPairSystemIdMissing.json │ │ │ ├── point3dElementInvalidType.json │ │ │ ├── point3dInvalidLengthA.json │ │ │ ├── point3dInvalidLengthB.json │ │ │ ├── ppeManifestElementInvalidType.json │ │ │ ├── ppeManifestInvalidLengthA.json │ │ │ ├── ppeManifestInvalidLengthB.json │ │ │ ├── ppeMetadataMaxInvalidType.json │ │ │ ├── ppeMetadataMinInvalidType.json │ │ │ ├── ppeMetadataSourceInvalidType.json │ │ │ ├── ppeMetadataSourceMissing.json │ │ │ ├── ppeMetadataSourceValuesNotUnique.json │ │ │ ├── referenceDateTimeNotIso8601A.json │ │ │ ├── referenceDateTimeNotIso8601B.json │ │ │ ├── referenceDateTimeNotIso8601C.json │ │ │ ├── referenceDateTimeNotIso8601D.json │ │ │ ├── referenceSystemDefinitionMissing.json │ │ │ ├── referenceSystemDescriptionInvalidType.json │ │ │ ├── referenceSystemEpochInvalidType.json │ │ │ ├── referenceSystemEpochMissing.json │ │ │ ├── referenceSystemNameInvalidType.json │ │ │ ├── referenceSystemNameMissing.json │ │ │ ├── referenceSystemOrgWithIdInvalidType.json │ │ │ ├── referenceSystemOrgWithIdMissing.json │ │ │ ├── referenceSystemWithDefinitionAndEpoch.json │ │ │ ├── referenceSystemWithDefinitionAndOrgWithId.json │ │ │ ├── rotationThetasElementInvalidType.json │ │ │ ├── rotationThetasInvalidLengthA.json │ │ │ ├── rotationThetasInvalidLengthB.json │ │ │ ├── sensorRecordCollectionUnitRecordsElementInvalidType.json │ │ │ ├── sensorRecordCollectionUnitRecordsInvalidLength.json │ │ │ ├── sensorRecordCollectionUnitRecordsInvalidType.json │ │ │ ├── sensorRecordCollectionUnitRecordsMissing.json │ │ │ ├── sensorRecordSensorIdInvalidType.json │ │ │ ├── sensorRecordSensorIdMissing.json │ │ │ ├── sensorRecordSensorModeInvalidType.json │ │ │ ├── sensorRecordSensorModeMissing.json │ │ │ ├── sensorRecordSensorTypeInvalidType.json │ │ │ ├── sensorRecordSensorTypeMissing.json │ │ │ ├── sensorRecordsSensorModeMissing.json │ │ │ ├── sensorRecordsSensorTypeInvalidType.json │ │ │ ├── sensorRecordsSensorTypeMissing.json │ │ │ ├── spdcfAInvalidType.json │ │ │ ├── spdcfAInvalidValueA.json │ │ │ ├── spdcfAInvalidValueB.json │ │ │ ├── spdcfAMissing.json │ │ │ ├── spdcfAlphaInvalidType.json │ │ │ ├── spdcfAlphaInvalidValueA.json │ │ │ ├── spdcfAlphaInvalidValueB.json │ │ │ ├── spdcfAlphaMissing.json │ │ │ ├── spdcfBetaInvalidType.json │ │ │ ├── spdcfBetaInvalidValueA.json │ │ │ ├── spdcfBetaInvalidValueB.json │ │ │ ├── spdcfBetaMissing.json │ │ │ ├── spdcfTInvalidType.json │ │ │ ├── spdcfTInvalidValue.json │ │ │ ├── spdcfTMissing.json │ │ │ ├── threeDimConformalParamsCovarianceElementInvalidType.json │ │ │ ├── threeDimConformalParamsCovarianceInvalidLengthFor4A.json │ │ │ ├── threeDimConformalParamsCovarianceInvalidLengthFor4B.json │ │ │ ├── threeDimConformalParamsCovarianceInvalidType.json │ │ │ ├── threeDimConformalParamsCovarianceMissing.json │ │ │ ├── threeDimConformalParamsFlagsElementInvalidType.json │ │ │ ├── threeDimConformalParamsFlagsInvalidLengthA.json │ │ │ ├── threeDimConformalParamsFlagsInvalidLengthB.json │ │ │ ├── threeDimConformalParamsFlagsInvalidType.json │ │ │ ├── threeDimConformalParamsFlagsInvalidValues.json │ │ │ ├── threeDimConformalParamsFlagsMissing.json │ │ │ ├── threeDimConformalParamsNormalizingScaleFactorInvalidType.json │ │ │ ├── threeDimConformalParamsNormalizingScaleFactorMissing.json │ │ │ ├── threeDimConformalParamsParametersElementInvalidType.json │ │ │ ├── threeDimConformalParamsParametersInvalidLengthFor4A.json │ │ │ ├── threeDimConformalParamsParametersInvalidLengthFor4B.json │ │ │ ├── threeDimConformalParamsParametersInvalidType.json │ │ │ ├── threeDimConformalParamsParametersMissing.json │ │ │ ├── threeDimConformalParamsRecenteringElementInvalidType.json │ │ │ ├── threeDimConformalParamsRecenteringInvalidLengthA.json │ │ │ ├── threeDimConformalParamsRecenteringInvalidLengthB.json │ │ │ ├── threeDimConformalParamsRecenteringInvalidType.json │ │ │ ├── threeDimConformalParamsRecenteringMissing.json │ │ │ ├── unitVectorInvalidElementValueA.json │ │ │ ├── unitVectorInvalidElementValueB.json │ │ │ ├── unitVectorInvalidLength.json │ │ │ ├── unitVectorNotUnitLengthA.json │ │ │ ├── unitVectorNotUnitLengthB.json │ │ │ ├── unmodeledErrorCorrParamsInvalidElementType.json │ │ │ ├── unmodeledErrorCorrParamsInvalidLengthA.json │ │ │ ├── unmodeledErrorCorrParamsInvalidLengthB.json │ │ │ ├── unmodeledErrorCorrParamsInvalidType.json │ │ │ ├── unmodeledErrorCorrParamsMissing.json │ │ │ ├── unmodeledErrorCorrRotationThetasInvalidType.json │ │ │ ├── unmodeledErrorCorrRotationThetasMissing.json │ │ │ ├── unmodeledErrorPostCovarianceInvalidType.json │ │ │ ├── unmodeledErrorPostCovarianceMissing.json │ │ │ ├── unmodeledErrorPostPositionInvalidType.json │ │ │ ├── unmodeledErrorPostPositionMissing.json │ │ │ ├── unmodeledErrorPostsElementInvalidType.json │ │ │ ├── unmodeledErrorPostsInvalidType.json │ │ │ ├── unmodeledErrorPostsMissing.json │ │ │ ├── unmodeledErrorUniqueIdInvalidType.json │ │ │ ├── unmodeledErrorUniqueIdMissing.json │ │ │ └── validTileset.json │ │ ├── maxarContentGeojson │ │ │ ├── bareGeometryTileset.json │ │ │ ├── bare_geometry.geojson │ │ │ ├── content_schema.json │ │ │ ├── duplicatePropertyIdsTileset.json │ │ │ ├── duplicate_property_ids_schema.json │ │ │ ├── extensionsUsedButNotRequiredTileset.json │ │ │ ├── geometryCollection.geojson │ │ │ ├── geometryCollectionTileset.json │ │ │ ├── invalid.geojson │ │ │ ├── invalidDefaultTypesTileset.json │ │ │ ├── invalidExtensionObject.json │ │ │ ├── invalidGeojsonTileset.json │ │ │ ├── invalidMinMaxOnNonNumericType.json │ │ │ ├── invalidMinMaxTileset.json │ │ │ ├── invalidPropertiesSchemaUri.json │ │ │ ├── invalidRequiredWithDefaultTileset.json │ │ │ ├── invalidSchemaContent.json │ │ │ ├── invalidTilesetWithGeojson.json │ │ │ ├── invalidUriFormat.json │ │ │ ├── invalid_content_schema.json │ │ │ ├── invalid_default_types_schema.json │ │ │ ├── invalid_min_max_schema.json │ │ │ ├── invalid_minmax_schema.json │ │ │ ├── invalid_required_with_default_schema.json │ │ │ ├── lineString.geojson │ │ │ ├── nonExistentSchema.json │ │ │ ├── test_schema.json │ │ │ ├── validOptionalWithoutDefaultsTileset.json │ │ │ ├── validTilesetWithMaxarContentGeojson.json │ │ │ ├── validWithPropertiesSchemaUri.json │ │ │ ├── valid_optional_without_defaults_schema.json │ │ │ └── vegetation_schema.json │ │ ├── maxarExtent │ │ │ ├── collinearOverlap.geojson │ │ │ ├── collinearOverlapTileset.json │ │ │ ├── extent.geojson │ │ │ ├── extentOverflowingTileTileset.json │ │ │ ├── extent_overflowing_tile.geojson │ │ │ ├── insufficientCoordinates.geojson │ │ │ ├── insufficientCoordinatesTileset.json │ │ │ ├── internalTouchRing.geojson │ │ │ ├── internalTouchRingTileset.json │ │ │ ├── invalidEmptyUri.json │ │ │ ├── invalidGeojsonContent.json │ │ │ ├── invalidGeometryTypes.geojson │ │ │ ├── invalidGeometryTypesTileset.json │ │ │ ├── invalidMissingUri.json │ │ │ ├── invalidNonResolvableUri.json │ │ │ ├── invalidSpatialExtent.json │ │ │ ├── invalidUriType.json │ │ │ ├── invalid_extent.geojson │ │ │ ├── large_extent.geojson │ │ │ ├── nearMiss.geojson │ │ │ ├── nearMissTileset.json │ │ │ ├── nearVertexOnOtherSideFail.geojson │ │ │ ├── nearVertexOnOtherSideFailTileset.json │ │ │ ├── nearVertexOnOtherSideOk.geojson │ │ │ ├── nearVertexOnOtherSideOkTileset.json │ │ │ ├── overlappingRings.geojson │ │ │ ├── overlappingRingsTileset.json │ │ │ ├── selfIntersecting.geojson │ │ │ ├── selfIntersectingTileset.json │ │ │ ├── small_extent.geojson │ │ │ ├── trueCrossing.geojson │ │ │ ├── trueCrossingTileset.json │ │ │ ├── validPolygonsOnly.geojson │ │ │ ├── validPolygonsOnlyTileset.json │ │ │ ├── validTilesetWithMaxarExtent.json │ │ │ └── validTilesetWithSpatialExtent.json │ │ ├── maxarGrid │ │ │ ├── invalidBoundingBoxLength.json │ │ │ ├── invalidBoundingBoxSemantics.json │ │ │ ├── invalidCenterLength.json │ │ │ ├── invalidCoordinateSystemType.json │ │ │ ├── invalidCoordinateSystemValue.json │ │ │ ├── invalidElevation.json │ │ │ ├── invalidGridType.json │ │ │ ├── invalidIndexLength.json │ │ │ ├── invalidS2GridWithCenter.json │ │ │ ├── invalidS2GridWithSize.json │ │ │ ├── invalidS2GridWithSrs.json │ │ │ ├── invalidSizeLength.json │ │ │ ├── invalidSrsReferenceSystem.json │ │ │ ├── invalidTileLevel.json │ │ │ ├── validS2Grid.json │ │ │ ├── validTilesetWithMaxarGrid.json │ │ │ └── validTilesetWithVriconGrid.json │ │ └── vriconClass │ │ │ └── validTilesetWithVriconClass.json │ ├── gltfExtensions │ │ ├── FeatureIdAttributeAndPropertyTableFeatureIdNotInRange.gltf │ │ ├── FeatureIdAttributePropertyTableInvalidValue.gltf │ │ ├── FeatureIdAttributePropertyTableWithoutPropertyTables.gltf │ │ ├── FeatureIdAttributePropertyTableWithoutStructuralMetadata.gltf │ │ ├── FeatureIdTextureAndPropertyTableFeatureIdNotInRange.gltf │ │ ├── ValidFeatureIdAttributeAndPropertyTable.gltf │ │ ├── ValidFeatureIdTextureAndPropertyTable.gltf │ │ ├── gpmLocal │ │ │ ├── ValidGltfGpmLocal.gltf │ │ │ ├── ValidMeshPrimitiveGpmLocal.gltf │ │ │ ├── anchorPointDirectAdjustmentParamsInvalidElementType.gltf │ │ │ ├── anchorPointDirectAdjustmentParamsInvalidLength.gltf │ │ │ ├── anchorPointDirectAdjustmentParamsInvalidType.gltf │ │ │ ├── anchorPointDirectAdjustmentParamsMissing.gltf │ │ │ ├── anchorPointDirectPositionInvalidLength.gltf │ │ │ ├── anchorPointDirectPositionInvalidType.gltf │ │ │ ├── anchorPointDirectPositionMissing.gltf │ │ │ ├── anchorPointIndirectAdjustmentParamsInvalidElementType.gltf │ │ │ ├── anchorPointIndirectAdjustmentParamsInvalidLength.gltf │ │ │ ├── anchorPointIndirectAdjustmentParamsInvalidType.gltf │ │ │ ├── anchorPointIndirectAdjustmentParamsMissing.gltf │ │ │ ├── anchorPointIndirectCovarianceInvalidLength.gltf │ │ │ ├── anchorPointIndirectCovarianceMatrixInvalidElementType.gltf │ │ │ ├── anchorPointIndirectCovarianceMatrixInvalidType.gltf │ │ │ ├── anchorPointIndirectCovarianceMatrixMissing.gltf │ │ │ ├── anchorPointIndirectPositionInvalidElementType.gltf │ │ │ ├── anchorPointIndirectPositionInvalidLength.gltf │ │ │ ├── anchorPointIndirectPositionInvalidType.gltf │ │ │ ├── anchorPointIndirectPositionMissing.gltf │ │ │ ├── anchorPointsDirectInvalidElementType.gltf │ │ │ ├── anchorPointsDirectInvalidLength.gltf │ │ │ ├── anchorPointsDirectInvalidType.gltf │ │ │ ├── anchorPointsIndirectInvalidElementType.gltf │ │ │ ├── anchorPointsIndirectInvalidLength.gltf │ │ │ ├── anchorPointsIndirectInvalidType.gltf │ │ │ ├── correlationGroupGroupFlagsElementInvalidType.gltf │ │ │ ├── correlationGroupGroupFlagsInvalidLength.gltf │ │ │ ├── correlationGroupGroupFlagsInvalidType.gltf │ │ │ ├── correlationGroupGroupFlagsMissing.gltf │ │ │ ├── correlationGroupParamsInvalidElementType.gltf │ │ │ ├── correlationGroupParamsInvalidLength.gltf │ │ │ ├── correlationGroupParamsInvalidType.gltf │ │ │ ├── correlationGroupParamsMissing.gltf │ │ │ ├── correlationGroupRotationThetasInvalidElementType.gltf │ │ │ ├── correlationGroupRotationThetasInvalidLength.gltf │ │ │ ├── correlationGroupRotationThetasInvalidType.gltf │ │ │ ├── correlationGroupRotationThetasMissing.gltf │ │ │ ├── covarianceDirectUpperTriangleElementInvalidType.gltf │ │ │ ├── covarianceDirectUpperTriangleInconsistentLength.gltf │ │ │ ├── covarianceDirectUpperTriangleInvalidLength.gltf │ │ │ ├── directAnchorPointsDirectMissing.gltf │ │ │ ├── directCovarianceDirectUpperTriangleMissing.gltf │ │ │ ├── directWithAnchorPointsIndirect.gltf │ │ │ ├── directWithIntraTileCorrelationGroups.gltf │ │ │ ├── indirectAnchorPointsIndirectMissing.gltf │ │ │ ├── indirectIntraTileCorrelationGroupsMissing.gltf │ │ │ ├── indirectWithAnchorPointsDirect.gltf │ │ │ ├── indirectWithCovarianceDirectUpperTriangle.gltf │ │ │ ├── intraTileCorrelationGroupsInvalidElementType.gltf │ │ │ ├── intraTileCorrelationGroupsInvalidLength.gltf │ │ │ ├── intraTileCorrelationGroupsInvalidType.gltf │ │ │ ├── ppeMetadataMaxInvalidType.gltf │ │ │ ├── ppeMetadataMinInvalidType.gltf │ │ │ ├── ppeMetadataSourceInvalidType.gltf │ │ │ ├── ppeMetadataSourceInvalidValue.gltf │ │ │ ├── ppeTextureIndexInvalidType.gltf │ │ │ ├── ppeTextureIndexInvalidValue.gltf │ │ │ ├── ppeTextureNoDataInvalidType.gltf │ │ │ ├── ppeTextureNoDataInvalidValue.gltf │ │ │ ├── ppeTextureOffsetInvalidType.gltf │ │ │ ├── ppeTextureScaleInvalidType.gltf │ │ │ ├── ppeTextureTexCoordInvalidType.gltf │ │ │ ├── ppeTextureTexCoordInvalidValue.gltf │ │ │ ├── ppeTextureTraitsInvalidType.gltf │ │ │ ├── ppeTextureTraitsMissing.gltf │ │ │ ├── ppeTexturesInvalidElementType.gltf │ │ │ ├── ppeTexturesInvalidLength.gltf │ │ │ ├── ppeTexturesInvalidType.gltf │ │ │ ├── spdcfAInvalidType.gltf │ │ │ ├── spdcfAInvalidValueA.gltf │ │ │ ├── spdcfAInvalidValueB.gltf │ │ │ ├── spdcfAMissing.gltf │ │ │ ├── spdcfAlphaInvalidType.gltf │ │ │ ├── spdcfAlphaInvalidValueA.gltf │ │ │ ├── spdcfAlphaInvalidValueB.gltf │ │ │ ├── spdcfAlphaMissing.gltf │ │ │ ├── spdcfBetaInvalidType.gltf │ │ │ ├── spdcfBetaInvalidValueA.gltf │ │ │ ├── spdcfBetaInvalidValueB.gltf │ │ │ ├── spdcfBetaMissing.gltf │ │ │ ├── spdcfTInvalidType.gltf │ │ │ ├── spdcfTInvalidValue.gltf │ │ │ ├── spdcfTMissing.gltf │ │ │ ├── storageTypeInvalidValue.gltf │ │ │ └── storageTypeMissing.gltf │ │ ├── instanceFeatures │ │ │ ├── InstanceFeaturesFeatureIdAttributeInvalidValue.gltf │ │ │ ├── InstanceFeaturesWithoutMeshGpuInstancing.gltf │ │ │ └── ValidInstanceFeatures.gltf │ │ ├── khrLightsPunctual │ │ │ ├── maxarTemporalLightTraits │ │ │ │ ├── invalidDutyWithSineWaveform.gltf │ │ │ │ ├── invalidDutyWithTriangleWaveform.gltf │ │ │ │ ├── invalidMissingWaveform.gltf │ │ │ │ ├── invalidUndeclaredExtension.gltf │ │ │ │ ├── invalidWaveform.gltf │ │ │ │ ├── validDutyWithSquareWaveform.gltf │ │ │ │ └── validTemporalLightTraits.gltf │ │ │ ├── validKhrLightsPunctual.gltf │ │ │ ├── validTilesetWithInvalidKhrLightsPunctual.json │ │ │ └── validTilesetWithKhrLightsPunctual.json │ │ ├── maxarImageOrtho │ │ │ ├── invalidCoordinateSystem.gltf │ │ │ ├── invalidMissingSrs.gltf │ │ │ ├── invalidTransformLength.gltf │ │ │ └── validMaxarImageOrtho.gltf │ │ ├── maxarNonvisualGeometry │ │ │ ├── NodeExtensionMeshInvalidType.gltf │ │ │ ├── NodeExtensionMeshInvalidValue.gltf │ │ │ ├── NodeExtensionMeshMissing.gltf │ │ │ ├── NodeExtensionMeshNotFound.gltf │ │ │ ├── PrimitiveExtensionShapeInvalidType.gltf │ │ │ ├── PrimitiveExtensionShapeInvalidValue.gltf │ │ │ ├── PrimitiveExtensionShapeMissing.gltf │ │ │ ├── PrimitiveExtensionTypeEmpty.gltf │ │ │ ├── PrimitiveExtensionTypeInvalidType.gltf │ │ │ ├── PrimitiveExtensionTypeMissing.gltf │ │ │ ├── ShapePathIncompatibleMode.gltf │ │ │ ├── ShapePointsIncompatibleMode.gltf │ │ │ ├── ShapeSurfaceIncompatibleMode.gltf │ │ │ ├── ShapeVolumeIncompatibleMode.gltf │ │ │ ├── ValidComplexExample.gltf │ │ │ ├── ValidNodeExtension.gltf │ │ │ ├── ValidPrimitiveExtensionPath.gltf │ │ │ ├── ValidPrimitiveExtensionPoints.gltf │ │ │ ├── ValidPrimitiveExtensionSurface.gltf │ │ │ └── ValidPrimitiveExtensionVolume.gltf │ │ ├── meshFeatures │ │ │ ├── FeatureIdAttributeAccessorNormalized.gltf │ │ │ ├── FeatureIdAttributeAccessorNotScalar.gltf │ │ │ ├── FeatureIdAttributeAttributeInvalidType.gltf │ │ │ ├── FeatureIdAttributeAttributeInvalidValue.gltf │ │ │ ├── FeatureIdAttributeFeatureCountInvalidType.gltf │ │ │ ├── FeatureIdAttributeFeatureCountInvalidValue.gltf │ │ │ ├── FeatureIdAttributeFeatureCountMismatch.gltf │ │ │ ├── FeatureIdAttributeFeatureCountMismatchForNullFeatureId.gltf │ │ │ ├── FeatureIdAttributeFeatureCountMissing.gltf │ │ │ ├── FeatureIdAttributeLabelInvalidType.gltf │ │ │ ├── FeatureIdAttributeLabelInvalidValue.gltf │ │ │ ├── FeatureIdAttributeNullFeatureIdInvalidType.gltf │ │ │ ├── FeatureIdAttributeNullFeatureIdInvalidValue.gltf │ │ │ ├── FeatureIdTextureFeatureCountMismatch.gltf │ │ │ ├── FeatureIdTextureSamplerInvalidFilterMode.gltf │ │ │ ├── FeatureIdTextureTextureChannelsInvalidElementType.gltf │ │ │ ├── FeatureIdTextureTextureChannelsInvalidType.gltf │ │ │ ├── FeatureIdTextureTextureChannelsTooManyChannels.gltf │ │ │ ├── FeatureIdTextureTextureChannelsTooManyElements.gltf │ │ │ ├── FeatureIdTextureTextureImageDataInvalid.gltf │ │ │ ├── FeatureIdTextureTextureIndexInvalidType.gltf │ │ │ ├── FeatureIdTextureTextureIndexInvalidValue.gltf │ │ │ ├── FeatureIdTextureTextureInvalidType.gltf │ │ │ ├── FeatureIdTextureTextureTexCoordInvalidType.gltf │ │ │ ├── FeatureIdTextureTextureTexCoordInvalidValue.gltf │ │ │ ├── README.md │ │ │ ├── ValidFeatureIdAttribute.gltf │ │ │ ├── ValidFeatureIdAttributeDefault │ │ │ │ ├── ValidFeatureIdAttributeDefault.gltf │ │ │ │ └── ValidFeatureIdAttributeDefault_data.bin │ │ │ ├── ValidFeatureIdAttributeWithByteStride.glb │ │ │ ├── ValidFeatureIdAttributeWithLargerFeatureCount.gltf │ │ │ ├── ValidFeatureIdAttributeWithNullFeatureId.gltf │ │ │ ├── ValidFeatureIdTexture.glb │ │ │ ├── ValidFeatureIdTexture.gltf │ │ │ └── ValidFeatureIdTextureUsingDefaultChannels.gltf │ │ └── structuralMetadata │ │ │ ├── ExtensionInMeshPrimitiveWithoutTopLevelObject.gltf │ │ │ ├── PropertyAttributesClassPropertyArray.gltf │ │ │ ├── PropertyAttributesClassPropertyInvalidComponentType.gltf │ │ │ ├── PropertyAttributesClassPropertyInvalidEnumValueType.gltf │ │ │ ├── PropertyAttributesClassPropertyMaxNotInRange.gltf │ │ │ ├── PropertyAttributesClassPropertyMinNotInRange.gltf │ │ │ ├── PropertyAttributesClassPropertyString.gltf │ │ │ ├── PropertyAttributesMeshPrimitivePropertyAttributesInvalidElementType.gltf │ │ │ ├── PropertyAttributesMeshPrimitivePropertyAttributesInvalidElementValue.gltf │ │ │ ├── PropertyAttributesMeshPrimitivePropertyAttributesInvalidLength.gltf │ │ │ ├── PropertyAttributesMeshPrimitivePropertyAttributesInvalidType.gltf │ │ │ ├── PropertyAttributesPropertyAttributePropertyInvalidAttribute.gltf │ │ │ ├── PropertyAttributesPropertyAttributePropertyMaxMismatch.gltf │ │ │ ├── PropertyAttributesPropertyAttributePropertyMaxNotInRange.gltf │ │ │ ├── PropertyAttributesPropertyAttributePropertyMinMismatch.gltf │ │ │ ├── PropertyAttributesPropertyAttributePropertyMinNotInRange.gltf │ │ │ ├── PropertyTextureClassPropertyMaxNotInRange.gltf │ │ │ ├── PropertyTextureClassPropertyMinNotInRange.gltf │ │ │ ├── PropertyTextureClassPropertyWithOffsetScaleMinNotInRange.gltf │ │ │ ├── PropertyTextureEnumsInvalidEnumValue.gltf │ │ │ ├── PropertyTextureInvalidPropertyTypeA.gltf │ │ │ ├── PropertyTextureInvalidPropertyTypeB.gltf │ │ │ ├── PropertyTextureMeshPrimitivePropertyTextureTexCoordInvalidValue.gltf │ │ │ ├── PropertyTextureMeshPrimitivePropertyTexturesInvalidElementType.gltf │ │ │ ├── PropertyTextureMeshPrimitivePropertyTexturesInvalidElementValue.gltf │ │ │ ├── PropertyTextureMeshPrimitivePropertyTexturesInvalidLength.gltf │ │ │ ├── PropertyTextureMeshPrimitivePropertyTexturesInvalidType.gltf │ │ │ ├── PropertyTexturePropertyChannelsSizeMismatch.gltf │ │ │ ├── PropertyTexturePropertyIndexInvalidType.gltf │ │ │ ├── PropertyTexturePropertyIndexInvalidValue.gltf │ │ │ ├── PropertyTexturePropertyTexCoordDefault.gltf │ │ │ ├── PropertyTexturePropertyTexCoordInvalidValue.gltf │ │ │ ├── PropertyTexturePropertyTexturePropertyMaxMismatch.gltf │ │ │ ├── PropertyTexturePropertyTexturePropertyMaxNotInRange.gltf │ │ │ ├── PropertyTexturePropertyTexturePropertyMinMismatch.gltf │ │ │ ├── PropertyTexturePropertyTexturePropertyMinNotInRange.gltf │ │ │ ├── README.md │ │ │ ├── StructuralMetadataMissingSchema.gltf │ │ │ ├── StructuralMetadataSchemaAndSchemaUri.gltf │ │ │ ├── ValidMultipleClasses.gltf │ │ │ ├── ValidPropertyAttributes.gltf │ │ │ ├── ValidPropertyTexture.gltf │ │ │ └── ValidPropertyTextureEnums.gltf │ ├── propertyTables │ │ ├── propertiesInvalidType.json │ │ ├── propertiesMinPropertiesMismatch.json │ │ ├── propertyArrayOffsetTypeInvalidType.json │ │ ├── propertyArrayOffsetTypeInvalidValue.json │ │ ├── propertyArrayOffsetsInvalidType.json │ │ ├── propertyArrayOffsetsInvalidValue.json │ │ ├── propertyClassInvalidType.json │ │ ├── propertyClassInvalidValue.json │ │ ├── propertyCountInvalidType.json │ │ ├── propertyCountInvalidValue.json │ │ ├── propertyIdInvalid.json │ │ ├── propertyStringOffsetTypeInvalidType.json │ │ ├── propertyStringOffsetTypeInvalidValue.json │ │ ├── propertyStringOffsetsInvalidType.json │ │ ├── propertyStringOffsetsInvalidValue.json │ │ ├── propertyStringWithoutStringOffsets.json │ │ ├── propertyValueMissing.json │ │ ├── propertyValuesInvalidType.json │ │ ├── propertyVariableLengthArrayWithMin.json │ │ ├── propertyVariableLengthArrayWithOffset.json │ │ └── propertyVariableLengthArrayWithoutArrayOffsets.json │ ├── schemas │ │ ├── FullMetadataSchema.json │ │ ├── metadataClassDescriptionInvalidType.json │ │ ├── metadataClassNameInvalidType.json │ │ ├── metadataClassPropertiesDuplicateSemantics.json │ │ ├── metadataClassPropertiesEmpty.json │ │ ├── metadataClassPropertiesNameInvalid.json │ │ ├── metadataClassPropertyArrayInvalidType.json │ │ ├── metadataClassPropertyComponentTypeForTypeWithoutComponents.json │ │ ├── metadataClassPropertyComponentTypeInvalidType.json │ │ ├── metadataClassPropertyComponentTypeInvalidValue.json │ │ ├── metadataClassPropertyComponentTypeMissing.json │ │ ├── metadataClassPropertyCountInvalidType.json │ │ ├── metadataClassPropertyCountInvalidValue.json │ │ ├── metadataClassPropertyCountWithoutArray.json │ │ ├── metadataClassPropertyDefaultWithRequired.json │ │ ├── metadataClassPropertyDescriptionInvalidType.json │ │ ├── metadataClassPropertyEnumTypeForNonEnumType.json │ │ ├── metadataClassPropertyEnumTypeInvalidType.json │ │ ├── metadataClassPropertyEnumTypeMissingForEnumType.json │ │ ├── metadataClassPropertyEnumTypeNotFound.json │ │ ├── metadataClassPropertyEnumTypeWithoutEnums.json │ │ ├── metadataClassPropertyMaxForNonNumericType.json │ │ ├── metadataClassPropertyMinForNonNumericType.json │ │ ├── metadataClassPropertyMinForVariableLengthArray.json │ │ ├── metadataClassPropertyNameInvalidType.json │ │ ├── metadataClassPropertyNoDataForBoolean.json │ │ ├── metadataClassPropertyNoDataInvalidEnumValueName.json │ │ ├── metadataClassPropertyNoDataInvalidEnumValueNames.json │ │ ├── metadataClassPropertyNoDataTypeMismatchA.json │ │ ├── metadataClassPropertyNoDataTypeMismatchB.json │ │ ├── metadataClassPropertyNoDataTypeMismatchC.json │ │ ├── metadataClassPropertyNoDataWithRequired.json │ │ ├── metadataClassPropertyNormalizedForNonIntegerComponentType.json │ │ ├── metadataClassPropertyNormalizedForUnnormalizableType.json │ │ ├── metadataClassPropertyNormalizedInvalidType.json │ │ ├── metadataClassPropertyOffsetForNonFloatingPointTypeA.json │ │ ├── metadataClassPropertyOffsetForNonFloatingPointTypeB.json │ │ ├── metadataClassPropertyOffsetForVariableLengthArray.json │ │ ├── metadataClassPropertyOffsetTypeMismatchA.json │ │ ├── metadataClassPropertyOffsetTypeMismatchB.json │ │ ├── metadataClassPropertyOffsetTypeMismatchC.json │ │ ├── metadataClassPropertyOffsetTypeMismatchD.json │ │ ├── metadataClassPropertyOffsetTypeMismatchE.json │ │ ├── metadataClassPropertyOffsetTypeMismatchF.json │ │ ├── metadataClassPropertyOffsetTypeMismatchG.json │ │ ├── metadataClassPropertyRequiredInvalidType.json │ │ ├── metadataClassPropertyScaleForNonFloatingPointType.json │ │ ├── metadataClassPropertyScaleForNonFloatingPointTypeB.json │ │ ├── metadataClassPropertySemanticArrayMismatchA.json │ │ ├── metadataClassPropertySemanticArrayMismatchB.json │ │ ├── metadataClassPropertySemanticComponentTypeMismatchA.json │ │ ├── metadataClassPropertySemanticComponentTypeMismatchB.json │ │ ├── metadataClassPropertySemanticCountMismatch.json │ │ ├── metadataClassPropertySemanticGeneric.json │ │ ├── metadataClassPropertySemanticInvalidType.json │ │ ├── metadataClassPropertySemanticNormalizedMismatch.json │ │ ├── metadataClassPropertySemanticTypeMismatch.json │ │ ├── metadataClassPropertySemanticUnknown.json │ │ ├── metadataClassPropertyTypeInvalidType.json │ │ ├── metadataClassPropertyTypeInvalidValue.json │ │ ├── metadataClassPropertyTypeMissing.json │ │ ├── metadataClassesInvalidType.json │ │ ├── metadataClassesNameInvalid.json │ │ ├── metadataEnumDescriptionInvalidType.json │ │ ├── metadataEnumNameInvalidType.json │ │ ├── metadataEnumValueDescriptionInvalidType.json │ │ ├── metadataEnumValueNameInvalidType.json │ │ ├── metadataEnumValueNotInDefaultValueTypeRange.json │ │ ├── metadataEnumValueNotInValueTypeRange.json │ │ ├── metadataEnumValueTypeInvalid.json │ │ ├── metadataEnumValueTypeInvalidType.json │ │ ├── metadataEnumValueTypeInvalidValue.json │ │ ├── metadataEnumValueValueInvalidType.json │ │ ├── metadataEnumValuesDuplicateName.json │ │ ├── metadataEnumValuesDuplicateValue.json │ │ ├── metadataEnumValuesEmpty.json │ │ ├── metadataEnumValuesMissing.json │ │ ├── metadataEnumsInvalidName.json │ │ ├── metadataEnumsInvalidType.json │ │ ├── schemaIdInvalidType.json │ │ ├── schemaIdInvalidValue.json │ │ ├── schemaIdMissing.json │ │ └── validSchema.json │ ├── subtrees │ │ ├── binarySubtreeComputedLengthInvalid.subtree │ │ ├── binarySubtreeInvalidBinaryByteLengthAlignment.subtree │ │ ├── binarySubtreeInvalidJsonByteLengthAlignment.subtree │ │ ├── binarySubtreeInvalidMagic.subtree │ │ ├── binarySubtreeInvalidVersion.subtree │ │ ├── binarySubtreeJsonInvalid.subtree │ │ ├── binarySubtreeValid.subtree │ │ ├── subtreeBufferTileAvailabilityForParentMissingForAvailableTile.bin │ │ ├── subtreeBufferTileAvailabilityMissingForAvailableContent.bin │ │ ├── subtreeBufferViewsWithoutBuffers.json │ │ ├── subtreeChildSubtreeAvailabilityInvalidType.json │ │ ├── subtreeChildSubtreeAvailabilityMissing.json │ │ ├── subtreeContentAvailabilityInvalidLength.json │ │ ├── subtreeContentAvailabilityInvalidType.json │ │ ├── subtreeContentMetadataArrayElementInvalidType.json │ │ ├── subtreeContentMetadataArrayElementInvalidValueA.json │ │ ├── subtreeContentMetadataArrayElementInvalidValueB.json │ │ ├── subtreeContentMetadataInvalidLength.json │ │ ├── subtreeContentMetadataInvalidType.json │ │ ├── subtreeContentMetadataWithoutPropertyTables.json │ │ ├── subtreePropertyTablesElementInvalidType.json │ │ ├── subtreePropertyTablesInvalidLength.json │ │ ├── subtreePropertyTablesInvalidType.json │ │ ├── subtreeTileAvailabilityAvailableCountInvalid.json │ │ ├── subtreeTileAvailabilityAvailableCountMismatch.json │ │ ├── subtreeTileAvailabilityBitstreamAndConstant.json │ │ ├── subtreeTileAvailabilityBitstreamInvalidType.json │ │ ├── subtreeTileAvailabilityBitstreamInvalidValueA.json │ │ ├── subtreeTileAvailabilityBitstreamInvalidValueB.json │ │ ├── subtreeTileAvailabilityBitstreamInvalidValueC.json │ │ ├── subtreeTileAvailabilityBitstreamLengthTooLarge.json │ │ ├── subtreeTileAvailabilityBitstreamLengthTooSmall.json │ │ ├── subtreeTileAvailabilityConstantInvalidType.json │ │ ├── subtreeTileAvailabilityConstantInvalidValue.json │ │ ├── subtreeTileAvailabilityForParentMissingForAvailableTile.json │ │ ├── subtreeTileAvailabilityInvalidType.json │ │ ├── subtreeTileAvailabilityMissing.json │ │ ├── subtreeTileAvailabilityMissingForAvailableContent.json │ │ ├── subtreeTileAvailabilityNeitherBitstreamNorConstant.json │ │ ├── subtreeTileMetadataInvalidType.json │ │ ├── subtreeTileMetadataInvalidValueA.json │ │ ├── subtreeTileMetadataInvalidValueB.json │ │ ├── validBuffer.bin │ │ ├── validSubtree-0-0-0.json │ │ ├── validSubtree.json │ │ ├── validSubtreeBuffersWithoutBufferViews.json │ │ ├── validSubtreeImplicitTiling.json.input │ │ └── validSubtreeNoBuffers.json │ └── tilesets │ │ ├── assetTilesetVersionInvalidType.json │ │ ├── assetVersionInvalidType.json │ │ ├── assetVersionMissing.json │ │ ├── assetVersionUnknown.json │ │ ├── boundingVolumeBoxArrayInvalidElementType.json │ │ ├── boundingVolumeBoxInvalidArrayLength.json │ │ ├── boundingVolumeMissingProperty.json │ │ ├── boundingVolumeRegionArrayElementsOutOfRange.json │ │ ├── boundingVolumeRegionArrayInvalidElementType.json │ │ ├── boundingVolumeRegionInvalidArrayLength.json │ │ ├── boundingVolumeSphereArrayElementOutOfRange.json │ │ ├── boundingVolumeSphereArrayInvalidElementType.json │ │ ├── boundingVolumeSphereInvalidArrayLength.json │ │ ├── customSemanticsSchema.json │ │ ├── extensionFoundButNotUsed.json │ │ ├── extensionNotDeclaredAsRequired.json │ │ ├── extensionNotDeclared_1_0_glTF.json │ │ ├── extensionNotNecessary_1_1_glTF.json │ │ ├── extensionRequiredButNotUsed.json │ │ ├── extensionUsedButNotFound.json │ │ ├── extensionsInvalidType.json │ │ ├── extensionsRequiredDuplicateElement.json │ │ ├── extensionsRequiredInvalidArrayLength.json │ │ ├── extensionsRequiredInvalidType.json │ │ ├── extensionsUsedDuplicateElement.json │ │ ├── extensionsUsedInvalidArrayLength.json │ │ ├── extensionsUsedInvalidType.json │ │ ├── extensionsValueInvalidType.json │ │ ├── externalTilesetExtensions │ │ ├── README.md │ │ ├── declaredInBothContainedInExternal │ │ │ ├── external.json │ │ │ └── tileset.json │ │ ├── declaredInBothContainedInTileset │ │ │ ├── external.json │ │ │ └── tileset.json │ │ ├── declaredInExternalContainedInExternal │ │ │ ├── external.json │ │ │ └── tileset.json │ │ ├── declaredInExternalContainedInTileset │ │ │ ├── external.json │ │ │ └── tileset.json │ │ ├── declaredInNoneContainedInExternal │ │ │ ├── external.json │ │ │ └── tileset.json │ │ ├── declaredInTilesetContainedInExternal │ │ │ ├── external.json │ │ │ └── tileset.json │ │ └── declaredInTilesetContainedInTileset │ │ │ ├── external.json │ │ │ └── tileset.json │ │ ├── extrasUnexpectedType.json │ │ ├── groupClassIdInvalid.json │ │ ├── groupClassIdInvalidType.json │ │ ├── groupWithoutSchema.json │ │ ├── implicitTilingAvailableLevelsInvalidType.json │ │ ├── implicitTilingAvailableLevelsInvalidValue.json │ │ ├── implicitTilingContentUriTemplateVariableInvalid.json │ │ ├── implicitTilingContentsUriTemplateVariableInvalid.json │ │ ├── implicitTilingInvalidType.json │ │ ├── implicitTilingRootWithChildren.json │ │ ├── implicitTilingRootWithContentBoundingVolume.json │ │ ├── implicitTilingRootWithMetadata.json │ │ ├── implicitTilingSubdivisionSchemeInvalidType.json │ │ ├── implicitTilingSubdivisionSchemeInvalidValue.json │ │ ├── implicitTilingSubtreeLevelsInvalidType.json │ │ ├── implicitTilingSubtreeLevelsInvalidValue.json │ │ ├── implicitTilingSubtreesInvalidType.json │ │ ├── implicitTilingSubtreesUriInvalidType.json │ │ ├── implicitTilingSubtreesUriMissing.json │ │ ├── implicitTilingSubtreesUriTemplateVariableInvalid.json │ │ ├── implicitTilingSubtreesUriTemplateVariableMissing.json │ │ ├── implicitTilingValid.json │ │ ├── implicitTilingWithBoundingSphere.json │ │ ├── invalidJson.json │ │ ├── packages │ │ ├── tilesetPackageWithWarnings.3dtiles │ │ ├── tilesetPackageWithWarnings.3tz │ │ ├── tilesetPackageWithWarnings │ │ │ ├── TriangleWithWarnings │ │ │ │ ├── TriangleWithWarnings.gltf │ │ │ │ └── simpleTriangle.bin │ │ │ └── tileset.json │ │ ├── validTilesetPackage.3dtiles │ │ ├── validTilesetPackage.3tz │ │ ├── validTilesetPackage │ │ │ ├── Triangle │ │ │ │ ├── Triangle.gltf │ │ │ │ └── simpleTriangle.bin │ │ │ └── tileset.json │ │ ├── validTilesetPackageZipped.3dtiles │ │ └── validTilesetPackageZipped.3tz │ │ ├── propertiesInvalidType.json │ │ ├── propertiesMaximumInvalidType.json │ │ ├── propertiesMaximumMissing.json │ │ ├── propertiesMinimumInvalidType.json │ │ ├── propertiesMinimumLargerThanMaximum.json │ │ ├── propertiesMinimumMissing.json │ │ ├── statisticsClassesIdInvalid.json │ │ ├── statisticsClassesInvalidType.json │ │ ├── statisticsClassesMinPropertiesMismatch.json │ │ ├── statisticsClassesPropertiesMinPropertiesMismatch.json │ │ ├── statisticsClassesPropertiesPropertyNameInvalid.json │ │ ├── statisticsClassesValueInvalidType.json │ │ ├── statisticsClassesWithoutSchema.json │ │ ├── tileChildrenEmptyArray.json │ │ ├── tileContentBoundingVolumeInvalidType.json │ │ ├── tileContentBoundingVolumeNotInTileBoundingVolume.json │ │ ├── tileContentBoundingVolumeWithRotationTransform.json │ │ ├── tileContentBoundingVolumeWithTransform.json │ │ ├── tileContentGroupInvalidIndex.json │ │ ├── tileContentGroupInvalidType.json │ │ ├── tileContentGroupNegativeIndex.json │ │ ├── tileContentGroupWithoutTilesetGroups.json │ │ ├── tileContentInvalidType.json │ │ ├── tileContentsInvalidType.json │ │ ├── tileGeometricErrorMissing.json │ │ ├── tileGeometricErrorNegative.json │ │ ├── tileGeometricErrorNotSmallerThanParentGeometricError.json │ │ ├── tileInvalidType.json │ │ ├── tileMetadataClassInvalid.json │ │ ├── tileMetadataClassInvalidType.json │ │ ├── tileMetadataClassMissing.json │ │ ├── tileMetadataGeometricErrorInconsistent.json │ │ ├── tileMetadataRequiredPropertyMissing.json │ │ ├── tileMetadataRequiredPropertyNull.json │ │ ├── tileMetadataScalarValueNotInRange.json │ │ ├── tileMetadataVec3ArrayElementValueNotInRange.json │ │ ├── tileMetadataVec3ElementValueNotInRange.json │ │ ├── tileMetadataWithoutSchema.json │ │ ├── tileRefineInvalidValue.json │ │ ├── tileRefineMissingInRoot.json │ │ ├── tileRefineMissingInRootOfExternal.json │ │ ├── tileRefineMissingInRootOfExternalA.json │ │ ├── tileRefineWrongCase.json │ │ ├── tileRefineWrongType.json │ │ ├── tileTransformInvalidArrayElementType.json │ │ ├── tileTransformInvalidArrayLength.json │ │ ├── tileTransformInvalidType.json │ │ ├── tileTransformNonInvertible.json │ │ ├── tileTransformNotAffine.json │ │ ├── tileWithContentAndContents.json │ │ ├── tiles │ │ ├── 3tz │ │ │ ├── invalid.3tz │ │ │ ├── simple.3tz │ │ │ └── withError.3tz │ │ ├── Notes.txt │ │ ├── b3dm │ │ │ ├── invalid.b3dm │ │ │ ├── invalidAlignment.b3dm │ │ │ ├── invalidDueToWrongAlignmentWithGlbWithInfos.b3dm │ │ │ ├── valid.b3dm │ │ │ └── validWithInvalidGlb.b3dm │ │ ├── cmpt │ │ │ └── validWithGlbInfo.cmpt │ │ ├── geojson │ │ │ └── lineString.geojson │ │ ├── geom │ │ │ └── content.geom │ │ ├── glTF │ │ │ ├── Triangle │ │ │ │ ├── Triangle.gltf │ │ │ │ └── simpleTriangle.bin │ │ │ ├── TriangleGlbWithErrors │ │ │ │ └── TriangleGlbWithInvalidLength.glb │ │ │ ├── TriangleWithErrors │ │ │ │ ├── TriangleWithErrors.gltf │ │ │ │ └── simpleTriangle.bin │ │ │ └── TriangleWithWarnings │ │ │ │ ├── TriangleWithWarnings.gltf │ │ │ │ └── simpleTriangle.bin │ │ ├── i3dm │ │ │ ├── i3dmWithUri │ │ │ │ ├── Box.glb │ │ │ │ ├── README.md │ │ │ │ ├── i3dmWithUri.i3dm │ │ │ │ └── tileset.json │ │ │ └── invalid.i3dm │ │ ├── pnts │ │ │ └── invalid.pnts │ │ └── vctr │ │ │ └── parent.vctr │ │ ├── tilesetAssetMissing.json │ │ ├── tilesetGeometricErrorMissing.json │ │ ├── tilesetGeometricErrorNegative.json │ │ ├── tilesetMetadataEntityPropertyEnumInvalidValue.json │ │ ├── tilesetMetadataEntityPropertyMaxNotInRange.json │ │ ├── tilesetMetadataEntityPropertyMaxWithNormalizedNotInRange.json │ │ ├── tilesetMetadataEntityPropertyMaxWithOffsetNotInRange.json │ │ ├── tilesetMetadataEntityPropertyMaxWithScaleNotInRange.json │ │ ├── tilesetMetadataEntityPropertyMinNotInRange.json │ │ ├── tilesetMetadataEntityPropertyMinWithNormalizedNotInRange.json │ │ ├── tilesetMetadataEntityPropertyMinWithOffsetNotInRange.json │ │ ├── tilesetMetadataEntityPropertyMinWithScaleNotInRange.json │ │ ├── tilesetSchemaUriInvalidType.json │ │ ├── tilesetWithCycleA.json │ │ ├── tilesetWithCycleB.json │ │ ├── tilesetWithCycleC.json │ │ ├── tilesetWithMultipleExternal.json │ │ ├── tilesetWithMultipleExternalA.json │ │ ├── tilesetWithMultipleExternalA0.json │ │ ├── tilesetWithMultipleExternalA1.json │ │ ├── tilesetWithMultipleExternalB.json │ │ ├── tilesetWithSchemaAndSchemaUri.json │ │ ├── tilesetWithUnicodeBOM.json │ │ ├── validTileset.json │ │ ├── validTilesetWith3tzWithError.json │ │ ├── validTilesetWithCustomSemantics.json │ │ ├── validTilesetWithCustomSemanticsWithInvalidType.json │ │ ├── validTilesetWithExternalValidTilesetWithValidB3dmWithInvalidGlb.json │ │ ├── validTilesetWithGlbWithErrors.json │ │ ├── validTilesetWithGltfWithErrors.json │ │ ├── validTilesetWithGltfWithWarnings.json │ │ ├── validTilesetWithIB3dmWithInvalidAlignment.json │ │ ├── validTilesetWithInvalid3tz.json │ │ ├── validTilesetWithInvalidB3dm.json │ │ ├── validTilesetWithInvalidB3dmWithGlbWithInfos.json │ │ ├── validTilesetWithInvalidI3dm.json │ │ ├── validTilesetWithInvalidPnts.json │ │ ├── validTilesetWithInvalidSchemaFromUri.json │ │ ├── validTilesetWithSchema.json │ │ ├── validTilesetWithTileMetadata.json │ │ ├── validTilesetWithUnresolvableSchemaUri.json │ │ ├── validTilesetWithValid3tz.json │ │ ├── validTilesetWithValidB3dm.json │ │ ├── validTilesetWithValidB3dmWithInvalidGlb.json │ │ ├── validTilesetWithValidCmptWithGlbInfo.json │ │ ├── validTilesetWithValidGltf.json │ │ └── validTilesetWithValidSchemaFromUri.json ├── extensions │ ├── BoundingVolumeS2ValidationSpec.ts │ ├── ContentGltfValidationSpec.ts │ ├── MaxarContentGeojonValidationSpec.ts │ ├── MaxarExtentValidatorSpec.ts │ ├── MaxarGridValidationSpec.ts │ ├── MaxarGridValidatorSpec.ts │ ├── NgaGpmValidatorSpec.ts │ └── VriconClassValidationSpec.ts ├── gltfExtensions │ ├── ExtInstanceFeaturesValidationSpec.ts │ ├── ExtMeshFeaturesValidationSpec.ts │ ├── ExtStructuralMetadataValidationSpec.ts │ ├── ExtValidationSpec.ts │ ├── KhrLightsPunctualValidationSpec.ts │ ├── MaxarImageOrthoValidationSpec.ts │ ├── MaxarNonvisualGeometryValidationSpec.ts │ ├── MaxarTemporalLightTraits │ │ └── MaxarTemporalLightTraitsValidationSpec.ts │ ├── NgaGpmLocalValidationSpec.ts │ └── validateGltf.ts ├── jasmine.json └── metadata │ ├── BinaryPropertyTableValidationSpec.ts │ ├── BinaryPropertyTableValuesValidationSpec.ts │ ├── PropertyTableTestUtilities.ts │ └── PropertyTableValidationSpec.ts ├── src ├── ValidatorMain.ts ├── archives │ └── ArchiveValidation3tz.ts ├── base │ ├── ResourceError.ts │ ├── globMatcher.ts │ ├── readJsonUnchecked.ts │ └── writeUnchecked.ts ├── index.ts ├── issues │ ├── BinaryValidationIssues.ts │ ├── ContentValidationIssues.ts │ ├── GltfExtensionValidationIssues.ts │ ├── IoValidationIssue.ts │ ├── JsonValidationIssues.ts │ ├── MetadataValidationIssues.ts │ ├── SemanticValidationIssues.ts │ ├── StructureValidationIssues.ts │ ├── ValidationIssueUtils.ts │ └── ValidationIssues.ts ├── main.ts ├── tileFormats │ ├── B3dmValidator.ts │ ├── CmptValidator.ts │ ├── GeojsonValidator.ts │ ├── GltfValidator.ts │ ├── I3dmValidator.ts │ ├── PntsValidator.ts │ ├── TileFormatValidator.ts │ └── legacy │ │ ├── utility.ts │ │ ├── validateBatchTable.ts │ │ └── validateFeatureTable.ts └── validation │ ├── AssetValidator.ts │ ├── BasicValidator.ts │ ├── BinaryBufferStructureValidator.ts │ ├── BinaryValidator.ts │ ├── BoundingVolumeValidator.ts │ ├── ContentDataValidator.ts │ ├── ContentDataValidators.ts │ ├── ContentValidator.ts │ ├── ExtendedObjectsValidators.ts │ ├── ExtensionsDeclarationsValidator.ts │ ├── ImplicitTilingValidator.ts │ ├── NumberValidator.ts │ ├── PropertiesValidator.ts │ ├── RootPropertyValidator.ts │ ├── StatisticsClassValidator.ts │ ├── StatisticsValidator.ts │ ├── StringValidator.ts │ ├── StructureValidator.ts │ ├── SubtreeConsistencyValidator.ts │ ├── SubtreeInfoValidator.ts │ ├── SubtreeValidator.ts │ ├── TemplateUriValidator.ts │ ├── TileContentValidator.ts │ ├── TileValidator.ts │ ├── TilesetPackageValidator.ts │ ├── TilesetTraversingValidator.ts │ ├── TilesetValidator.ts │ ├── TransformValidator.ts │ ├── ValidatedElement.ts │ ├── ValidationContext.ts │ ├── ValidationContexts.ts │ ├── ValidationIssue.ts │ ├── ValidationIssueFilter.ts │ ├── ValidationIssueFilters.ts │ ├── ValidationIssueSeverity.ts │ ├── ValidationOptionChecks.ts │ ├── ValidationOptions.ts │ ├── ValidationResult.ts │ ├── ValidationResults.ts │ ├── ValidationState.ts │ ├── Validator.ts │ ├── Validators.ts │ ├── extensions │ ├── BoundingVolumeS2ValidationIssues.ts │ ├── BoundingVolumeS2Validator.ts │ ├── ContentGltfValidator.ts │ ├── MaxarContentGeojsonValidator.ts │ ├── MaxarExtentValidator.ts │ ├── MaxarGridValidator.ts │ ├── NgaGpmValidator.ts │ ├── gpm │ │ ├── NgaGpmValidationIssues.ts │ │ └── NgaGpmValidatorCommon.ts │ └── maxar │ │ └── MaxarValidatorCommon.ts │ ├── gltf │ ├── Accessors.ts │ ├── GltfData.ts │ ├── GltfDataReader.ts │ ├── GltfExtensionValidators.ts │ ├── ImageData.ts │ ├── ImageDataReader.ts │ ├── SamplerValidator.ts │ ├── TextureValidator.ts │ ├── gpmLocal │ │ └── NgaGpmLocalValidator.ts │ ├── imageOrtho │ │ └── MaxarImageOrthoValidator.ts │ ├── instanceFeatures │ │ └── ExtInstanceFeaturesValidator.ts │ ├── lightsPunctual │ │ ├── KhrLightsPunctualValidator.ts │ │ └── MaxarTemporalLightTraits │ │ │ └── MaxarTemporalLightTraitsValidator.ts │ ├── meshFeatures │ │ ├── ExtMeshFeaturesValidator.ts │ │ ├── FeatureIdAccessorValidator.ts │ │ └── FeatureIdValidator.ts │ ├── nonvisualGeometry │ │ └── MaxarNonvisualGeometryValidator.ts │ └── structuralMetadata │ │ ├── ExtStructuralMetadataValidator.ts │ │ ├── PropertyAttributePropertyModel.ts │ │ ├── PropertyAttributePropertyValidator.ts │ │ ├── PropertyAttributeValidator.ts │ │ ├── PropertyAttributeValuesValidator.ts │ │ ├── PropertyAttributesDefinitionValidator.ts │ │ ├── PropertyTableDefinitionValidator.ts │ │ ├── PropertyTextureBooleanMetadataPropertyModel.ts │ │ ├── PropertyTextureEnumMetadataPropertyModel.ts │ │ ├── PropertyTextureMetadataPropertyModels.ts │ │ ├── PropertyTextureNumericMetadataPropertyModel.ts │ │ ├── PropertyTexturePropertyValidator.ts │ │ ├── PropertyTextureValidator.ts │ │ ├── PropertyTextureValuesValidator.ts │ │ └── PropertyTexturesDefinitionValidator.ts │ ├── legacy │ └── BoundingVolumeChecks.ts │ └── metadata │ ├── BinaryPropertyTableDefaultMetadataPropertyModel.ts │ ├── BinaryPropertyTableEnumMetadataPropertyModel.ts │ ├── BinaryPropertyTableValidator.ts │ ├── BinaryPropertyTableValuesValidator.ts │ ├── ClassPropertySemanticsValidator.ts │ ├── ClassPropertyValidator.ts │ ├── ClassPropertyValueValidator.ts │ ├── MetadataClassValidator.ts │ ├── MetadataEntityValidator.ts │ ├── MetadataEnumValidator.ts │ ├── MetadataPropertyModel.ts │ ├── MetadataPropertyValidator.ts │ ├── MetadataPropertyValuesValidator.ts │ ├── MetadataStructureValidator.ts │ ├── MetadataValidationUtilities.ts │ ├── MetadataValueValidationMessages.ts │ ├── MetadataValueValidator.ts │ ├── PropertyTablePropertyValidator.ts │ ├── PropertyTableValidator.ts │ ├── PropertyTablesDefinitionValidator.ts │ ├── RangeIterables.ts │ ├── SchemaDefinitionValidator.ts │ └── SchemaValidator.ts ├── tools └── README.md └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | /build 2 | /dist 3 | /etc 4 | generateThirdParty.js -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/.npmignore -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/.nycrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/CHANGES.md -------------------------------------------------------------------------------- /IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/IMPLEMENTATION.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/README.md -------------------------------------------------------------------------------- /ThirdParty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/ThirdParty.json -------------------------------------------------------------------------------- /api-extractor.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/api-extractor.jsonc -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/bin/README.md -------------------------------------------------------------------------------- /bin/main: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('./main.js') -------------------------------------------------------------------------------- /demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/demos/README.md -------------------------------------------------------------------------------- /demos/validationOptionsDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/demos/validationOptionsDemo.ts -------------------------------------------------------------------------------- /demos/validationResultDemos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/demos/validationResultDemos.ts -------------------------------------------------------------------------------- /etc/3d-tiles-validator.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/etc/3d-tiles-validator.api.md -------------------------------------------------------------------------------- /generateThirdParty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/generateThirdParty.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/package.json -------------------------------------------------------------------------------- /specs/BasicValidatorSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/BasicValidatorSpec.ts -------------------------------------------------------------------------------- /specs/BinaryBufferStructureSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/BinaryBufferStructureSpec.ts -------------------------------------------------------------------------------- /specs/ExternalTilesetExtensionsValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/ExternalTilesetExtensionsValidationSpec.ts -------------------------------------------------------------------------------- /specs/MetadataSchemaValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/MetadataSchemaValidationSpec.ts -------------------------------------------------------------------------------- /specs/SubtreeValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/SubtreeValidationSpec.ts -------------------------------------------------------------------------------- /specs/TilesetPackageValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/TilesetPackageValidationSpec.ts -------------------------------------------------------------------------------- /specs/TilesetValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/TilesetValidationSpec.ts -------------------------------------------------------------------------------- /specs/data/Samples/ImplicitTileMetadata/content/0/0/0.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/ImplicitTileMetadata/content/0/0/0.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/ImplicitTileMetadata/content/1/0/0.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/ImplicitTileMetadata/content/1/0/0.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/ImplicitTileMetadata/content/1/0/1.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/ImplicitTileMetadata/content/1/0/1.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/ImplicitTileMetadata/content/1/1/1.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/ImplicitTileMetadata/content/1/1/1.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/ImplicitTileMetadata/subtrees/1.1/0.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/ImplicitTileMetadata/subtrees/1.1/0.0.0.json -------------------------------------------------------------------------------- /specs/data/Samples/ImplicitTileMetadata/subtrees/shared.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/ImplicitTileMetadata/subtrees/shared.bin -------------------------------------------------------------------------------- /specs/data/Samples/ImplicitTileMetadata/tileset_1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/ImplicitTileMetadata/tileset_1.1.json -------------------------------------------------------------------------------- /specs/data/Samples/PaddingIssues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/PaddingIssues/README.md -------------------------------------------------------------------------------- /specs/data/Samples/PaddingIssues/llA.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/PaddingIssues/llA.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/PaddingIssues/llB.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/PaddingIssues/llB.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/PaddingIssues/llC.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/PaddingIssues/llC.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/PaddingIssues/llD.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/PaddingIssues/llD.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/PaddingIssues/llE.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/PaddingIssues/llE.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/PaddingIssues/tilesetA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/PaddingIssues/tilesetA.json -------------------------------------------------------------------------------- /specs/data/Samples/PaddingIssues/tilesetB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/PaddingIssues/tilesetB.json -------------------------------------------------------------------------------- /specs/data/Samples/PaddingIssues/tilesetC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/PaddingIssues/tilesetC.json -------------------------------------------------------------------------------- /specs/data/Samples/PaddingIssues/tilesetD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/PaddingIssues/tilesetD.json -------------------------------------------------------------------------------- /specs/data/Samples/PaddingIssues/tilesetE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/PaddingIssues/tilesetE.json -------------------------------------------------------------------------------- /specs/data/Samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/README.md -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/content/content_5__0_21.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/content/content_5__0_21.glb -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/content/content_5__10_31.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/content/content_5__10_31.glb -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/content/content_5__11_30.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/content/content_5__11_30.glb -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/content/content_5__12_25.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/content/content_5__12_25.glb -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/content/content_5__13_24.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/content/content_5__13_24.glb -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/content/content_5__14_27.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/content/content_5__14_27.glb -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/content/content_5__15_26.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/content/content_5__15_26.glb -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/content/content_5__16_5.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/content/content_5__16_5.glb -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/content/content_5__17_4.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/content/content_5__17_4.glb -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/content/content_5__18_7.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/content/content_5__18_7.glb -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/content/content_5__19_6.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/content/content_5__19_6.glb -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/content/content_5__1_20.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/content/content_5__1_20.glb -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/content/content_5__20_1.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/content/content_5__20_1.glb -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/content/content_5__21_0.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/content/content_5__21_0.glb -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/subtrees/0.0.0.subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/subtrees/0.0.0.subtree -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/subtrees/3.0.5.subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/subtrees/3.0.5.subtree -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/subtrees/3.1.4.subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/subtrees/3.1.4.subtree -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/subtrees/3.2.7.subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/subtrees/3.2.7.subtree -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/subtrees/3.3.6.subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/subtrees/3.3.6.subtree -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/subtrees/3.4.1.subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/subtrees/3.4.1.subtree -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/subtrees/3.5.0.subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/subtrees/3.5.0.subtree -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/subtrees/3.6.3.subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/subtrees/3.6.3.subtree -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/subtrees/3.7.2.subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/subtrees/3.7.2.subtree -------------------------------------------------------------------------------- /specs/data/Samples/SparseImplicitQuadtree/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/SparseImplicitQuadtree/tileset.json -------------------------------------------------------------------------------- /specs/data/Samples/TilesetGzipped/ll.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetGzipped/ll.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/TilesetGzipped/lr.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetGzipped/lr.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/TilesetGzipped/parent.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetGzipped/parent.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/TilesetGzipped/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetGzipped/tileset.json -------------------------------------------------------------------------------- /specs/data/Samples/TilesetGzipped/ul.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetGzipped/ul.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/TilesetGzipped/ur.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetGzipped/ur.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/TilesetOfTilesets/lr.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetOfTilesets/lr.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/TilesetOfTilesets/parent.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetOfTilesets/parent.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/TilesetOfTilesets/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetOfTilesets/tileset.json -------------------------------------------------------------------------------- /specs/data/Samples/TilesetOfTilesets/tileset2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetOfTilesets/tileset2.json -------------------------------------------------------------------------------- /specs/data/Samples/TilesetOfTilesets/tileset3/ll.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetOfTilesets/tileset3/ll.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/TilesetOfTilesets/tileset3/tileset3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetOfTilesets/tileset3/tileset3.json -------------------------------------------------------------------------------- /specs/data/Samples/TilesetOfTilesets/ul.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetOfTilesets/ul.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/TilesetOfTilesets/ur.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetOfTilesets/ur.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/TilesetOfTilesetsWithError/lr.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetOfTilesetsWithError/lr.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/TilesetOfTilesetsWithError/parent.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetOfTilesetsWithError/parent.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/TilesetOfTilesetsWithError/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetOfTilesetsWithError/tileset.json -------------------------------------------------------------------------------- /specs/data/Samples/TilesetOfTilesetsWithError/tileset2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetOfTilesetsWithError/tileset2.json -------------------------------------------------------------------------------- /specs/data/Samples/TilesetOfTilesetsWithError/tileset3/ll.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetOfTilesetsWithError/tileset3/ll.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/TilesetOfTilesetsWithError/ul.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetOfTilesetsWithError/ul.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/TilesetOfTilesetsWithError/ur.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetOfTilesetsWithError/ur.b3dm -------------------------------------------------------------------------------- /specs/data/Samples/TilesetWithFullMetadata/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/Samples/TilesetWithFullMetadata/tileset.json -------------------------------------------------------------------------------- /specs/data/buffers/bufferViewsElementBufferInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/bufferViewsElementBufferInvalidType.json -------------------------------------------------------------------------------- /specs/data/buffers/bufferViewsElementBufferInvalidValueA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/bufferViewsElementBufferInvalidValueA.json -------------------------------------------------------------------------------- /specs/data/buffers/bufferViewsElementBufferInvalidValueB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/bufferViewsElementBufferInvalidValueB.json -------------------------------------------------------------------------------- /specs/data/buffers/bufferViewsElementBufferInvalidValueC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/bufferViewsElementBufferInvalidValueC.json -------------------------------------------------------------------------------- /specs/data/buffers/bufferViewsElementByteLengthInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/bufferViewsElementByteLengthInvalidType.json -------------------------------------------------------------------------------- /specs/data/buffers/bufferViewsElementByteLengthInvalidValueA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/bufferViewsElementByteLengthInvalidValueA.json -------------------------------------------------------------------------------- /specs/data/buffers/bufferViewsElementByteLengthInvalidValueB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/bufferViewsElementByteLengthInvalidValueB.json -------------------------------------------------------------------------------- /specs/data/buffers/bufferViewsElementByteOffsetInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/bufferViewsElementByteOffsetInvalidType.json -------------------------------------------------------------------------------- /specs/data/buffers/bufferViewsElementByteOffsetInvalidValueA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/bufferViewsElementByteOffsetInvalidValueA.json -------------------------------------------------------------------------------- /specs/data/buffers/bufferViewsElementByteOffsetInvalidValueB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/bufferViewsElementByteOffsetInvalidValueB.json -------------------------------------------------------------------------------- /specs/data/buffers/bufferViewsElementExceedsBufferLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/bufferViewsElementExceedsBufferLength.json -------------------------------------------------------------------------------- /specs/data/buffers/bufferViewsElementInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/bufferViewsElementInvalidType.json -------------------------------------------------------------------------------- /specs/data/buffers/bufferViewsInvalidLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/bufferViewsInvalidLength.json -------------------------------------------------------------------------------- /specs/data/buffers/bufferViewsInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/bufferViewsInvalidType.json -------------------------------------------------------------------------------- /specs/data/buffers/buffersElementByteLengthInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/buffersElementByteLengthInvalidType.json -------------------------------------------------------------------------------- /specs/data/buffers/buffersElementByteLengthInvalidValueA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/buffersElementByteLengthInvalidValueA.json -------------------------------------------------------------------------------- /specs/data/buffers/buffersElementByteLengthInvalidValueB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/buffersElementByteLengthInvalidValueB.json -------------------------------------------------------------------------------- /specs/data/buffers/buffersElementByteLengthMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/buffersElementByteLengthMissing.json -------------------------------------------------------------------------------- /specs/data/buffers/buffersElementInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/buffersElementInvalidType.json -------------------------------------------------------------------------------- /specs/data/buffers/buffersElementNameInvalidLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/buffersElementNameInvalidLength.json -------------------------------------------------------------------------------- /specs/data/buffers/buffersElementNameInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/buffersElementNameInvalidType.json -------------------------------------------------------------------------------- /specs/data/buffers/buffersElementUriInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/buffersElementUriInvalidType.json -------------------------------------------------------------------------------- /specs/data/buffers/buffersElementUriMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/buffersElementUriMissing.json -------------------------------------------------------------------------------- /specs/data/buffers/buffersInvalidLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/buffersInvalidLength.json -------------------------------------------------------------------------------- /specs/data/buffers/buffersInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/buffers/buffersInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/boundingVolumeS2/s2AndInvalidBox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/boundingVolumeS2/s2AndInvalidBox.json -------------------------------------------------------------------------------- /specs/data/extensions/boundingVolumeS2/s2TokenInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/boundingVolumeS2/s2TokenInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/boundingVolumeS2/s2TokenInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/boundingVolumeS2/s2TokenInvalidValue.json -------------------------------------------------------------------------------- /specs/data/extensions/boundingVolumeS2/s2TokenMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/boundingVolumeS2/s2TokenMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/boundingVolumeS2/validTilesetWithS2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/boundingVolumeS2/validTilesetWithS2.json -------------------------------------------------------------------------------- /specs/data/extensions/contentGltf/validTileset_1_0_withGltf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/contentGltf/validTileset_1_0_withGltf.json -------------------------------------------------------------------------------- /specs/data/extensions/contentGltf/validTileset_1_1_withGltf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/contentGltf/validTileset_1_1_withGltf.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/collectionRecordCollectionIdMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/collectionRecordCollectionIdMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/collectionRecordPlatformIdMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/collectionRecordPlatformIdMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/collectionRecordSensorRecordsMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/collectionRecordSensorRecordsMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/correlationGroupGroupFlagsMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/correlationGroupGroupFlagsMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/correlationGroupGroupsParamsMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/correlationGroupGroupsParamsMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/correlationGroupParamsInvalidLengthA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/correlationGroupParamsInvalidLengthA.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/correlationGroupParamsInvalidLengthB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/correlationGroupParamsInvalidLengthB.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/covarUpperTriangleElementInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/covarUpperTriangleElementInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/covarUpperTriangleInvalidLengthA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/covarUpperTriangleInvalidLengthA.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/covarUpperTriangleInvalidLengthB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/covarUpperTriangleInvalidLengthB.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/extentInformationLsrLengthsMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/extentInformationLsrLengthsMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/extentInformationOriginInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/extentInformationOriginInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/extentInformationOriginMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/extentInformationOriginMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/idInformationDatasetIdInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/idInformationDatasetIdInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/idInformationDatasetIdMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/idInformationDatasetIdMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/lsrAxisUnitVectorsNotOrthogonalA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/lsrAxisUnitVectorsNotOrthogonalA.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/lsrAxisUnitVectorsNotOrthogonalB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/lsrAxisUnitVectorsNotOrthogonalB.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/lsrAxisUnitVectorsNotOrthogonalC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/lsrAxisUnitVectorsNotOrthogonalC.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/masterRecordIdInformationInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/masterRecordIdInformationInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/masterRecordIdInformationMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/masterRecordIdInformationMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/masterRecordImplementationMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/masterRecordImplementationMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/masterRecordModelCoordSystemMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/masterRecordModelCoordSystemMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/masterRecordVersionInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/masterRecordVersionInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/masterRecordVersionMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/masterRecordVersionMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/modelCoordSystemCrsEcefInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/modelCoordSystemCrsEcefInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/modelCoordSystemCrsEcefMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/modelCoordSystemCrsEcefMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/modelCoordSystemMcsTypeInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/modelCoordSystemMcsTypeInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/modelCoordSystemMcsTypeInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/modelCoordSystemMcsTypeInvalidValue.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/modelCoordSystemMcsTypeMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/modelCoordSystemMcsTypeMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/modelCoordSystemMcsTypeUtmWithOrigin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/modelCoordSystemMcsTypeUtmWithOrigin.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ngaGpmAnchorPointMetadataInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ngaGpmAnchorPointMetadataInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ngaGpmInterpolationParamsInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ngaGpmInterpolationParamsInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ngaGpmInterpolationParamsMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ngaGpmInterpolationParamsMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ngaGpmInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ngaGpmInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ngaGpmMasterRecordInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ngaGpmMasterRecordInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ngaGpmMasterRecordMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ngaGpmMasterRecordMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ngaGpmPpeManifestInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ngaGpmPpeManifestInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ngaGpmUnmodeledErrorRecordMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ngaGpmUnmodeledErrorRecordMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/point3dElementInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/point3dElementInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/point3dInvalidLengthA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/point3dInvalidLengthA.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/point3dInvalidLengthB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/point3dInvalidLengthB.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ppeManifestElementInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ppeManifestElementInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ppeManifestInvalidLengthA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ppeManifestInvalidLengthA.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ppeManifestInvalidLengthB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ppeManifestInvalidLengthB.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ppeMetadataMaxInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ppeMetadataMaxInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ppeMetadataMinInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ppeMetadataMinInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ppeMetadataSourceInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ppeMetadataSourceInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ppeMetadataSourceMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ppeMetadataSourceMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/ppeMetadataSourceValuesNotUnique.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/ppeMetadataSourceValuesNotUnique.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/referenceDateTimeNotIso8601A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/referenceDateTimeNotIso8601A.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/referenceDateTimeNotIso8601B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/referenceDateTimeNotIso8601B.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/referenceDateTimeNotIso8601C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/referenceDateTimeNotIso8601C.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/referenceDateTimeNotIso8601D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/referenceDateTimeNotIso8601D.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/referenceSystemDefinitionMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/referenceSystemDefinitionMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/referenceSystemEpochInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/referenceSystemEpochInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/referenceSystemEpochMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/referenceSystemEpochMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/referenceSystemNameInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/referenceSystemNameInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/referenceSystemNameMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/referenceSystemNameMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/referenceSystemOrgWithIdInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/referenceSystemOrgWithIdInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/referenceSystemOrgWithIdMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/referenceSystemOrgWithIdMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/rotationThetasElementInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/rotationThetasElementInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/rotationThetasInvalidLengthA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/rotationThetasInvalidLengthA.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/rotationThetasInvalidLengthB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/rotationThetasInvalidLengthB.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/sensorRecordSensorIdInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/sensorRecordSensorIdInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/sensorRecordSensorIdMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/sensorRecordSensorIdMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/sensorRecordSensorModeInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/sensorRecordSensorModeInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/sensorRecordSensorModeMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/sensorRecordSensorModeMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/sensorRecordSensorTypeInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/sensorRecordSensorTypeInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/sensorRecordSensorTypeMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/sensorRecordSensorTypeMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/sensorRecordsSensorModeMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/sensorRecordsSensorModeMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/sensorRecordsSensorTypeInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/sensorRecordsSensorTypeInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/sensorRecordsSensorTypeMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/sensorRecordsSensorTypeMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/spdcfAInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/spdcfAInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/spdcfAInvalidValueA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/spdcfAInvalidValueA.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/spdcfAInvalidValueB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/spdcfAInvalidValueB.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/spdcfAMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/spdcfAMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/spdcfAlphaInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/spdcfAlphaInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/spdcfAlphaInvalidValueA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/spdcfAlphaInvalidValueA.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/spdcfAlphaInvalidValueB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/spdcfAlphaInvalidValueB.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/spdcfAlphaMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/spdcfAlphaMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/spdcfBetaInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/spdcfBetaInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/spdcfBetaInvalidValueA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/spdcfBetaInvalidValueA.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/spdcfBetaInvalidValueB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/spdcfBetaInvalidValueB.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/spdcfBetaMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/spdcfBetaMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/spdcfTInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/spdcfTInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/spdcfTInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/spdcfTInvalidValue.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/spdcfTMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/spdcfTMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/threeDimConformalParamsFlagsMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/threeDimConformalParamsFlagsMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/unitVectorInvalidElementValueA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/unitVectorInvalidElementValueA.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/unitVectorInvalidElementValueB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/unitVectorInvalidElementValueB.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/unitVectorInvalidLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/unitVectorInvalidLength.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/unitVectorNotUnitLengthA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/unitVectorNotUnitLengthA.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/unitVectorNotUnitLengthB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/unitVectorNotUnitLengthB.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/unmodeledErrorCorrParamsInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/unmodeledErrorCorrParamsInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/unmodeledErrorCorrParamsMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/unmodeledErrorCorrParamsMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/unmodeledErrorPostCovarianceMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/unmodeledErrorPostCovarianceMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/unmodeledErrorPostPositionMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/unmodeledErrorPostPositionMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/unmodeledErrorPostsInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/unmodeledErrorPostsInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/unmodeledErrorPostsMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/unmodeledErrorPostsMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/unmodeledErrorUniqueIdInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/unmodeledErrorUniqueIdInvalidType.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/unmodeledErrorUniqueIdMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/unmodeledErrorUniqueIdMissing.json -------------------------------------------------------------------------------- /specs/data/extensions/gpm/validTileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/gpm/validTileset.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarContentGeojson/bareGeometryTileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarContentGeojson/bareGeometryTileset.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarContentGeojson/bare_geometry.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarContentGeojson/bare_geometry.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarContentGeojson/content_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarContentGeojson/content_schema.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarContentGeojson/invalid.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarContentGeojson/invalid.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarContentGeojson/invalidMinMaxTileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarContentGeojson/invalidMinMaxTileset.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarContentGeojson/invalidSchemaContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarContentGeojson/invalidSchemaContent.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarContentGeojson/invalidUriFormat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarContentGeojson/invalidUriFormat.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarContentGeojson/lineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarContentGeojson/lineString.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarContentGeojson/nonExistentSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarContentGeojson/nonExistentSchema.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarContentGeojson/test_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarContentGeojson/test_schema.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarContentGeojson/vegetation_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarContentGeojson/vegetation_schema.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/collinearOverlap.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/collinearOverlap.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/collinearOverlapTileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/collinearOverlapTileset.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/extent.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/extent.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/extentOverflowingTileTileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/extentOverflowingTileTileset.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/extent_overflowing_tile.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/extent_overflowing_tile.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/insufficientCoordinates.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/insufficientCoordinates.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/internalTouchRing.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/internalTouchRing.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/internalTouchRingTileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/internalTouchRingTileset.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/invalidEmptyUri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/invalidEmptyUri.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/invalidGeojsonContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/invalidGeojsonContent.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/invalidGeometryTypes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/invalidGeometryTypes.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/invalidGeometryTypesTileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/invalidGeometryTypesTileset.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/invalidMissingUri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/invalidMissingUri.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/invalidNonResolvableUri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/invalidNonResolvableUri.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/invalidSpatialExtent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/invalidSpatialExtent.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/invalidUriType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/invalidUriType.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/invalid_extent.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/invalid_extent.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/large_extent.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/large_extent.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/nearMiss.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/nearMiss.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/nearMissTileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/nearMissTileset.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/nearVertexOnOtherSideFail.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/nearVertexOnOtherSideFail.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/nearVertexOnOtherSideOk.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/nearVertexOnOtherSideOk.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/overlappingRings.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/overlappingRings.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/overlappingRingsTileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/overlappingRingsTileset.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/selfIntersecting.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/selfIntersecting.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/selfIntersectingTileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/selfIntersectingTileset.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/small_extent.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/small_extent.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/trueCrossing.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/trueCrossing.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/trueCrossingTileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/trueCrossingTileset.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/validPolygonsOnly.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/validPolygonsOnly.geojson -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/validPolygonsOnlyTileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/validPolygonsOnlyTileset.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarExtent/validTilesetWithMaxarExtent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarExtent/validTilesetWithMaxarExtent.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/invalidBoundingBoxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/invalidBoundingBoxLength.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/invalidBoundingBoxSemantics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/invalidBoundingBoxSemantics.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/invalidCenterLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/invalidCenterLength.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/invalidCoordinateSystemType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/invalidCoordinateSystemType.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/invalidCoordinateSystemValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/invalidCoordinateSystemValue.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/invalidElevation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/invalidElevation.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/invalidGridType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/invalidGridType.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/invalidIndexLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/invalidIndexLength.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/invalidS2GridWithCenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/invalidS2GridWithCenter.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/invalidS2GridWithSize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/invalidS2GridWithSize.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/invalidS2GridWithSrs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/invalidS2GridWithSrs.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/invalidSizeLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/invalidSizeLength.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/invalidSrsReferenceSystem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/invalidSrsReferenceSystem.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/invalidTileLevel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/invalidTileLevel.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/validS2Grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/validS2Grid.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/validTilesetWithMaxarGrid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/validTilesetWithMaxarGrid.json -------------------------------------------------------------------------------- /specs/data/extensions/maxarGrid/validTilesetWithVriconGrid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/maxarGrid/validTilesetWithVriconGrid.json -------------------------------------------------------------------------------- /specs/data/extensions/vriconClass/validTilesetWithVriconClass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/extensions/vriconClass/validTilesetWithVriconClass.json -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/ValidGltfGpmLocal.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/ValidGltfGpmLocal.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/ValidMeshPrimitiveGpmLocal.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/ValidMeshPrimitiveGpmLocal.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/ppeMetadataMaxInvalidType.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/ppeMetadataMaxInvalidType.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/ppeMetadataMinInvalidType.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/ppeMetadataMinInvalidType.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/ppeTextureIndexInvalidType.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/ppeTextureIndexInvalidType.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/ppeTextureIndexInvalidValue.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/ppeTextureIndexInvalidValue.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/ppeTextureNoDataInvalidType.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/ppeTextureNoDataInvalidType.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/ppeTextureOffsetInvalidType.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/ppeTextureOffsetInvalidType.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/ppeTextureScaleInvalidType.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/ppeTextureScaleInvalidType.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/ppeTextureTraitsInvalidType.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/ppeTextureTraitsInvalidType.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/ppeTextureTraitsMissing.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/ppeTextureTraitsMissing.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/ppeTexturesInvalidLength.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/ppeTexturesInvalidLength.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/ppeTexturesInvalidType.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/ppeTexturesInvalidType.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/spdcfAInvalidType.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/spdcfAInvalidType.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/spdcfAInvalidValueA.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/spdcfAInvalidValueA.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/spdcfAInvalidValueB.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/spdcfAInvalidValueB.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/spdcfAMissing.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/spdcfAMissing.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/spdcfAlphaInvalidType.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/spdcfAlphaInvalidType.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/spdcfAlphaInvalidValueA.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/spdcfAlphaInvalidValueA.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/spdcfAlphaInvalidValueB.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/spdcfAlphaInvalidValueB.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/spdcfAlphaMissing.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/spdcfAlphaMissing.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/spdcfBetaInvalidType.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/spdcfBetaInvalidType.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/spdcfBetaInvalidValueA.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/spdcfBetaInvalidValueA.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/spdcfBetaInvalidValueB.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/spdcfBetaInvalidValueB.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/spdcfBetaMissing.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/spdcfBetaMissing.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/spdcfTInvalidType.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/spdcfTInvalidType.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/spdcfTInvalidValue.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/spdcfTInvalidValue.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/spdcfTMissing.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/spdcfTMissing.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/storageTypeInvalidValue.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/storageTypeInvalidValue.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/gpmLocal/storageTypeMissing.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/gpmLocal/storageTypeMissing.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/maxarImageOrtho/invalidMissingSrs.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/maxarImageOrtho/invalidMissingSrs.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/maxarImageOrtho/validMaxarImageOrtho.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/maxarImageOrtho/validMaxarImageOrtho.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/meshFeatures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/meshFeatures/README.md -------------------------------------------------------------------------------- /specs/data/gltfExtensions/meshFeatures/ValidFeatureIdAttribute.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/meshFeatures/ValidFeatureIdAttribute.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/meshFeatures/ValidFeatureIdTexture.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/meshFeatures/ValidFeatureIdTexture.glb -------------------------------------------------------------------------------- /specs/data/gltfExtensions/meshFeatures/ValidFeatureIdTexture.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/meshFeatures/ValidFeatureIdTexture.gltf -------------------------------------------------------------------------------- /specs/data/gltfExtensions/structuralMetadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/gltfExtensions/structuralMetadata/README.md -------------------------------------------------------------------------------- /specs/data/propertyTables/propertiesInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertiesInvalidType.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertiesMinPropertiesMismatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertiesMinPropertiesMismatch.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyArrayOffsetTypeInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyArrayOffsetTypeInvalidType.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyArrayOffsetTypeInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyArrayOffsetTypeInvalidValue.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyArrayOffsetsInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyArrayOffsetsInvalidType.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyArrayOffsetsInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyArrayOffsetsInvalidValue.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyClassInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyClassInvalidType.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyClassInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyClassInvalidValue.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyCountInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyCountInvalidType.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyCountInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyCountInvalidValue.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyIdInvalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyIdInvalid.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyStringOffsetTypeInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyStringOffsetTypeInvalidType.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyStringOffsetTypeInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyStringOffsetTypeInvalidValue.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyStringOffsetsInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyStringOffsetsInvalidType.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyStringOffsetsInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyStringOffsetsInvalidValue.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyStringWithoutStringOffsets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyStringWithoutStringOffsets.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyValueMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyValueMissing.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyValuesInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyValuesInvalidType.json -------------------------------------------------------------------------------- /specs/data/propertyTables/propertyVariableLengthArrayWithMin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/propertyTables/propertyVariableLengthArrayWithMin.json -------------------------------------------------------------------------------- /specs/data/schemas/FullMetadataSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/FullMetadataSchema.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassDescriptionInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassDescriptionInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassNameInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassNameInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertiesDuplicateSemantics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertiesDuplicateSemantics.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertiesEmpty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertiesEmpty.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertiesNameInvalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertiesNameInvalid.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyArrayInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyArrayInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyComponentTypeMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyComponentTypeMissing.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyCountInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyCountInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyCountInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyCountInvalidValue.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyCountWithoutArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyCountWithoutArray.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyDefaultWithRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyDefaultWithRequired.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyDescriptionInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyDescriptionInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyEnumTypeForNonEnumType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyEnumTypeForNonEnumType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyEnumTypeInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyEnumTypeInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyEnumTypeNotFound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyEnumTypeNotFound.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyEnumTypeWithoutEnums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyEnumTypeWithoutEnums.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyMaxForNonNumericType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyMaxForNonNumericType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyMinForNonNumericType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyMinForNonNumericType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyNameInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyNameInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyNoDataForBoolean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyNoDataForBoolean.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyNoDataTypeMismatchA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyNoDataTypeMismatchA.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyNoDataTypeMismatchB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyNoDataTypeMismatchB.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyNoDataTypeMismatchC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyNoDataTypeMismatchC.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyNoDataWithRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyNoDataWithRequired.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyNormalizedInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyNormalizedInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyOffsetTypeMismatchA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyOffsetTypeMismatchA.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyOffsetTypeMismatchB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyOffsetTypeMismatchB.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyOffsetTypeMismatchC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyOffsetTypeMismatchC.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyOffsetTypeMismatchD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyOffsetTypeMismatchD.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyOffsetTypeMismatchE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyOffsetTypeMismatchE.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyOffsetTypeMismatchF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyOffsetTypeMismatchF.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyOffsetTypeMismatchG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyOffsetTypeMismatchG.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyRequiredInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyRequiredInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertySemanticArrayMismatchA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertySemanticArrayMismatchA.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertySemanticArrayMismatchB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertySemanticArrayMismatchB.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertySemanticCountMismatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertySemanticCountMismatch.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertySemanticGeneric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertySemanticGeneric.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertySemanticInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertySemanticInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertySemanticTypeMismatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertySemanticTypeMismatch.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertySemanticUnknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertySemanticUnknown.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyTypeInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyTypeInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyTypeInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyTypeInvalidValue.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassPropertyTypeMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassPropertyTypeMissing.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassesInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassesInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataClassesNameInvalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataClassesNameInvalid.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumDescriptionInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumDescriptionInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumNameInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumNameInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumValueDescriptionInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumValueDescriptionInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumValueNameInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumValueNameInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumValueNotInDefaultValueTypeRange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumValueNotInDefaultValueTypeRange.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumValueNotInValueTypeRange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumValueNotInValueTypeRange.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumValueTypeInvalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumValueTypeInvalid.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumValueTypeInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumValueTypeInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumValueTypeInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumValueTypeInvalidValue.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumValueValueInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumValueValueInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumValuesDuplicateName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumValuesDuplicateName.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumValuesDuplicateValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumValuesDuplicateValue.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumValuesEmpty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumValuesEmpty.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumValuesMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumValuesMissing.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumsInvalidName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumsInvalidName.json -------------------------------------------------------------------------------- /specs/data/schemas/metadataEnumsInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/metadataEnumsInvalidType.json -------------------------------------------------------------------------------- /specs/data/schemas/schemaIdInvalidType.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": 123.456 3 | } -------------------------------------------------------------------------------- /specs/data/schemas/schemaIdInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/schemaIdInvalidValue.json -------------------------------------------------------------------------------- /specs/data/schemas/schemaIdMissing.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /specs/data/schemas/validSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/schemas/validSchema.json -------------------------------------------------------------------------------- /specs/data/subtrees/binarySubtreeComputedLengthInvalid.subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/binarySubtreeComputedLengthInvalid.subtree -------------------------------------------------------------------------------- /specs/data/subtrees/binarySubtreeInvalidMagic.subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/binarySubtreeInvalidMagic.subtree -------------------------------------------------------------------------------- /specs/data/subtrees/binarySubtreeInvalidVersion.subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/binarySubtreeInvalidVersion.subtree -------------------------------------------------------------------------------- /specs/data/subtrees/binarySubtreeJsonInvalid.subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/binarySubtreeJsonInvalid.subtree -------------------------------------------------------------------------------- /specs/data/subtrees/binarySubtreeValid.subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/binarySubtreeValid.subtree -------------------------------------------------------------------------------- /specs/data/subtrees/subtreeBufferViewsWithoutBuffers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreeBufferViewsWithoutBuffers.json -------------------------------------------------------------------------------- /specs/data/subtrees/subtreeChildSubtreeAvailabilityInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreeChildSubtreeAvailabilityInvalidType.json -------------------------------------------------------------------------------- /specs/data/subtrees/subtreeChildSubtreeAvailabilityMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreeChildSubtreeAvailabilityMissing.json -------------------------------------------------------------------------------- /specs/data/subtrees/subtreeContentAvailabilityInvalidLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreeContentAvailabilityInvalidLength.json -------------------------------------------------------------------------------- /specs/data/subtrees/subtreeContentAvailabilityInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreeContentAvailabilityInvalidType.json -------------------------------------------------------------------------------- /specs/data/subtrees/subtreeContentMetadataInvalidLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreeContentMetadataInvalidLength.json -------------------------------------------------------------------------------- /specs/data/subtrees/subtreeContentMetadataInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreeContentMetadataInvalidType.json -------------------------------------------------------------------------------- /specs/data/subtrees/subtreePropertyTablesElementInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreePropertyTablesElementInvalidType.json -------------------------------------------------------------------------------- /specs/data/subtrees/subtreePropertyTablesInvalidLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreePropertyTablesInvalidLength.json -------------------------------------------------------------------------------- /specs/data/subtrees/subtreePropertyTablesInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreePropertyTablesInvalidType.json -------------------------------------------------------------------------------- /specs/data/subtrees/subtreeTileAvailabilityConstantInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreeTileAvailabilityConstantInvalidType.json -------------------------------------------------------------------------------- /specs/data/subtrees/subtreeTileAvailabilityInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreeTileAvailabilityInvalidType.json -------------------------------------------------------------------------------- /specs/data/subtrees/subtreeTileAvailabilityMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreeTileAvailabilityMissing.json -------------------------------------------------------------------------------- /specs/data/subtrees/subtreeTileMetadataInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreeTileMetadataInvalidType.json -------------------------------------------------------------------------------- /specs/data/subtrees/subtreeTileMetadataInvalidValueA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreeTileMetadataInvalidValueA.json -------------------------------------------------------------------------------- /specs/data/subtrees/subtreeTileMetadataInvalidValueB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/subtreeTileMetadataInvalidValueB.json -------------------------------------------------------------------------------- /specs/data/subtrees/validBuffer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/validBuffer.bin -------------------------------------------------------------------------------- /specs/data/subtrees/validSubtree-0-0-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/validSubtree-0-0-0.json -------------------------------------------------------------------------------- /specs/data/subtrees/validSubtree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/validSubtree.json -------------------------------------------------------------------------------- /specs/data/subtrees/validSubtreeBuffersWithoutBufferViews.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/validSubtreeBuffersWithoutBufferViews.json -------------------------------------------------------------------------------- /specs/data/subtrees/validSubtreeImplicitTiling.json.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/validSubtreeImplicitTiling.json.input -------------------------------------------------------------------------------- /specs/data/subtrees/validSubtreeNoBuffers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/subtrees/validSubtreeNoBuffers.json -------------------------------------------------------------------------------- /specs/data/tilesets/assetTilesetVersionInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/assetTilesetVersionInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/assetVersionInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/assetVersionInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/assetVersionMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/assetVersionMissing.json -------------------------------------------------------------------------------- /specs/data/tilesets/assetVersionUnknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/assetVersionUnknown.json -------------------------------------------------------------------------------- /specs/data/tilesets/boundingVolumeBoxArrayInvalidElementType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/boundingVolumeBoxArrayInvalidElementType.json -------------------------------------------------------------------------------- /specs/data/tilesets/boundingVolumeBoxInvalidArrayLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/boundingVolumeBoxInvalidArrayLength.json -------------------------------------------------------------------------------- /specs/data/tilesets/boundingVolumeMissingProperty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/boundingVolumeMissingProperty.json -------------------------------------------------------------------------------- /specs/data/tilesets/boundingVolumeRegionInvalidArrayLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/boundingVolumeRegionInvalidArrayLength.json -------------------------------------------------------------------------------- /specs/data/tilesets/boundingVolumeSphereArrayElementOutOfRange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/boundingVolumeSphereArrayElementOutOfRange.json -------------------------------------------------------------------------------- /specs/data/tilesets/boundingVolumeSphereInvalidArrayLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/boundingVolumeSphereInvalidArrayLength.json -------------------------------------------------------------------------------- /specs/data/tilesets/customSemanticsSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/customSemanticsSchema.json -------------------------------------------------------------------------------- /specs/data/tilesets/extensionFoundButNotUsed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/extensionFoundButNotUsed.json -------------------------------------------------------------------------------- /specs/data/tilesets/extensionNotDeclaredAsRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/extensionNotDeclaredAsRequired.json -------------------------------------------------------------------------------- /specs/data/tilesets/extensionNotDeclared_1_0_glTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/extensionNotDeclared_1_0_glTF.json -------------------------------------------------------------------------------- /specs/data/tilesets/extensionNotNecessary_1_1_glTF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/extensionNotNecessary_1_1_glTF.json -------------------------------------------------------------------------------- /specs/data/tilesets/extensionRequiredButNotUsed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/extensionRequiredButNotUsed.json -------------------------------------------------------------------------------- /specs/data/tilesets/extensionUsedButNotFound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/extensionUsedButNotFound.json -------------------------------------------------------------------------------- /specs/data/tilesets/extensionsInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/extensionsInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/extensionsRequiredDuplicateElement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/extensionsRequiredDuplicateElement.json -------------------------------------------------------------------------------- /specs/data/tilesets/extensionsRequiredInvalidArrayLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/extensionsRequiredInvalidArrayLength.json -------------------------------------------------------------------------------- /specs/data/tilesets/extensionsRequiredInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/extensionsRequiredInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/extensionsUsedDuplicateElement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/extensionsUsedDuplicateElement.json -------------------------------------------------------------------------------- /specs/data/tilesets/extensionsUsedInvalidArrayLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/extensionsUsedInvalidArrayLength.json -------------------------------------------------------------------------------- /specs/data/tilesets/extensionsUsedInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/extensionsUsedInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/extensionsValueInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/extensionsValueInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/externalTilesetExtensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/externalTilesetExtensions/README.md -------------------------------------------------------------------------------- /specs/data/tilesets/extrasUnexpectedType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/extrasUnexpectedType.json -------------------------------------------------------------------------------- /specs/data/tilesets/groupClassIdInvalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/groupClassIdInvalid.json -------------------------------------------------------------------------------- /specs/data/tilesets/groupClassIdInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/groupClassIdInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/groupWithoutSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/groupWithoutSchema.json -------------------------------------------------------------------------------- /specs/data/tilesets/implicitTilingAvailableLevelsInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/implicitTilingAvailableLevelsInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/implicitTilingAvailableLevelsInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/implicitTilingAvailableLevelsInvalidValue.json -------------------------------------------------------------------------------- /specs/data/tilesets/implicitTilingInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/implicitTilingInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/implicitTilingRootWithChildren.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/implicitTilingRootWithChildren.json -------------------------------------------------------------------------------- /specs/data/tilesets/implicitTilingRootWithMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/implicitTilingRootWithMetadata.json -------------------------------------------------------------------------------- /specs/data/tilesets/implicitTilingSubdivisionSchemeInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/implicitTilingSubdivisionSchemeInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/implicitTilingSubtreeLevelsInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/implicitTilingSubtreeLevelsInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/implicitTilingSubtreeLevelsInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/implicitTilingSubtreeLevelsInvalidValue.json -------------------------------------------------------------------------------- /specs/data/tilesets/implicitTilingSubtreesInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/implicitTilingSubtreesInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/implicitTilingSubtreesUriInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/implicitTilingSubtreesUriInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/implicitTilingSubtreesUriMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/implicitTilingSubtreesUriMissing.json -------------------------------------------------------------------------------- /specs/data/tilesets/implicitTilingValid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/implicitTilingValid.json -------------------------------------------------------------------------------- /specs/data/tilesets/implicitTilingWithBoundingSphere.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/implicitTilingWithBoundingSphere.json -------------------------------------------------------------------------------- /specs/data/tilesets/invalidJson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/invalidJson.json -------------------------------------------------------------------------------- /specs/data/tilesets/packages/tilesetPackageWithWarnings.3dtiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/packages/tilesetPackageWithWarnings.3dtiles -------------------------------------------------------------------------------- /specs/data/tilesets/packages/tilesetPackageWithWarnings.3tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/packages/tilesetPackageWithWarnings.3tz -------------------------------------------------------------------------------- /specs/data/tilesets/packages/validTilesetPackage.3dtiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/packages/validTilesetPackage.3dtiles -------------------------------------------------------------------------------- /specs/data/tilesets/packages/validTilesetPackage.3tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/packages/validTilesetPackage.3tz -------------------------------------------------------------------------------- /specs/data/tilesets/packages/validTilesetPackage/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/packages/validTilesetPackage/tileset.json -------------------------------------------------------------------------------- /specs/data/tilesets/packages/validTilesetPackageZipped.3dtiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/packages/validTilesetPackageZipped.3dtiles -------------------------------------------------------------------------------- /specs/data/tilesets/packages/validTilesetPackageZipped.3tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/packages/validTilesetPackageZipped.3tz -------------------------------------------------------------------------------- /specs/data/tilesets/propertiesInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/propertiesInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/propertiesMaximumInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/propertiesMaximumInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/propertiesMaximumMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/propertiesMaximumMissing.json -------------------------------------------------------------------------------- /specs/data/tilesets/propertiesMinimumInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/propertiesMinimumInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/propertiesMinimumLargerThanMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/propertiesMinimumLargerThanMaximum.json -------------------------------------------------------------------------------- /specs/data/tilesets/propertiesMinimumMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/propertiesMinimumMissing.json -------------------------------------------------------------------------------- /specs/data/tilesets/statisticsClassesIdInvalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/statisticsClassesIdInvalid.json -------------------------------------------------------------------------------- /specs/data/tilesets/statisticsClassesInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/statisticsClassesInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/statisticsClassesMinPropertiesMismatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/statisticsClassesMinPropertiesMismatch.json -------------------------------------------------------------------------------- /specs/data/tilesets/statisticsClassesValueInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/statisticsClassesValueInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/statisticsClassesWithoutSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/statisticsClassesWithoutSchema.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileChildrenEmptyArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileChildrenEmptyArray.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileContentBoundingVolumeInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileContentBoundingVolumeInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileContentBoundingVolumeWithTransform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileContentBoundingVolumeWithTransform.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileContentGroupInvalidIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileContentGroupInvalidIndex.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileContentGroupInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileContentGroupInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileContentGroupNegativeIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileContentGroupNegativeIndex.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileContentGroupWithoutTilesetGroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileContentGroupWithoutTilesetGroups.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileContentInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileContentInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileContentsInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileContentsInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileGeometricErrorMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileGeometricErrorMissing.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileGeometricErrorNegative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileGeometricErrorNegative.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileMetadataClassInvalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileMetadataClassInvalid.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileMetadataClassInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileMetadataClassInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileMetadataClassMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileMetadataClassMissing.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileMetadataGeometricErrorInconsistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileMetadataGeometricErrorInconsistent.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileMetadataRequiredPropertyMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileMetadataRequiredPropertyMissing.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileMetadataRequiredPropertyNull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileMetadataRequiredPropertyNull.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileMetadataScalarValueNotInRange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileMetadataScalarValueNotInRange.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileMetadataVec3ElementValueNotInRange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileMetadataVec3ElementValueNotInRange.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileMetadataWithoutSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileMetadataWithoutSchema.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileRefineInvalidValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileRefineInvalidValue.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileRefineMissingInRoot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileRefineMissingInRoot.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileRefineMissingInRootOfExternal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileRefineMissingInRootOfExternal.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileRefineMissingInRootOfExternalA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileRefineMissingInRootOfExternalA.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileRefineWrongCase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileRefineWrongCase.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileRefineWrongType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileRefineWrongType.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileTransformInvalidArrayElementType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileTransformInvalidArrayElementType.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileTransformInvalidArrayLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileTransformInvalidArrayLength.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileTransformInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileTransformInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileTransformNonInvertible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileTransformNonInvertible.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileTransformNotAffine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileTransformNotAffine.json -------------------------------------------------------------------------------- /specs/data/tilesets/tileWithContentAndContents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tileWithContentAndContents.json -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/3tz/invalid.3tz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/3tz/simple.3tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/3tz/simple.3tz -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/3tz/withError.3tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/3tz/withError.3tz -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/Notes.txt -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/b3dm/invalid.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/b3dm/invalid.b3dm -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/b3dm/invalidAlignment.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/b3dm/invalidAlignment.b3dm -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/b3dm/valid.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/b3dm/valid.b3dm -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/b3dm/validWithInvalidGlb.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/b3dm/validWithInvalidGlb.b3dm -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/cmpt/validWithGlbInfo.cmpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/cmpt/validWithGlbInfo.cmpt -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/geojson/lineString.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/geojson/lineString.geojson -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/geom/content.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/geom/content.geom -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/glTF/Triangle/Triangle.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/glTF/Triangle/Triangle.gltf -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/glTF/Triangle/simpleTriangle.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/glTF/Triangle/simpleTriangle.bin -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/i3dm/i3dmWithUri/Box.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/i3dm/i3dmWithUri/Box.glb -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/i3dm/i3dmWithUri/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/i3dm/i3dmWithUri/README.md -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/i3dm/i3dmWithUri/i3dmWithUri.i3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/i3dm/i3dmWithUri/i3dmWithUri.i3dm -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/i3dm/i3dmWithUri/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/i3dm/i3dmWithUri/tileset.json -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/i3dm/invalid.i3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/i3dm/invalid.i3dm -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/pnts/invalid.pnts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/pnts/invalid.pnts -------------------------------------------------------------------------------- /specs/data/tilesets/tiles/vctr/parent.vctr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tiles/vctr/parent.vctr -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetAssetMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetAssetMissing.json -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetGeometricErrorMissing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetGeometricErrorMissing.json -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetGeometricErrorNegative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetGeometricErrorNegative.json -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetMetadataEntityPropertyMaxNotInRange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetMetadataEntityPropertyMaxNotInRange.json -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetMetadataEntityPropertyMinNotInRange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetMetadataEntityPropertyMinNotInRange.json -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetSchemaUriInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetSchemaUriInvalidType.json -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetWithCycleA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetWithCycleA.json -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetWithCycleB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetWithCycleB.json -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetWithCycleC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetWithCycleC.json -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetWithMultipleExternal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetWithMultipleExternal.json -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetWithMultipleExternalA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetWithMultipleExternalA.json -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetWithMultipleExternalA0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetWithMultipleExternalA0.json -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetWithMultipleExternalA1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetWithMultipleExternalA1.json -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetWithMultipleExternalB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetWithMultipleExternalB.json -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetWithSchemaAndSchemaUri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetWithSchemaAndSchemaUri.json -------------------------------------------------------------------------------- /specs/data/tilesets/tilesetWithUnicodeBOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/tilesetWithUnicodeBOM.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTileset.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWith3tzWithError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWith3tzWithError.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithCustomSemantics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithCustomSemantics.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithGlbWithErrors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithGlbWithErrors.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithGltfWithErrors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithGltfWithErrors.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithGltfWithWarnings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithGltfWithWarnings.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithIB3dmWithInvalidAlignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithIB3dmWithInvalidAlignment.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithInvalid3tz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithInvalid3tz.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithInvalidB3dm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithInvalidB3dm.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithInvalidI3dm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithInvalidI3dm.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithInvalidPnts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithInvalidPnts.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithInvalidSchemaFromUri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithInvalidSchemaFromUri.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithSchema.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithTileMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithTileMetadata.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithUnresolvableSchemaUri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithUnresolvableSchemaUri.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithValid3tz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithValid3tz.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithValidB3dm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithValidB3dm.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithValidB3dmWithInvalidGlb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithValidB3dmWithInvalidGlb.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithValidCmptWithGlbInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithValidCmptWithGlbInfo.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithValidGltf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithValidGltf.json -------------------------------------------------------------------------------- /specs/data/tilesets/validTilesetWithValidSchemaFromUri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/data/tilesets/validTilesetWithValidSchemaFromUri.json -------------------------------------------------------------------------------- /specs/extensions/BoundingVolumeS2ValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/extensions/BoundingVolumeS2ValidationSpec.ts -------------------------------------------------------------------------------- /specs/extensions/ContentGltfValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/extensions/ContentGltfValidationSpec.ts -------------------------------------------------------------------------------- /specs/extensions/MaxarContentGeojonValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/extensions/MaxarContentGeojonValidationSpec.ts -------------------------------------------------------------------------------- /specs/extensions/MaxarExtentValidatorSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/extensions/MaxarExtentValidatorSpec.ts -------------------------------------------------------------------------------- /specs/extensions/MaxarGridValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/extensions/MaxarGridValidationSpec.ts -------------------------------------------------------------------------------- /specs/extensions/MaxarGridValidatorSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/extensions/MaxarGridValidatorSpec.ts -------------------------------------------------------------------------------- /specs/extensions/NgaGpmValidatorSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/extensions/NgaGpmValidatorSpec.ts -------------------------------------------------------------------------------- /specs/extensions/VriconClassValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/extensions/VriconClassValidationSpec.ts -------------------------------------------------------------------------------- /specs/gltfExtensions/ExtInstanceFeaturesValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/gltfExtensions/ExtInstanceFeaturesValidationSpec.ts -------------------------------------------------------------------------------- /specs/gltfExtensions/ExtMeshFeaturesValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/gltfExtensions/ExtMeshFeaturesValidationSpec.ts -------------------------------------------------------------------------------- /specs/gltfExtensions/ExtStructuralMetadataValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/gltfExtensions/ExtStructuralMetadataValidationSpec.ts -------------------------------------------------------------------------------- /specs/gltfExtensions/ExtValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/gltfExtensions/ExtValidationSpec.ts -------------------------------------------------------------------------------- /specs/gltfExtensions/KhrLightsPunctualValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/gltfExtensions/KhrLightsPunctualValidationSpec.ts -------------------------------------------------------------------------------- /specs/gltfExtensions/MaxarImageOrthoValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/gltfExtensions/MaxarImageOrthoValidationSpec.ts -------------------------------------------------------------------------------- /specs/gltfExtensions/MaxarNonvisualGeometryValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/gltfExtensions/MaxarNonvisualGeometryValidationSpec.ts -------------------------------------------------------------------------------- /specs/gltfExtensions/NgaGpmLocalValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/gltfExtensions/NgaGpmLocalValidationSpec.ts -------------------------------------------------------------------------------- /specs/gltfExtensions/validateGltf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/gltfExtensions/validateGltf.ts -------------------------------------------------------------------------------- /specs/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/jasmine.json -------------------------------------------------------------------------------- /specs/metadata/BinaryPropertyTableValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/metadata/BinaryPropertyTableValidationSpec.ts -------------------------------------------------------------------------------- /specs/metadata/BinaryPropertyTableValuesValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/metadata/BinaryPropertyTableValuesValidationSpec.ts -------------------------------------------------------------------------------- /specs/metadata/PropertyTableTestUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/metadata/PropertyTableTestUtilities.ts -------------------------------------------------------------------------------- /specs/metadata/PropertyTableValidationSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/specs/metadata/PropertyTableValidationSpec.ts -------------------------------------------------------------------------------- /src/ValidatorMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/ValidatorMain.ts -------------------------------------------------------------------------------- /src/archives/ArchiveValidation3tz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/archives/ArchiveValidation3tz.ts -------------------------------------------------------------------------------- /src/base/ResourceError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/base/ResourceError.ts -------------------------------------------------------------------------------- /src/base/globMatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/base/globMatcher.ts -------------------------------------------------------------------------------- /src/base/readJsonUnchecked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/base/readJsonUnchecked.ts -------------------------------------------------------------------------------- /src/base/writeUnchecked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/base/writeUnchecked.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/issues/BinaryValidationIssues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/issues/BinaryValidationIssues.ts -------------------------------------------------------------------------------- /src/issues/ContentValidationIssues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/issues/ContentValidationIssues.ts -------------------------------------------------------------------------------- /src/issues/GltfExtensionValidationIssues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/issues/GltfExtensionValidationIssues.ts -------------------------------------------------------------------------------- /src/issues/IoValidationIssue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/issues/IoValidationIssue.ts -------------------------------------------------------------------------------- /src/issues/JsonValidationIssues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/issues/JsonValidationIssues.ts -------------------------------------------------------------------------------- /src/issues/MetadataValidationIssues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/issues/MetadataValidationIssues.ts -------------------------------------------------------------------------------- /src/issues/SemanticValidationIssues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/issues/SemanticValidationIssues.ts -------------------------------------------------------------------------------- /src/issues/StructureValidationIssues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/issues/StructureValidationIssues.ts -------------------------------------------------------------------------------- /src/issues/ValidationIssueUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/issues/ValidationIssueUtils.ts -------------------------------------------------------------------------------- /src/issues/ValidationIssues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/issues/ValidationIssues.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/tileFormats/B3dmValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/tileFormats/B3dmValidator.ts -------------------------------------------------------------------------------- /src/tileFormats/CmptValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/tileFormats/CmptValidator.ts -------------------------------------------------------------------------------- /src/tileFormats/GeojsonValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/tileFormats/GeojsonValidator.ts -------------------------------------------------------------------------------- /src/tileFormats/GltfValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/tileFormats/GltfValidator.ts -------------------------------------------------------------------------------- /src/tileFormats/I3dmValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/tileFormats/I3dmValidator.ts -------------------------------------------------------------------------------- /src/tileFormats/PntsValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/tileFormats/PntsValidator.ts -------------------------------------------------------------------------------- /src/tileFormats/TileFormatValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/tileFormats/TileFormatValidator.ts -------------------------------------------------------------------------------- /src/tileFormats/legacy/utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/tileFormats/legacy/utility.ts -------------------------------------------------------------------------------- /src/tileFormats/legacy/validateBatchTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/tileFormats/legacy/validateBatchTable.ts -------------------------------------------------------------------------------- /src/tileFormats/legacy/validateFeatureTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/tileFormats/legacy/validateFeatureTable.ts -------------------------------------------------------------------------------- /src/validation/AssetValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/AssetValidator.ts -------------------------------------------------------------------------------- /src/validation/BasicValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/BasicValidator.ts -------------------------------------------------------------------------------- /src/validation/BinaryBufferStructureValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/BinaryBufferStructureValidator.ts -------------------------------------------------------------------------------- /src/validation/BinaryValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/BinaryValidator.ts -------------------------------------------------------------------------------- /src/validation/BoundingVolumeValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/BoundingVolumeValidator.ts -------------------------------------------------------------------------------- /src/validation/ContentDataValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ContentDataValidator.ts -------------------------------------------------------------------------------- /src/validation/ContentDataValidators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ContentDataValidators.ts -------------------------------------------------------------------------------- /src/validation/ContentValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ContentValidator.ts -------------------------------------------------------------------------------- /src/validation/ExtendedObjectsValidators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ExtendedObjectsValidators.ts -------------------------------------------------------------------------------- /src/validation/ExtensionsDeclarationsValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ExtensionsDeclarationsValidator.ts -------------------------------------------------------------------------------- /src/validation/ImplicitTilingValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ImplicitTilingValidator.ts -------------------------------------------------------------------------------- /src/validation/NumberValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/NumberValidator.ts -------------------------------------------------------------------------------- /src/validation/PropertiesValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/PropertiesValidator.ts -------------------------------------------------------------------------------- /src/validation/RootPropertyValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/RootPropertyValidator.ts -------------------------------------------------------------------------------- /src/validation/StatisticsClassValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/StatisticsClassValidator.ts -------------------------------------------------------------------------------- /src/validation/StatisticsValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/StatisticsValidator.ts -------------------------------------------------------------------------------- /src/validation/StringValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/StringValidator.ts -------------------------------------------------------------------------------- /src/validation/StructureValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/StructureValidator.ts -------------------------------------------------------------------------------- /src/validation/SubtreeConsistencyValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/SubtreeConsistencyValidator.ts -------------------------------------------------------------------------------- /src/validation/SubtreeInfoValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/SubtreeInfoValidator.ts -------------------------------------------------------------------------------- /src/validation/SubtreeValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/SubtreeValidator.ts -------------------------------------------------------------------------------- /src/validation/TemplateUriValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/TemplateUriValidator.ts -------------------------------------------------------------------------------- /src/validation/TileContentValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/TileContentValidator.ts -------------------------------------------------------------------------------- /src/validation/TileValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/TileValidator.ts -------------------------------------------------------------------------------- /src/validation/TilesetPackageValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/TilesetPackageValidator.ts -------------------------------------------------------------------------------- /src/validation/TilesetTraversingValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/TilesetTraversingValidator.ts -------------------------------------------------------------------------------- /src/validation/TilesetValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/TilesetValidator.ts -------------------------------------------------------------------------------- /src/validation/TransformValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/TransformValidator.ts -------------------------------------------------------------------------------- /src/validation/ValidatedElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ValidatedElement.ts -------------------------------------------------------------------------------- /src/validation/ValidationContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ValidationContext.ts -------------------------------------------------------------------------------- /src/validation/ValidationContexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ValidationContexts.ts -------------------------------------------------------------------------------- /src/validation/ValidationIssue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ValidationIssue.ts -------------------------------------------------------------------------------- /src/validation/ValidationIssueFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ValidationIssueFilter.ts -------------------------------------------------------------------------------- /src/validation/ValidationIssueFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ValidationIssueFilters.ts -------------------------------------------------------------------------------- /src/validation/ValidationIssueSeverity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ValidationIssueSeverity.ts -------------------------------------------------------------------------------- /src/validation/ValidationOptionChecks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ValidationOptionChecks.ts -------------------------------------------------------------------------------- /src/validation/ValidationOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ValidationOptions.ts -------------------------------------------------------------------------------- /src/validation/ValidationResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ValidationResult.ts -------------------------------------------------------------------------------- /src/validation/ValidationResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ValidationResults.ts -------------------------------------------------------------------------------- /src/validation/ValidationState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/ValidationState.ts -------------------------------------------------------------------------------- /src/validation/Validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/Validator.ts -------------------------------------------------------------------------------- /src/validation/Validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/Validators.ts -------------------------------------------------------------------------------- /src/validation/extensions/BoundingVolumeS2ValidationIssues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/extensions/BoundingVolumeS2ValidationIssues.ts -------------------------------------------------------------------------------- /src/validation/extensions/BoundingVolumeS2Validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/extensions/BoundingVolumeS2Validator.ts -------------------------------------------------------------------------------- /src/validation/extensions/ContentGltfValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/extensions/ContentGltfValidator.ts -------------------------------------------------------------------------------- /src/validation/extensions/MaxarContentGeojsonValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/extensions/MaxarContentGeojsonValidator.ts -------------------------------------------------------------------------------- /src/validation/extensions/MaxarExtentValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/extensions/MaxarExtentValidator.ts -------------------------------------------------------------------------------- /src/validation/extensions/MaxarGridValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/extensions/MaxarGridValidator.ts -------------------------------------------------------------------------------- /src/validation/extensions/NgaGpmValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/extensions/NgaGpmValidator.ts -------------------------------------------------------------------------------- /src/validation/extensions/gpm/NgaGpmValidationIssues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/extensions/gpm/NgaGpmValidationIssues.ts -------------------------------------------------------------------------------- /src/validation/extensions/gpm/NgaGpmValidatorCommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/extensions/gpm/NgaGpmValidatorCommon.ts -------------------------------------------------------------------------------- /src/validation/extensions/maxar/MaxarValidatorCommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/extensions/maxar/MaxarValidatorCommon.ts -------------------------------------------------------------------------------- /src/validation/gltf/Accessors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/gltf/Accessors.ts -------------------------------------------------------------------------------- /src/validation/gltf/GltfData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/gltf/GltfData.ts -------------------------------------------------------------------------------- /src/validation/gltf/GltfDataReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/gltf/GltfDataReader.ts -------------------------------------------------------------------------------- /src/validation/gltf/GltfExtensionValidators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/gltf/GltfExtensionValidators.ts -------------------------------------------------------------------------------- /src/validation/gltf/ImageData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/gltf/ImageData.ts -------------------------------------------------------------------------------- /src/validation/gltf/ImageDataReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/gltf/ImageDataReader.ts -------------------------------------------------------------------------------- /src/validation/gltf/SamplerValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/gltf/SamplerValidator.ts -------------------------------------------------------------------------------- /src/validation/gltf/TextureValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/gltf/TextureValidator.ts -------------------------------------------------------------------------------- /src/validation/gltf/gpmLocal/NgaGpmLocalValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/gltf/gpmLocal/NgaGpmLocalValidator.ts -------------------------------------------------------------------------------- /src/validation/gltf/imageOrtho/MaxarImageOrthoValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/gltf/imageOrtho/MaxarImageOrthoValidator.ts -------------------------------------------------------------------------------- /src/validation/gltf/lightsPunctual/KhrLightsPunctualValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/gltf/lightsPunctual/KhrLightsPunctualValidator.ts -------------------------------------------------------------------------------- /src/validation/gltf/meshFeatures/ExtMeshFeaturesValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/gltf/meshFeatures/ExtMeshFeaturesValidator.ts -------------------------------------------------------------------------------- /src/validation/gltf/meshFeatures/FeatureIdAccessorValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/gltf/meshFeatures/FeatureIdAccessorValidator.ts -------------------------------------------------------------------------------- /src/validation/gltf/meshFeatures/FeatureIdValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/gltf/meshFeatures/FeatureIdValidator.ts -------------------------------------------------------------------------------- /src/validation/gltf/structuralMetadata/PropertyTextureValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/gltf/structuralMetadata/PropertyTextureValidator.ts -------------------------------------------------------------------------------- /src/validation/legacy/BoundingVolumeChecks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/legacy/BoundingVolumeChecks.ts -------------------------------------------------------------------------------- /src/validation/metadata/BinaryPropertyTableValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/BinaryPropertyTableValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/BinaryPropertyTableValuesValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/BinaryPropertyTableValuesValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/ClassPropertySemanticsValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/ClassPropertySemanticsValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/ClassPropertyValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/ClassPropertyValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/ClassPropertyValueValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/ClassPropertyValueValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/MetadataClassValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/MetadataClassValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/MetadataEntityValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/MetadataEntityValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/MetadataEnumValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/MetadataEnumValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/MetadataPropertyModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/MetadataPropertyModel.ts -------------------------------------------------------------------------------- /src/validation/metadata/MetadataPropertyValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/MetadataPropertyValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/MetadataPropertyValuesValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/MetadataPropertyValuesValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/MetadataStructureValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/MetadataStructureValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/MetadataValidationUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/MetadataValidationUtilities.ts -------------------------------------------------------------------------------- /src/validation/metadata/MetadataValueValidationMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/MetadataValueValidationMessages.ts -------------------------------------------------------------------------------- /src/validation/metadata/MetadataValueValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/MetadataValueValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/PropertyTablePropertyValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/PropertyTablePropertyValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/PropertyTableValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/PropertyTableValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/PropertyTablesDefinitionValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/PropertyTablesDefinitionValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/RangeIterables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/RangeIterables.ts -------------------------------------------------------------------------------- /src/validation/metadata/SchemaDefinitionValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/SchemaDefinitionValidator.ts -------------------------------------------------------------------------------- /src/validation/metadata/SchemaValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/src/validation/metadata/SchemaValidator.ts -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/tools/README.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CesiumGS/3d-tiles-validator/HEAD/tsconfig.json --------------------------------------------------------------------------------