@credo-ts/core 0.6.1-pr-2091-20241119140918 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/assertClassBrand.mjs +10 -0
- package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/checkPrivateRedeclaration.mjs +9 -0
- package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/classPrivateFieldGet2.mjs +11 -0
- package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/classPrivateFieldInitSpec.mjs +11 -0
- package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/classPrivateFieldSet2.mjs +11 -0
- package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/decorate.mjs +12 -0
- package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/decorateMetadata.mjs +9 -0
- package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/decorateParam.mjs +11 -0
- package/build/_virtual/rolldown_runtime.mjs +20 -0
- package/build/agent/Agent.d.mts +23 -0
- package/build/agent/Agent.d.mts.map +1 -0
- package/build/agent/Agent.mjs +77 -0
- package/build/agent/Agent.mjs.map +1 -0
- package/build/agent/AgentConfig.d.mts +23 -0
- package/build/agent/AgentConfig.d.mts.map +1 -0
- package/build/agent/AgentConfig.mjs +37 -0
- package/build/agent/AgentConfig.mjs.map +1 -0
- package/build/agent/AgentDependencies.d.mts +16 -0
- package/build/agent/AgentDependencies.d.mts.map +1 -0
- package/build/agent/AgentModules.d.mts +102 -0
- package/build/agent/AgentModules.d.mts.map +1 -0
- package/build/agent/AgentModules.mjs +104 -0
- package/build/agent/AgentModules.mjs.map +1 -0
- package/build/agent/BaseAgent.d.mts +55 -0
- package/build/agent/BaseAgent.d.mts.map +1 -0
- package/build/agent/BaseAgent.mjs +68 -0
- package/build/agent/BaseAgent.mjs.map +1 -0
- package/build/agent/EventEmitter.d.mts +21 -0
- package/build/agent/EventEmitter.d.mts.map +1 -0
- package/build/agent/EventEmitter.mjs +43 -0
- package/build/agent/EventEmitter.mjs.map +1 -0
- package/build/agent/Events.d.mts +15 -0
- package/build/agent/Events.d.mts.map +1 -0
- package/build/agent/Events.mjs +14 -0
- package/build/agent/Events.mjs.map +1 -0
- package/build/agent/context/AgentContext.d.mts +50 -0
- package/build/agent/context/AgentContext.d.mts.map +1 -0
- package/build/agent/context/AgentContext.mjs +38 -0
- package/build/agent/context/AgentContext.mjs.map +1 -0
- package/build/agent/context/AgentContextProvider.d.mts +32 -0
- package/build/agent/context/AgentContextProvider.d.mts.map +1 -0
- package/build/agent/context/DefaultAgentContextProvider.d.mts +24 -0
- package/build/agent/context/DefaultAgentContextProvider.d.mts.map +1 -0
- package/build/agent/context/DefaultAgentContextProvider.mjs +36 -0
- package/build/agent/context/DefaultAgentContextProvider.mjs.map +1 -0
- package/build/agent/context/index.d.mts +3 -0
- package/build/agent/context/index.mjs +4 -0
- package/build/agent/index.d.mts +4 -0
- package/build/agent/index.mjs +5 -0
- package/build/constants.d.mts +13 -0
- package/build/constants.d.mts.map +1 -0
- package/build/constants.mjs +16 -0
- package/build/constants.mjs.map +1 -0
- package/build/crypto/JwsService.d.mts +82 -0
- package/build/crypto/JwsService.d.mts.map +1 -0
- package/build/crypto/JwsService.mjs +221 -0
- package/build/crypto/JwsService.mjs.map +1 -0
- package/build/crypto/JwsSigner.d.mts +29 -0
- package/build/crypto/JwsSigner.d.mts.map +1 -0
- package/build/crypto/JwsTypes.d.mts +58 -0
- package/build/crypto/JwsTypes.d.mts.map +1 -0
- package/build/crypto/JwsTypes.mjs +10 -0
- package/build/crypto/JwsTypes.mjs.map +1 -0
- package/build/crypto/KmsKeyPair.mjs +83 -0
- package/build/crypto/KmsKeyPair.mjs.map +1 -0
- package/build/crypto/hashes/Hasher.d.mts +10 -0
- package/build/crypto/hashes/Hasher.d.mts.map +1 -0
- package/build/crypto/hashes/Hasher.mjs +28 -0
- package/build/crypto/hashes/Hasher.mjs.map +1 -0
- package/build/crypto/hashes/IHash.d.mts +9 -0
- package/build/crypto/hashes/IHash.d.mts.map +1 -0
- package/build/crypto/hashes/Sha1.d.mts +10 -0
- package/build/crypto/hashes/Sha1.d.mts.map +1 -0
- package/build/crypto/hashes/Sha1.mjs +14 -0
- package/build/crypto/hashes/Sha1.mjs.map +1 -0
- package/build/crypto/hashes/Sha256.d.mts +10 -0
- package/build/crypto/hashes/Sha256.d.mts.map +1 -0
- package/build/crypto/hashes/Sha256.mjs +14 -0
- package/build/crypto/hashes/Sha256.mjs.map +1 -0
- package/build/crypto/hashes/Sha384.d.mts +10 -0
- package/build/crypto/hashes/Sha384.d.mts.map +1 -0
- package/build/crypto/hashes/Sha384.mjs +14 -0
- package/build/crypto/hashes/Sha384.mjs.map +1 -0
- package/build/crypto/hashes/Sha512.d.mts +10 -0
- package/build/crypto/hashes/Sha512.d.mts.map +1 -0
- package/build/crypto/hashes/Sha512.mjs +14 -0
- package/build/crypto/hashes/Sha512.mjs.map +1 -0
- package/build/crypto/hashes/index.d.mts +5 -0
- package/build/crypto/hashes/index.mjs +7 -0
- package/build/crypto/index.d.mts +17 -0
- package/build/crypto/index.mjs +16 -0
- package/build/crypto/jose/index.d.mts +3 -0
- package/build/crypto/jose/index.mjs +5 -0
- package/build/crypto/jose/jwt/Jwt.d.mts +29 -0
- package/build/crypto/jose/jwt/Jwt.d.mts.map +1 -0
- package/build/crypto/jose/jwt/Jwt.mjs +38 -0
- package/build/crypto/jose/jwt/Jwt.mjs.map +1 -0
- package/build/crypto/jose/jwt/JwtPayload.d.mts +105 -0
- package/build/crypto/jose/jwt/JwtPayload.d.mts.map +1 -0
- package/build/crypto/jose/jwt/JwtPayload.mjs +87 -0
- package/build/crypto/jose/jwt/JwtPayload.mjs.map +1 -0
- package/build/crypto/jose/jwt/index.d.mts +2 -0
- package/build/crypto/jose/jwt/index.mjs +4 -0
- package/build/crypto/webcrypto/CredoSubtle.d.mts +10 -0
- package/build/crypto/webcrypto/CredoSubtle.d.mts.map +1 -0
- package/build/crypto/webcrypto/CredoSubtle.mjs +23 -0
- package/build/crypto/webcrypto/CredoSubtle.mjs.map +1 -0
- package/build/crypto/webcrypto/CredoWalletWebCrypto.d.mts +42 -0
- package/build/crypto/webcrypto/CredoWalletWebCrypto.d.mts.map +1 -0
- package/build/crypto/webcrypto/CredoWalletWebCrypto.mjs +85 -0
- package/build/crypto/webcrypto/CredoWalletWebCrypto.mjs.map +1 -0
- package/build/crypto/webcrypto/CredoWebCrypto.d.mts +16 -0
- package/build/crypto/webcrypto/CredoWebCrypto.d.mts.map +1 -0
- package/build/crypto/webcrypto/CredoWebCrypto.mjs +26 -0
- package/build/crypto/webcrypto/CredoWebCrypto.mjs.map +1 -0
- package/build/crypto/webcrypto/CredoWebCryptoError.mjs +11 -0
- package/build/crypto/webcrypto/CredoWebCryptoError.mjs.map +1 -0
- package/build/crypto/webcrypto/CredoWebCryptoKey.d.mts +17 -0
- package/build/crypto/webcrypto/CredoWebCryptoKey.d.mts.map +1 -0
- package/build/crypto/webcrypto/CredoWebCryptoKey.mjs +20 -0
- package/build/crypto/webcrypto/CredoWebCryptoKey.mjs.map +1 -0
- package/build/crypto/webcrypto/algorithmIdentifiers.mjs +62 -0
- package/build/crypto/webcrypto/algorithmIdentifiers.mjs.map +1 -0
- package/build/crypto/webcrypto/index.d.mts +5 -0
- package/build/crypto/webcrypto/index.mjs +6 -0
- package/build/crypto/webcrypto/providers/CredoEcdsaProvider.mjs +40 -0
- package/build/crypto/webcrypto/providers/CredoEcdsaProvider.mjs.map +1 -0
- package/build/crypto/webcrypto/providers/CredoEd25519Provider.mjs +40 -0
- package/build/crypto/webcrypto/providers/CredoEd25519Provider.mjs.map +1 -0
- package/build/crypto/webcrypto/providers/CredoSha1Provider.mjs +24 -0
- package/build/crypto/webcrypto/providers/CredoSha1Provider.mjs.map +1 -0
- package/build/crypto/webcrypto/providers/CredoSha256Provider.mjs +24 -0
- package/build/crypto/webcrypto/providers/CredoSha256Provider.mjs.map +1 -0
- package/build/crypto/webcrypto/providers/index.mjs +5 -0
- package/build/crypto/webcrypto/types.d.mts +62 -0
- package/build/crypto/webcrypto/types.d.mts.map +1 -0
- package/build/crypto/webcrypto/types.mjs +68 -0
- package/build/crypto/webcrypto/types.mjs.map +1 -0
- package/build/crypto/webcrypto/utils/index.d.mts +1 -0
- package/build/crypto/webcrypto/utils/index.mjs +3 -0
- package/build/crypto/webcrypto/utils/keyAlgorithmConversion.d.mts +10 -0
- package/build/crypto/webcrypto/utils/keyAlgorithmConversion.d.mts.map +1 -0
- package/build/crypto/webcrypto/utils/keyAlgorithmConversion.mjs +139 -0
- package/build/crypto/webcrypto/utils/keyAlgorithmConversion.mjs.map +1 -0
- package/build/error/BaseError.d.mts +15 -0
- package/build/error/BaseError.d.mts.map +1 -0
- package/build/error/BaseError.mjs +69 -0
- package/build/error/BaseError.mjs.map +1 -0
- package/build/error/ClassValidationError.d.mts +20 -0
- package/build/error/ClassValidationError.d.mts.map +1 -0
- package/build/error/ClassValidationError.mjs +20 -0
- package/build/error/ClassValidationError.mjs.map +1 -0
- package/build/error/CredoError.d.mts +18 -0
- package/build/error/CredoError.d.mts.map +1 -0
- package/build/error/CredoError.mjs +19 -0
- package/build/error/CredoError.mjs.map +1 -0
- package/build/error/RecordDuplicateError.d.mts +15 -0
- package/build/error/RecordDuplicateError.d.mts.map +1 -0
- package/build/error/RecordDuplicateError.mjs +14 -0
- package/build/error/RecordDuplicateError.mjs.map +1 -0
- package/build/error/RecordNotFoundError.d.mts +15 -0
- package/build/error/RecordNotFoundError.d.mts.map +1 -0
- package/build/error/RecordNotFoundError.mjs +14 -0
- package/build/error/RecordNotFoundError.mjs.map +1 -0
- package/build/error/ValidationErrorUtils.mjs +13 -0
- package/build/error/ValidationErrorUtils.mjs.map +1 -0
- package/build/error/ZodValidationError.d.mts +11 -0
- package/build/error/ZodValidationError.d.mts.map +1 -0
- package/build/error/ZodValidationError.mjs +18 -0
- package/build/error/ZodValidationError.mjs.map +1 -0
- package/build/error/index.d.mts +5 -0
- package/build/error/index.mjs +7 -0
- package/build/index.d.mts +274 -0
- package/build/index.d.mts.map +1 -0
- package/build/index.mjs +242 -0
- package/build/index.mjs.map +1 -0
- package/build/logger/BaseLogger.d.mts +18 -0
- package/build/logger/BaseLogger.d.mts.map +1 -0
- package/build/logger/BaseLogger.mjs +17 -0
- package/build/logger/BaseLogger.mjs.map +1 -0
- package/build/logger/ConsoleLogger.d.mts +18 -0
- package/build/logger/ConsoleLogger.d.mts.map +1 -0
- package/build/logger/ConsoleLogger.mjs +53 -0
- package/build/logger/ConsoleLogger.mjs.map +1 -0
- package/build/logger/Logger.d.mts +24 -0
- package/build/logger/Logger.d.mts.map +1 -0
- package/build/logger/Logger.mjs +18 -0
- package/build/logger/Logger.mjs.map +1 -0
- package/build/logger/replaceError.d.mts +5 -0
- package/build/logger/replaceError.d.mts.map +1 -0
- package/build/logger/replaceError.mjs +21 -0
- package/build/logger/replaceError.mjs.map +1 -0
- package/build/modules/cache/Cache.d.mts +12 -0
- package/build/modules/cache/Cache.d.mts.map +1 -0
- package/build/modules/cache/CacheModule.d.mts +15 -0
- package/build/modules/cache/CacheModule.d.mts.map +1 -0
- package/build/modules/cache/CacheModule.mjs +22 -0
- package/build/modules/cache/CacheModule.mjs.map +1 -0
- package/build/modules/cache/CacheModuleConfig.d.mts +41 -0
- package/build/modules/cache/CacheModuleConfig.d.mts.map +1 -0
- package/build/modules/cache/CacheModuleConfig.mjs +24 -0
- package/build/modules/cache/CacheModuleConfig.mjs.map +1 -0
- package/build/modules/cache/CachedStorageService.d.mts +22 -0
- package/build/modules/cache/CachedStorageService.d.mts.map +1 -0
- package/build/modules/cache/CachedStorageService.mjs +74 -0
- package/build/modules/cache/CachedStorageService.mjs.map +1 -0
- package/build/modules/cache/InMemoryLruCache.d.mts +29 -0
- package/build/modules/cache/InMemoryLruCache.d.mts.map +1 -0
- package/build/modules/cache/InMemoryLruCache.mjs +50 -0
- package/build/modules/cache/InMemoryLruCache.mjs.map +1 -0
- package/build/modules/cache/index.d.mts +8 -0
- package/build/modules/cache/index.mjs +9 -0
- package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.d.mts +27 -0
- package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.d.mts.map +1 -0
- package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.mjs +31 -0
- package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.mjs.map +1 -0
- package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRepository.mjs +27 -0
- package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRepository.mjs.map +1 -0
- package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.d.mts +42 -0
- package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.d.mts.map +1 -0
- package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.mjs +112 -0
- package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.mjs.map +1 -0
- package/build/modules/cache/singleContextLruCache/index.d.mts +2 -0
- package/build/modules/cache/singleContextLruCache/index.mjs +4 -0
- package/build/modules/dcql/DcqlError.d.mts +17 -0
- package/build/modules/dcql/DcqlError.d.mts.map +1 -0
- package/build/modules/dcql/DcqlError.mjs +18 -0
- package/build/modules/dcql/DcqlError.mjs.map +1 -0
- package/build/modules/dcql/DcqlModule.d.mts +17 -0
- package/build/modules/dcql/DcqlModule.d.mts.map +1 -0
- package/build/modules/dcql/DcqlModule.mjs +20 -0
- package/build/modules/dcql/DcqlModule.mjs.map +1 -0
- package/build/modules/dcql/DcqlService.d.mts +1998 -0
- package/build/modules/dcql/DcqlService.d.mts.map +1 -0
- package/build/modules/dcql/DcqlService.mjs +522 -0
- package/build/modules/dcql/DcqlService.mjs.map +1 -0
- package/build/modules/dcql/index.d.mts +7 -0
- package/build/modules/dcql/index.mjs +8 -0
- package/build/modules/dcql/models/DcqlCredentialsForRequest.d.mts +58 -0
- package/build/modules/dcql/models/DcqlCredentialsForRequest.d.mts.map +1 -0
- package/build/modules/dcql/models/DcqlCredentialsForRequest.mjs +3 -0
- package/build/modules/dcql/models/index.d.mts +42 -0
- package/build/modules/dcql/models/index.d.mts.map +1 -0
- package/build/modules/dcql/models/index.mjs +3 -0
- package/build/modules/dcql/utils/DcqlPresentationsToCreate.d.mts +60 -0
- package/build/modules/dcql/utils/DcqlPresentationsToCreate.d.mts.map +1 -0
- package/build/modules/dcql/utils/DcqlPresentationsToCreate.mjs +63 -0
- package/build/modules/dcql/utils/DcqlPresentationsToCreate.mjs.map +1 -0
- package/build/modules/dcql/utils/index.d.mts +1 -0
- package/build/modules/dcql/utils/index.mjs +3 -0
- package/build/modules/dids/DidsApi.d.mts +103 -0
- package/build/modules/dids/DidsApi.d.mts.map +1 -0
- package/build/modules/dids/DidsApi.mjs +164 -0
- package/build/modules/dids/DidsApi.mjs.map +1 -0
- package/build/modules/dids/DidsApiOptions.d.mts +41 -0
- package/build/modules/dids/DidsApiOptions.d.mts.map +1 -0
- package/build/modules/dids/DidsModule.d.mts +19 -0
- package/build/modules/dids/DidsModule.d.mts.map +1 -0
- package/build/modules/dids/DidsModule.mjs +30 -0
- package/build/modules/dids/DidsModule.mjs.map +1 -0
- package/build/modules/dids/DidsModuleConfig.d.mts +48 -0
- package/build/modules/dids/DidsModuleConfig.d.mts.map +1 -0
- package/build/modules/dids/DidsModuleConfig.mjs +54 -0
- package/build/modules/dids/DidsModuleConfig.mjs.map +1 -0
- package/build/modules/dids/domain/DidDocument.d.mts +87 -0
- package/build/modules/dids/domain/DidDocument.d.mts.map +1 -0
- package/build/modules/dids/domain/DidDocument.mjs +253 -0
- package/build/modules/dids/domain/DidDocument.mjs.map +1 -0
- package/build/modules/dids/domain/DidDocumentBuilder.d.mts +24 -0
- package/build/modules/dids/domain/DidDocumentBuilder.d.mts.map +1 -0
- package/build/modules/dids/domain/DidDocumentBuilder.mjs +73 -0
- package/build/modules/dids/domain/DidDocumentBuilder.mjs.map +1 -0
- package/build/modules/dids/domain/DidDocumentRole.d.mts +8 -0
- package/build/modules/dids/domain/DidDocumentRole.d.mts.map +1 -0
- package/build/modules/dids/domain/DidDocumentRole.mjs +12 -0
- package/build/modules/dids/domain/DidDocumentRole.mjs.map +1 -0
- package/build/modules/dids/domain/DidRegistrar.d.mts +14 -0
- package/build/modules/dids/domain/DidRegistrar.d.mts.map +1 -0
- package/build/modules/dids/domain/DidResolver.d.mts +21 -0
- package/build/modules/dids/domain/DidResolver.d.mts.map +1 -0
- package/build/modules/dids/domain/didDocumentKey.d.mts +9 -0
- package/build/modules/dids/domain/didDocumentKey.d.mts.map +1 -0
- package/build/modules/dids/domain/didDocumentKey.mjs +12 -0
- package/build/modules/dids/domain/didDocumentKey.mjs.map +1 -0
- package/build/modules/dids/domain/index.d.mts +27 -0
- package/build/modules/dids/domain/index.mjs +27 -0
- package/build/modules/dids/domain/key-type/ed25519.d.mts +10 -0
- package/build/modules/dids/domain/key-type/ed25519.d.mts.map +1 -0
- package/build/modules/dids/domain/key-type/ed25519.mjs +37 -0
- package/build/modules/dids/domain/key-type/ed25519.mjs.map +1 -0
- package/build/modules/dids/domain/key-type/index.d.mts +3 -0
- package/build/modules/dids/domain/key-type/index.mjs +5 -0
- package/build/modules/dids/domain/key-type/keyDidJsonWebKey.mjs +31 -0
- package/build/modules/dids/domain/key-type/keyDidJsonWebKey.mjs.map +1 -0
- package/build/modules/dids/domain/key-type/keyDidMapping.d.mts +17 -0
- package/build/modules/dids/domain/key-type/keyDidMapping.d.mts.map +1 -0
- package/build/modules/dids/domain/key-type/keyDidMapping.mjs +46 -0
- package/build/modules/dids/domain/key-type/keyDidMapping.mjs.map +1 -0
- package/build/modules/dids/domain/key-type/secp256k1.mjs +32 -0
- package/build/modules/dids/domain/key-type/secp256k1.mjs.map +1 -0
- package/build/modules/dids/domain/key-type/x25519.d.mts +9 -0
- package/build/modules/dids/domain/key-type/x25519.d.mts.map +1 -0
- package/build/modules/dids/domain/key-type/x25519.mjs +33 -0
- package/build/modules/dids/domain/key-type/x25519.mjs.map +1 -0
- package/build/modules/dids/domain/keyDidDocument.mjs +82 -0
- package/build/modules/dids/domain/keyDidDocument.mjs.map +1 -0
- package/build/modules/dids/domain/parse.d.mts +8 -0
- package/build/modules/dids/domain/parse.d.mts.map +1 -0
- package/build/modules/dids/domain/parse.mjs +19 -0
- package/build/modules/dids/domain/parse.mjs.map +1 -0
- package/build/modules/dids/domain/service/DidCommV1Service.d.mts +23 -0
- package/build/modules/dids/domain/service/DidCommV1Service.d.mts.map +1 -0
- package/build/modules/dids/domain/service/DidCommV1Service.mjs +54 -0
- package/build/modules/dids/domain/service/DidCommV1Service.mjs.map +1 -0
- package/build/modules/dids/domain/service/DidCommV2Service.d.mts +29 -0
- package/build/modules/dids/domain/service/DidCommV2Service.d.mts.map +1 -0
- package/build/modules/dids/domain/service/DidCommV2Service.mjs +64 -0
- package/build/modules/dids/domain/service/DidCommV2Service.mjs.map +1 -0
- package/build/modules/dids/domain/service/DidDocumentService.d.mts +17 -0
- package/build/modules/dids/domain/service/DidDocumentService.d.mts.map +1 -0
- package/build/modules/dids/domain/service/DidDocumentService.mjs +36 -0
- package/build/modules/dids/domain/service/DidDocumentService.mjs.map +1 -0
- package/build/modules/dids/domain/service/IndyAgentService.d.mts +21 -0
- package/build/modules/dids/domain/service/IndyAgentService.d.mts.map +1 -0
- package/build/modules/dids/domain/service/IndyAgentService.mjs +48 -0
- package/build/modules/dids/domain/service/IndyAgentService.mjs.map +1 -0
- package/build/modules/dids/domain/service/LegacyDidCommV2Service.d.mts +21 -0
- package/build/modules/dids/domain/service/LegacyDidCommV2Service.d.mts.map +1 -0
- package/build/modules/dids/domain/service/LegacyDidCommV2Service.mjs +54 -0
- package/build/modules/dids/domain/service/LegacyDidCommV2Service.mjs.map +1 -0
- package/build/modules/dids/domain/service/ServiceTransformer.d.mts +17 -0
- package/build/modules/dids/domain/service/ServiceTransformer.d.mts.map +1 -0
- package/build/modules/dids/domain/service/ServiceTransformer.mjs +40 -0
- package/build/modules/dids/domain/service/ServiceTransformer.mjs.map +1 -0
- package/build/modules/dids/domain/service/index.d.mts +6 -0
- package/build/modules/dids/domain/service/index.mjs +8 -0
- package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.d.mts +33 -0
- package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.d.mts.map +1 -0
- package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.mjs +44 -0
- package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.mjs.map +1 -0
- package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.d.mts +36 -0
- package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.d.mts.map +1 -0
- package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.mjs +47 -0
- package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.mjs.map +1 -0
- package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.d.mts +39 -0
- package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.d.mts.map +1 -0
- package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.mjs +42 -0
- package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.mjs.map +1 -0
- package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.d.mts +155 -0
- package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.d.mts.map +1 -0
- package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.mjs +37 -0
- package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.mjs.map +1 -0
- package/build/modules/dids/domain/verificationMethod/Multikey.d.mts +46 -0
- package/build/modules/dids/domain/verificationMethod/Multikey.d.mts.map +1 -0
- package/build/modules/dids/domain/verificationMethod/Multikey.mjs +38 -0
- package/build/modules/dids/domain/verificationMethod/Multikey.mjs.map +1 -0
- package/build/modules/dids/domain/verificationMethod/VerificationMethod.d.mts +34 -0
- package/build/modules/dids/domain/verificationMethod/VerificationMethod.d.mts.map +1 -0
- package/build/modules/dids/domain/verificationMethod/VerificationMethod.mjs +66 -0
- package/build/modules/dids/domain/verificationMethod/VerificationMethod.mjs.map +1 -0
- package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.d.mts +20 -0
- package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.d.mts.map +1 -0
- package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.mjs +43 -0
- package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.mjs.map +1 -0
- package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.d.mts +33 -0
- package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.d.mts.map +1 -0
- package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.mjs +44 -0
- package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.mjs.map +1 -0
- package/build/modules/dids/domain/verificationMethod/index.d.mts +8 -0
- package/build/modules/dids/domain/verificationMethod/index.mjs +10 -0
- package/build/modules/dids/findMatchingEd25519Key.d.mts +22 -0
- package/build/modules/dids/findMatchingEd25519Key.d.mts.map +1 -0
- package/build/modules/dids/findMatchingEd25519Key.mjs +40 -0
- package/build/modules/dids/findMatchingEd25519Key.mjs.map +1 -0
- package/build/modules/dids/helpers.d.mts +13 -0
- package/build/modules/dids/helpers.d.mts.map +1 -0
- package/build/modules/dids/helpers.mjs +44 -0
- package/build/modules/dids/helpers.mjs.map +1 -0
- package/build/modules/dids/index.d.mts +49 -0
- package/build/modules/dids/index.mjs +47 -0
- package/build/modules/dids/methods/index.d.mts +15 -0
- package/build/modules/dids/methods/index.mjs +17 -0
- package/build/modules/dids/methods/jwk/DidJwk.d.mts +145 -0
- package/build/modules/dids/methods/jwk/DidJwk.d.mts.map +1 -0
- package/build/modules/dids/methods/jwk/DidJwk.mjs +47 -0
- package/build/modules/dids/methods/jwk/DidJwk.mjs.map +1 -0
- package/build/modules/dids/methods/jwk/JwkDidRegistrar.d.mts +35 -0
- package/build/modules/dids/methods/jwk/JwkDidRegistrar.d.mts.map +1 -0
- package/build/modules/dids/methods/jwk/JwkDidRegistrar.mjs +109 -0
- package/build/modules/dids/methods/jwk/JwkDidRegistrar.mjs.map +1 -0
- package/build/modules/dids/methods/jwk/JwkDidResolver.d.mts +22 -0
- package/build/modules/dids/methods/jwk/JwkDidResolver.d.mts.map +1 -0
- package/build/modules/dids/methods/jwk/JwkDidResolver.mjs +35 -0
- package/build/modules/dids/methods/jwk/JwkDidResolver.mjs.map +1 -0
- package/build/modules/dids/methods/jwk/didJwkDidDocument.mjs +26 -0
- package/build/modules/dids/methods/jwk/didJwkDidDocument.mjs.map +1 -0
- package/build/modules/dids/methods/jwk/index.d.mts +3 -0
- package/build/modules/dids/methods/jwk/index.mjs +5 -0
- package/build/modules/dids/methods/key/DidKey.d.mts +16 -0
- package/build/modules/dids/methods/key/DidKey.d.mts.map +1 -0
- package/build/modules/dids/methods/key/DidKey.mjs +27 -0
- package/build/modules/dids/methods/key/DidKey.mjs.map +1 -0
- package/build/modules/dids/methods/key/KeyDidRegistrar.d.mts +35 -0
- package/build/modules/dids/methods/key/KeyDidRegistrar.d.mts.map +1 -0
- package/build/modules/dids/methods/key/KeyDidRegistrar.mjs +103 -0
- package/build/modules/dids/methods/key/KeyDidRegistrar.mjs.map +1 -0
- package/build/modules/dids/methods/key/KeyDidResolver.d.mts +22 -0
- package/build/modules/dids/methods/key/KeyDidResolver.d.mts.map +1 -0
- package/build/modules/dids/methods/key/KeyDidResolver.mjs +35 -0
- package/build/modules/dids/methods/key/KeyDidResolver.mjs.map +1 -0
- package/build/modules/dids/methods/key/index.d.mts +3 -0
- package/build/modules/dids/methods/key/index.mjs +5 -0
- package/build/modules/dids/methods/peer/PeerDidRegistrar.d.mts +86 -0
- package/build/modules/dids/methods/peer/PeerDidRegistrar.d.mts.map +1 -0
- package/build/modules/dids/methods/peer/PeerDidRegistrar.mjs +176 -0
- package/build/modules/dids/methods/peer/PeerDidRegistrar.mjs.map +1 -0
- package/build/modules/dids/methods/peer/PeerDidResolver.d.mts +22 -0
- package/build/modules/dids/methods/peer/PeerDidResolver.d.mts.map +1 -0
- package/build/modules/dids/methods/peer/PeerDidResolver.mjs +59 -0
- package/build/modules/dids/methods/peer/PeerDidResolver.mjs.map +1 -0
- package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.d.mts +13 -0
- package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.d.mts.map +1 -0
- package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.mjs +73 -0
- package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.mjs.map +1 -0
- package/build/modules/dids/methods/peer/didPeer.d.mts +19 -0
- package/build/modules/dids/methods/peer/didPeer.d.mts.map +1 -0
- package/build/modules/dids/methods/peer/didPeer.mjs +36 -0
- package/build/modules/dids/methods/peer/didPeer.mjs.map +1 -0
- package/build/modules/dids/methods/peer/index.d.mts +4 -0
- package/build/modules/dids/methods/peer/index.mjs +6 -0
- package/build/modules/dids/methods/peer/peerDidNumAlgo0.mjs +25 -0
- package/build/modules/dids/methods/peer/peerDidNumAlgo0.mjs.map +1 -0
- package/build/modules/dids/methods/peer/peerDidNumAlgo1.d.mts +5 -0
- package/build/modules/dids/methods/peer/peerDidNumAlgo1.d.mts.map +1 -0
- package/build/modules/dids/methods/peer/peerDidNumAlgo1.mjs +19 -0
- package/build/modules/dids/methods/peer/peerDidNumAlgo1.mjs.map +1 -0
- package/build/modules/dids/methods/peer/peerDidNumAlgo2.d.mts +8 -0
- package/build/modules/dids/methods/peer/peerDidNumAlgo2.d.mts.map +1 -0
- package/build/modules/dids/methods/peer/peerDidNumAlgo2.mjs +152 -0
- package/build/modules/dids/methods/peer/peerDidNumAlgo2.mjs.map +1 -0
- package/build/modules/dids/methods/peer/peerDidNumAlgo4.d.mts +11 -0
- package/build/modules/dids/methods/peer/peerDidNumAlgo4.d.mts.map +1 -0
- package/build/modules/dids/methods/peer/peerDidNumAlgo4.mjs +79 -0
- package/build/modules/dids/methods/peer/peerDidNumAlgo4.mjs.map +1 -0
- package/build/modules/dids/methods/web/WebDidResolver.d.mts +18 -0
- package/build/modules/dids/methods/web/WebDidResolver.d.mts.map +1 -0
- package/build/modules/dids/methods/web/WebDidResolver.mjs +32 -0
- package/build/modules/dids/methods/web/WebDidResolver.mjs.map +1 -0
- package/build/modules/dids/methods/web/index.d.mts +1 -0
- package/build/modules/dids/methods/web/index.mjs +3 -0
- package/build/modules/dids/repository/DidRecord.d.mts +58 -0
- package/build/modules/dids/repository/DidRecord.d.mts.map +1 -0
- package/build/modules/dids/repository/DidRecord.mjs +55 -0
- package/build/modules/dids/repository/DidRecord.mjs.map +1 -0
- package/build/modules/dids/repository/DidRepository.d.mts +59 -0
- package/build/modules/dids/repository/DidRepository.d.mts.map +1 -0
- package/build/modules/dids/repository/DidRepository.mjs +95 -0
- package/build/modules/dids/repository/DidRepository.mjs.map +1 -0
- package/build/modules/dids/repository/didRecordMetadataTypes.d.mts +13 -0
- package/build/modules/dids/repository/didRecordMetadataTypes.d.mts.map +1 -0
- package/build/modules/dids/repository/didRecordMetadataTypes.mjs +11 -0
- package/build/modules/dids/repository/didRecordMetadataTypes.mjs.map +1 -0
- package/build/modules/dids/repository/index.d.mts +2 -0
- package/build/modules/dids/repository/index.mjs +4 -0
- package/build/modules/dids/services/DidRegistrarService.d.mts +25 -0
- package/build/modules/dids/services/DidRegistrarService.d.mts.map +1 -0
- package/build/modules/dids/services/DidRegistrarService.mjs +135 -0
- package/build/modules/dids/services/DidRegistrarService.mjs.map +1 -0
- package/build/modules/dids/services/DidResolverService.d.mts +33 -0
- package/build/modules/dids/services/DidResolverService.d.mts.map +1 -0
- package/build/modules/dids/services/DidResolverService.mjs +129 -0
- package/build/modules/dids/services/DidResolverService.mjs.map +1 -0
- package/build/modules/dids/services/index.d.mts +2 -0
- package/build/modules/dids/services/index.mjs +4 -0
- package/build/modules/dids/types.d.mts +124 -0
- package/build/modules/dids/types.d.mts.map +1 -0
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.d.mts +17 -0
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.d.mts.map +1 -0
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.mjs +16 -0
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.mjs.map +1 -0
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.d.mts +17 -0
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.d.mts.map +1 -0
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.mjs +20 -0
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.mjs.map +1 -0
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.d.mts +83 -0
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.d.mts.map +1 -0
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.mjs +351 -0
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.mjs.map +1 -0
- package/build/modules/dif-presentation-exchange/index.d.mts +7 -0
- package/build/modules/dif-presentation-exchange/index.mjs +8 -0
- package/build/modules/dif-presentation-exchange/models/DifPexCredentialsForRequest.d.mts +134 -0
- package/build/modules/dif-presentation-exchange/models/DifPexCredentialsForRequest.d.mts.map +1 -0
- package/build/modules/dif-presentation-exchange/models/index.d.mts +24 -0
- package/build/modules/dif-presentation-exchange/models/index.d.mts.map +1 -0
- package/build/modules/dif-presentation-exchange/models/index.mjs +5 -0
- package/build/modules/dif-presentation-exchange/utils/credentialSelection.d.mts +5 -0
- package/build/modules/dif-presentation-exchange/utils/credentialSelection.mjs +195 -0
- package/build/modules/dif-presentation-exchange/utils/credentialSelection.mjs.map +1 -0
- package/build/modules/dif-presentation-exchange/utils/index.d.mts +4 -0
- package/build/modules/dif-presentation-exchange/utils/index.mjs +6 -0
- package/build/modules/dif-presentation-exchange/utils/presentationSelection.d.mts +40 -0
- package/build/modules/dif-presentation-exchange/utils/presentationSelection.d.mts.map +1 -0
- package/build/modules/dif-presentation-exchange/utils/presentationSelection.mjs +59 -0
- package/build/modules/dif-presentation-exchange/utils/presentationSelection.mjs.map +1 -0
- package/build/modules/dif-presentation-exchange/utils/presentationsToCreate.d.mts +5 -0
- package/build/modules/dif-presentation-exchange/utils/presentationsToCreate.mjs +51 -0
- package/build/modules/dif-presentation-exchange/utils/presentationsToCreate.mjs.map +1 -0
- package/build/modules/dif-presentation-exchange/utils/transform.d.mts +7 -0
- package/build/modules/dif-presentation-exchange/utils/transform.mjs +31 -0
- package/build/modules/dif-presentation-exchange/utils/transform.mjs.map +1 -0
- package/build/modules/generic-records/GenericRecordsApi.d.mts +31 -0
- package/build/modules/generic-records/GenericRecordsApi.d.mts.map +1 -0
- package/build/modules/generic-records/GenericRecordsApi.mjs +85 -0
- package/build/modules/generic-records/GenericRecordsApi.mjs.map +1 -0
- package/build/modules/generic-records/GenericRecordsModule.d.mts +16 -0
- package/build/modules/generic-records/GenericRecordsModule.d.mts.map +1 -0
- package/build/modules/generic-records/GenericRecordsModule.mjs +23 -0
- package/build/modules/generic-records/GenericRecordsModule.mjs.map +1 -0
- package/build/modules/generic-records/index.d.mts +3 -0
- package/build/modules/generic-records/index.mjs +5 -0
- package/build/modules/generic-records/repository/GenericRecord.d.mts +29 -0
- package/build/modules/generic-records/repository/GenericRecord.d.mts.map +1 -0
- package/build/modules/generic-records/repository/GenericRecord.mjs +26 -0
- package/build/modules/generic-records/repository/GenericRecord.mjs.map +1 -0
- package/build/modules/generic-records/repository/GenericRecordsRepository.d.mts +12 -0
- package/build/modules/generic-records/repository/GenericRecordsRepository.d.mts.map +1 -0
- package/build/modules/generic-records/repository/GenericRecordsRepository.mjs +27 -0
- package/build/modules/generic-records/repository/GenericRecordsRepository.mjs.map +1 -0
- package/build/modules/generic-records/services/GenericRecordService.d.mts +25 -0
- package/build/modules/generic-records/services/GenericRecordService.d.mts.map +1 -0
- package/build/modules/generic-records/services/GenericRecordService.mjs +61 -0
- package/build/modules/generic-records/services/GenericRecordService.mjs.map +1 -0
- package/build/modules/kms/KeyManagementApi.d.mts +155 -0
- package/build/modules/kms/KeyManagementApi.d.mts.map +1 -0
- package/build/modules/kms/KeyManagementApi.mjs +205 -0
- package/build/modules/kms/KeyManagementApi.mjs.map +1 -0
- package/build/modules/kms/KeyManagementModule.d.mts +19 -0
- package/build/modules/kms/KeyManagementModule.d.mts.map +1 -0
- package/build/modules/kms/KeyManagementModule.mjs +22 -0
- package/build/modules/kms/KeyManagementModule.mjs.map +1 -0
- package/build/modules/kms/KeyManagementModuleConfig.d.mts +29 -0
- package/build/modules/kms/KeyManagementModuleConfig.d.mts.map +1 -0
- package/build/modules/kms/KeyManagementModuleConfig.mjs +36 -0
- package/build/modules/kms/KeyManagementModuleConfig.mjs.map +1 -0
- package/build/modules/kms/KeyManagementService.d.mts +73 -0
- package/build/modules/kms/KeyManagementService.d.mts.map +1 -0
- package/build/modules/kms/cose/algorithm.d.mts +37 -0
- package/build/modules/kms/cose/algorithm.d.mts.map +1 -0
- package/build/modules/kms/cose/algorithm.mjs +25 -0
- package/build/modules/kms/cose/algorithm.mjs.map +1 -0
- package/build/modules/kms/cose/index.d.mts +1 -0
- package/build/modules/kms/cose/index.mjs +3 -0
- package/build/modules/kms/error/KeyManagementAlgorithmNotSupportedError.d.mts +10 -0
- package/build/modules/kms/error/KeyManagementAlgorithmNotSupportedError.d.mts.map +1 -0
- package/build/modules/kms/error/KeyManagementAlgorithmNotSupportedError.mjs +15 -0
- package/build/modules/kms/error/KeyManagementAlgorithmNotSupportedError.mjs.map +1 -0
- package/build/modules/kms/error/KeyManagementError.d.mts +8 -0
- package/build/modules/kms/error/KeyManagementError.d.mts.map +1 -0
- package/build/modules/kms/error/KeyManagementError.mjs +11 -0
- package/build/modules/kms/error/KeyManagementError.mjs.map +1 -0
- package/build/modules/kms/error/KeyManagementKeyExistsError.d.mts +9 -0
- package/build/modules/kms/error/KeyManagementKeyExistsError.d.mts.map +1 -0
- package/build/modules/kms/error/KeyManagementKeyExistsError.mjs +14 -0
- package/build/modules/kms/error/KeyManagementKeyExistsError.mjs.map +1 -0
- package/build/modules/kms/error/KeyManagementKeyNotFoundError.d.mts +9 -0
- package/build/modules/kms/error/KeyManagementKeyNotFoundError.d.mts.map +1 -0
- package/build/modules/kms/error/KeyManagementKeyNotFoundError.mjs +17 -0
- package/build/modules/kms/error/KeyManagementKeyNotFoundError.mjs.map +1 -0
- package/build/modules/kms/index.d.mts +56 -0
- package/build/modules/kms/index.d.mts.map +1 -0
- package/build/modules/kms/index.mjs +93 -0
- package/build/modules/kms/index.mjs.map +1 -0
- package/build/modules/kms/jwk/PublicJwk.d.mts +100 -0
- package/build/modules/kms/jwk/PublicJwk.d.mts.map +1 -0
- package/build/modules/kms/jwk/PublicJwk.mjs +220 -0
- package/build/modules/kms/jwk/PublicJwk.mjs.map +1 -0
- package/build/modules/kms/jwk/alg/encryption.d.mts +17 -0
- package/build/modules/kms/jwk/alg/encryption.d.mts.map +1 -0
- package/build/modules/kms/jwk/alg/encryption.mjs +43 -0
- package/build/modules/kms/jwk/alg/encryption.mjs.map +1 -0
- package/build/modules/kms/jwk/alg/index.d.mts +3 -0
- package/build/modules/kms/jwk/alg/index.mjs +5 -0
- package/build/modules/kms/jwk/alg/keyDerivation.d.mts +17 -0
- package/build/modules/kms/jwk/alg/keyDerivation.d.mts.map +1 -0
- package/build/modules/kms/jwk/alg/keyDerivation.mjs +43 -0
- package/build/modules/kms/jwk/alg/keyDerivation.mjs.map +1 -0
- package/build/modules/kms/jwk/alg/signing.d.mts +19 -0
- package/build/modules/kms/jwk/alg/signing.d.mts.map +1 -0
- package/build/modules/kms/jwk/alg/signing.mjs +113 -0
- package/build/modules/kms/jwk/alg/signing.mjs.map +1 -0
- package/build/modules/kms/jwk/assertSupported.d.mts +17 -0
- package/build/modules/kms/jwk/assertSupported.d.mts.map +1 -0
- package/build/modules/kms/jwk/assertSupported.mjs +15 -0
- package/build/modules/kms/jwk/assertSupported.mjs.map +1 -0
- package/build/modules/kms/jwk/equals.d.mts +21 -0
- package/build/modules/kms/jwk/equals.d.mts.map +1 -0
- package/build/modules/kms/jwk/equals.mjs +39 -0
- package/build/modules/kms/jwk/equals.mjs.map +1 -0
- package/build/modules/kms/jwk/humanDescription.d.mts +16 -0
- package/build/modules/kms/jwk/humanDescription.d.mts.map +1 -0
- package/build/modules/kms/jwk/humanDescription.mjs +24 -0
- package/build/modules/kms/jwk/humanDescription.mjs.map +1 -0
- package/build/modules/kms/jwk/index.d.mts +25 -0
- package/build/modules/kms/jwk/index.mjs +22 -0
- package/build/modules/kms/jwk/jwa.d.mts +97 -0
- package/build/modules/kms/jwk/jwa.d.mts.map +1 -0
- package/build/modules/kms/jwk/jwa.mjs +61 -0
- package/build/modules/kms/jwk/jwa.mjs.map +1 -0
- package/build/modules/kms/jwk/jwk.d.mts +49 -0
- package/build/modules/kms/jwk/jwk.d.mts.map +1 -0
- package/build/modules/kms/jwk/jwk.mjs +42 -0
- package/build/modules/kms/jwk/jwk.mjs.map +1 -0
- package/build/modules/kms/jwk/jwkThumbprint.mjs +40 -0
- package/build/modules/kms/jwk/jwkThumbprint.mjs.map +1 -0
- package/build/modules/kms/jwk/keyOps.d.mts +17 -0
- package/build/modules/kms/jwk/keyOps.d.mts.map +1 -0
- package/build/modules/kms/jwk/keyOps.mjs +65 -0
- package/build/modules/kms/jwk/keyOps.mjs.map +1 -0
- package/build/modules/kms/jwk/knownJwk.d.mts +298 -0
- package/build/modules/kms/jwk/knownJwk.d.mts.map +1 -0
- package/build/modules/kms/jwk/knownJwk.mjs +57 -0
- package/build/modules/kms/jwk/knownJwk.mjs.map +1 -0
- package/build/modules/kms/jwk/kty/PublicJwk.d.mts +14 -0
- package/build/modules/kms/jwk/kty/PublicJwk.d.mts.map +1 -0
- package/build/modules/kms/jwk/kty/ec/P256PublicJwk.d.mts +35 -0
- package/build/modules/kms/jwk/kty/ec/P256PublicJwk.d.mts.map +1 -0
- package/build/modules/kms/jwk/kty/ec/P256PublicJwk.mjs +44 -0
- package/build/modules/kms/jwk/kty/ec/P256PublicJwk.mjs.map +1 -0
- package/build/modules/kms/jwk/kty/ec/P384PublicJwk.d.mts +35 -0
- package/build/modules/kms/jwk/kty/ec/P384PublicJwk.d.mts.map +1 -0
- package/build/modules/kms/jwk/kty/ec/P384PublicJwk.mjs +44 -0
- package/build/modules/kms/jwk/kty/ec/P384PublicJwk.mjs.map +1 -0
- package/build/modules/kms/jwk/kty/ec/P521PublicJwk.d.mts +35 -0
- package/build/modules/kms/jwk/kty/ec/P521PublicJwk.d.mts.map +1 -0
- package/build/modules/kms/jwk/kty/ec/P521PublicJwk.mjs +44 -0
- package/build/modules/kms/jwk/kty/ec/P521PublicJwk.mjs.map +1 -0
- package/build/modules/kms/jwk/kty/ec/Secp256k1PublicJwk.d.mts +35 -0
- package/build/modules/kms/jwk/kty/ec/Secp256k1PublicJwk.d.mts.map +1 -0
- package/build/modules/kms/jwk/kty/ec/Secp256k1PublicJwk.mjs +44 -0
- package/build/modules/kms/jwk/kty/ec/Secp256k1PublicJwk.mjs.map +1 -0
- package/build/modules/kms/jwk/kty/ec/ecJwk.d.mts +50 -0
- package/build/modules/kms/jwk/kty/ec/ecJwk.d.mts.map +1 -0
- package/build/modules/kms/jwk/kty/ec/ecJwk.mjs +32 -0
- package/build/modules/kms/jwk/kty/ec/ecJwk.mjs.map +1 -0
- package/build/modules/kms/jwk/kty/ec/ecPublicKey.d.mts +3 -0
- package/build/modules/kms/jwk/kty/ec/ecPublicKey.mjs +36 -0
- package/build/modules/kms/jwk/kty/ec/ecPublicKey.mjs.map +1 -0
- package/build/modules/kms/jwk/kty/ec/ecSignature.d.mts +24 -0
- package/build/modules/kms/jwk/kty/ec/ecSignature.d.mts.map +1 -0
- package/build/modules/kms/jwk/kty/ec/ecSignature.mjs +94 -0
- package/build/modules/kms/jwk/kty/ec/ecSignature.mjs.map +1 -0
- package/build/modules/kms/jwk/kty/index.d.mts +15 -0
- package/build/modules/kms/jwk/kty/index.mjs +17 -0
- package/build/modules/kms/jwk/kty/oct/octJwk.d.mts +34 -0
- package/build/modules/kms/jwk/kty/oct/octJwk.d.mts.map +1 -0
- package/build/modules/kms/jwk/kty/oct/octJwk.mjs +24 -0
- package/build/modules/kms/jwk/kty/oct/octJwk.mjs.map +1 -0
- package/build/modules/kms/jwk/kty/okp/Ed25519PublicJwk.d.mts +51 -0
- package/build/modules/kms/jwk/kty/okp/Ed25519PublicJwk.d.mts.map +1 -0
- package/build/modules/kms/jwk/kty/okp/Ed25519PublicJwk.mjs +48 -0
- package/build/modules/kms/jwk/kty/okp/Ed25519PublicJwk.mjs.map +1 -0
- package/build/modules/kms/jwk/kty/okp/X25519PublicJwk.d.mts +34 -0
- package/build/modules/kms/jwk/kty/okp/X25519PublicJwk.d.mts.map +1 -0
- package/build/modules/kms/jwk/kty/okp/X25519PublicJwk.mjs +43 -0
- package/build/modules/kms/jwk/kty/okp/X25519PublicJwk.mjs.map +1 -0
- package/build/modules/kms/jwk/kty/okp/okpJwk.d.mts +44 -0
- package/build/modules/kms/jwk/kty/okp/okpJwk.d.mts.map +1 -0
- package/build/modules/kms/jwk/kty/okp/okpJwk.mjs +26 -0
- package/build/modules/kms/jwk/kty/okp/okpJwk.mjs.map +1 -0
- package/build/modules/kms/jwk/kty/okp/okpPublicKey.d.mts +2 -0
- package/build/modules/kms/jwk/kty/okp/okpPublicKey.mjs +20 -0
- package/build/modules/kms/jwk/kty/okp/okpPublicKey.mjs.map +1 -0
- package/build/modules/kms/jwk/kty/rsa/RsaPublicJwk.d.mts +34 -0
- package/build/modules/kms/jwk/kty/rsa/RsaPublicJwk.d.mts.map +1 -0
- package/build/modules/kms/jwk/kty/rsa/RsaPublicJwk.mjs +65 -0
- package/build/modules/kms/jwk/kty/rsa/RsaPublicJwk.mjs.map +1 -0
- package/build/modules/kms/jwk/kty/rsa/rsaJwk.d.mts +54 -0
- package/build/modules/kms/jwk/kty/rsa/rsaJwk.d.mts.map +1 -0
- package/build/modules/kms/jwk/kty/rsa/rsaJwk.mjs +49 -0
- package/build/modules/kms/jwk/kty/rsa/rsaJwk.mjs.map +1 -0
- package/build/modules/kms/jwk/kty/rsa/rsaPublicKey.d.mts +2 -0
- package/build/modules/kms/jwk/kty/rsa/rsaPublicKey.mjs +23 -0
- package/build/modules/kms/jwk/kty/rsa/rsaPublicKey.mjs.map +1 -0
- package/build/modules/kms/legacy.d.mts +13 -0
- package/build/modules/kms/legacy.d.mts.map +1 -0
- package/build/modules/kms/legacy.mjs +24 -0
- package/build/modules/kms/legacy.mjs.map +1 -0
- package/build/modules/kms/options/KmsCreateKeyOptions.d.mts +136 -0
- package/build/modules/kms/options/KmsCreateKeyOptions.d.mts.map +1 -0
- package/build/modules/kms/options/KmsCreateKeyOptions.mjs +81 -0
- package/build/modules/kms/options/KmsCreateKeyOptions.mjs.map +1 -0
- package/build/modules/kms/options/KmsDecryptOptions.d.mts +262 -0
- package/build/modules/kms/options/KmsDecryptOptions.d.mts.map +1 -0
- package/build/modules/kms/options/KmsDecryptOptions.mjs +76 -0
- package/build/modules/kms/options/KmsDecryptOptions.mjs.map +1 -0
- package/build/modules/kms/options/KmsDeleteKeyOptions.d.mts +10 -0
- package/build/modules/kms/options/KmsDeleteKeyOptions.d.mts.map +1 -0
- package/build/modules/kms/options/KmsDeleteKeyOptions.mjs +11 -0
- package/build/modules/kms/options/KmsDeleteKeyOptions.mjs.map +1 -0
- package/build/modules/kms/options/KmsEncryptOptions.d.mts +270 -0
- package/build/modules/kms/options/KmsEncryptOptions.d.mts.map +1 -0
- package/build/modules/kms/options/KmsEncryptOptions.mjs +78 -0
- package/build/modules/kms/options/KmsEncryptOptions.mjs.map +1 -0
- package/build/modules/kms/options/KmsGetPublicKeyOptions.d.mts +10 -0
- package/build/modules/kms/options/KmsGetPublicKeyOptions.d.mts.map +1 -0
- package/build/modules/kms/options/KmsGetPublicKeyOptions.mjs +11 -0
- package/build/modules/kms/options/KmsGetPublicKeyOptions.mjs.map +1 -0
- package/build/modules/kms/options/KmsImportKeyOptions.d.mts +28 -0
- package/build/modules/kms/options/KmsImportKeyOptions.d.mts.map +1 -0
- package/build/modules/kms/options/KmsImportKeyOptions.mjs +11 -0
- package/build/modules/kms/options/KmsImportKeyOptions.mjs.map +1 -0
- package/build/modules/kms/options/KmsKeyAgreementDecryptOptions.d.mts +198 -0
- package/build/modules/kms/options/KmsKeyAgreementDecryptOptions.d.mts.map +1 -0
- package/build/modules/kms/options/KmsKeyAgreementDecryptOptions.mjs +36 -0
- package/build/modules/kms/options/KmsKeyAgreementDecryptOptions.mjs.map +1 -0
- package/build/modules/kms/options/KmsKeyAgreementEncryptOptions.d.mts +270 -0
- package/build/modules/kms/options/KmsKeyAgreementEncryptOptions.d.mts.map +1 -0
- package/build/modules/kms/options/KmsKeyAgreementEncryptOptions.mjs +47 -0
- package/build/modules/kms/options/KmsKeyAgreementEncryptOptions.mjs.map +1 -0
- package/build/modules/kms/options/KmsOperation.d.mts +47 -0
- package/build/modules/kms/options/KmsOperation.d.mts.map +1 -0
- package/build/modules/kms/options/KmsOperation.mjs +38 -0
- package/build/modules/kms/options/KmsOperation.mjs.map +1 -0
- package/build/modules/kms/options/KmsRandomBytesOptions.d.mts +14 -0
- package/build/modules/kms/options/KmsRandomBytesOptions.d.mts.map +1 -0
- package/build/modules/kms/options/KmsRandomBytesOptions.mjs +10 -0
- package/build/modules/kms/options/KmsRandomBytesOptions.mjs.map +1 -0
- package/build/modules/kms/options/KmsSignOptions.d.mts +33 -0
- package/build/modules/kms/options/KmsSignOptions.d.mts.map +1 -0
- package/build/modules/kms/options/KmsSignOptions.mjs +17 -0
- package/build/modules/kms/options/KmsSignOptions.mjs.map +1 -0
- package/build/modules/kms/options/KmsVerifyOptions.d.mts +101 -0
- package/build/modules/kms/options/KmsVerifyOptions.d.mts.map +1 -0
- package/build/modules/kms/options/KmsVerifyOptions.mjs +25 -0
- package/build/modules/kms/options/KmsVerifyOptions.mjs.map +1 -0
- package/build/modules/kms/options/backend.d.mts +14 -0
- package/build/modules/kms/options/backend.d.mts.map +1 -0
- package/build/modules/kms/options/backend.mjs +10 -0
- package/build/modules/kms/options/backend.mjs.map +1 -0
- package/build/modules/kms/options/common.mjs +10 -0
- package/build/modules/kms/options/common.mjs.map +1 -0
- package/build/modules/kms/options/index.d.mts +12 -0
- package/build/modules/kms/options/index.mjs +3 -0
- package/build/modules/mdoc/Mdoc.d.mts +56 -0
- package/build/modules/mdoc/Mdoc.d.mts.map +1 -0
- package/build/modules/mdoc/Mdoc.mjs +145 -0
- package/build/modules/mdoc/Mdoc.mjs.map +1 -0
- package/build/modules/mdoc/MdocApi.d.mts +51 -0
- package/build/modules/mdoc/MdocApi.d.mts.map +1 -0
- package/build/modules/mdoc/MdocApi.mjs +66 -0
- package/build/modules/mdoc/MdocApi.mjs.map +1 -0
- package/build/modules/mdoc/MdocContext.mjs +129 -0
- package/build/modules/mdoc/MdocContext.mjs.map +1 -0
- package/build/modules/mdoc/MdocDeviceResponse.d.mts +135 -0
- package/build/modules/mdoc/MdocDeviceResponse.d.mts.map +1 -0
- package/build/modules/mdoc/MdocDeviceResponse.mjs +250 -0
- package/build/modules/mdoc/MdocDeviceResponse.mjs.map +1 -0
- package/build/modules/mdoc/MdocError.d.mts +8 -0
- package/build/modules/mdoc/MdocError.d.mts.map +1 -0
- package/build/modules/mdoc/MdocError.mjs +11 -0
- package/build/modules/mdoc/MdocError.mjs.map +1 -0
- package/build/modules/mdoc/MdocModule.d.mts +19 -0
- package/build/modules/mdoc/MdocModule.d.mts.map +1 -0
- package/build/modules/mdoc/MdocModule.mjs +27 -0
- package/build/modules/mdoc/MdocModule.mjs.map +1 -0
- package/build/modules/mdoc/MdocOptions.d.mts +93 -0
- package/build/modules/mdoc/MdocOptions.d.mts.map +1 -0
- package/build/modules/mdoc/MdocOptions.mjs +6 -0
- package/build/modules/mdoc/MdocService.d.mts +48 -0
- package/build/modules/mdoc/MdocService.d.mts.map +1 -0
- package/build/modules/mdoc/MdocService.mjs +60 -0
- package/build/modules/mdoc/MdocService.mjs.map +1 -0
- package/build/modules/mdoc/index.d.mts +13 -0
- package/build/modules/mdoc/index.mjs +16 -0
- package/build/modules/mdoc/mdocSupportedAlgs.d.mts +10 -0
- package/build/modules/mdoc/mdocSupportedAlgs.d.mts.map +1 -0
- package/build/modules/mdoc/mdocSupportedAlgs.mjs +19 -0
- package/build/modules/mdoc/mdocSupportedAlgs.mjs.map +1 -0
- package/build/modules/mdoc/mdocUtil.mjs +10 -0
- package/build/modules/mdoc/mdocUtil.mjs.map +1 -0
- package/build/modules/mdoc/repository/MdocRecord.d.mts +73 -0
- package/build/modules/mdoc/repository/MdocRecord.d.mts.map +1 -0
- package/build/modules/mdoc/repository/MdocRecord.mjs +67 -0
- package/build/modules/mdoc/repository/MdocRecord.mjs.map +1 -0
- package/build/modules/mdoc/repository/MdocRepository.d.mts +12 -0
- package/build/modules/mdoc/repository/MdocRepository.d.mts.map +1 -0
- package/build/modules/mdoc/repository/MdocRepository.mjs +27 -0
- package/build/modules/mdoc/repository/MdocRepository.mjs.map +1 -0
- package/build/modules/mdoc/repository/index.d.mts +2 -0
- package/build/modules/mdoc/repository/index.mjs +4 -0
- package/build/modules/sd-jwt-vc/SdJwtVcApi.d.mts +54 -0
- package/build/modules/sd-jwt-vc/SdJwtVcApi.d.mts.map +1 -0
- package/build/modules/sd-jwt-vc/SdJwtVcApi.mjs +69 -0
- package/build/modules/sd-jwt-vc/SdJwtVcApi.mjs.map +1 -0
- package/build/modules/sd-jwt-vc/SdJwtVcError.d.mts +8 -0
- package/build/modules/sd-jwt-vc/SdJwtVcError.d.mts.map +1 -0
- package/build/modules/sd-jwt-vc/SdJwtVcError.mjs +11 -0
- package/build/modules/sd-jwt-vc/SdJwtVcError.mjs.map +1 -0
- package/build/modules/sd-jwt-vc/SdJwtVcModule.d.mts +19 -0
- package/build/modules/sd-jwt-vc/SdJwtVcModule.d.mts.map +1 -0
- package/build/modules/sd-jwt-vc/SdJwtVcModule.mjs +27 -0
- package/build/modules/sd-jwt-vc/SdJwtVcModule.mjs.map +1 -0
- package/build/modules/sd-jwt-vc/SdJwtVcOptions.d.mts +147 -0
- package/build/modules/sd-jwt-vc/SdJwtVcOptions.d.mts.map +1 -0
- package/build/modules/sd-jwt-vc/SdJwtVcOptions.mjs +4 -0
- package/build/modules/sd-jwt-vc/SdJwtVcService.d.mts +95 -0
- package/build/modules/sd-jwt-vc/SdJwtVcService.d.mts.map +1 -0
- package/build/modules/sd-jwt-vc/SdJwtVcService.mjs +347 -0
- package/build/modules/sd-jwt-vc/SdJwtVcService.mjs.map +1 -0
- package/build/modules/sd-jwt-vc/decodeSdJwtVc.mjs +33 -0
- package/build/modules/sd-jwt-vc/decodeSdJwtVc.mjs.map +1 -0
- package/build/modules/sd-jwt-vc/disclosureFrame.mjs +19 -0
- package/build/modules/sd-jwt-vc/disclosureFrame.mjs.map +1 -0
- package/build/modules/sd-jwt-vc/index.d.mts +9 -0
- package/build/modules/sd-jwt-vc/index.mjs +10 -0
- package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.d.mts +85 -0
- package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.d.mts.map +1 -0
- package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.mjs +77 -0
- package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.mjs.map +1 -0
- package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.d.mts +12 -0
- package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.d.mts.map +1 -0
- package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.mjs +27 -0
- package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.mjs.map +1 -0
- package/build/modules/sd-jwt-vc/repository/index.d.mts +2 -0
- package/build/modules/sd-jwt-vc/repository/index.mjs +4 -0
- package/build/modules/sd-jwt-vc/typeMetadata.d.mts +71 -0
- package/build/modules/sd-jwt-vc/typeMetadata.d.mts.map +1 -0
- package/build/modules/sd-jwt-vc/utils.mjs +106 -0
- package/build/modules/sd-jwt-vc/utils.mjs.map +1 -0
- package/build/modules/vc/W3cCredentialService.d.mts +71 -0
- package/build/modules/vc/W3cCredentialService.d.mts.map +1 -0
- package/build/modules/vc/W3cCredentialService.mjs +124 -0
- package/build/modules/vc/W3cCredentialService.mjs.map +1 -0
- package/build/modules/vc/W3cCredentialServiceOptions.d.mts +159 -0
- package/build/modules/vc/W3cCredentialServiceOptions.d.mts.map +1 -0
- package/build/modules/vc/W3cCredentialServiceOptions.mjs +3 -0
- package/build/modules/vc/W3cCredentialsApi.d.mts +36 -0
- package/build/modules/vc/W3cCredentialsApi.d.mts.map +1 -0
- package/build/modules/vc/W3cCredentialsApi.mjs +52 -0
- package/build/modules/vc/W3cCredentialsApi.mjs.map +1 -0
- package/build/modules/vc/W3cCredentialsModule.d.mts +19 -0
- package/build/modules/vc/W3cCredentialsModule.d.mts.map +1 -0
- package/build/modules/vc/W3cCredentialsModule.mjs +53 -0
- package/build/modules/vc/W3cCredentialsModule.mjs.map +1 -0
- package/build/modules/vc/W3cCredentialsModuleConfig.d.mts +41 -0
- package/build/modules/vc/W3cCredentialsModuleConfig.d.mts.map +1 -0
- package/build/modules/vc/W3cCredentialsModuleConfig.mjs +18 -0
- package/build/modules/vc/W3cCredentialsModuleConfig.mjs.map +1 -0
- package/build/modules/vc/W3cV2CredentialService.d.mts +63 -0
- package/build/modules/vc/W3cV2CredentialService.d.mts.map +1 -0
- package/build/modules/vc/W3cV2CredentialService.mjs +104 -0
- package/build/modules/vc/W3cV2CredentialService.mjs.map +1 -0
- package/build/modules/vc/W3cV2CredentialServiceOptions.d.mts +156 -0
- package/build/modules/vc/W3cV2CredentialServiceOptions.d.mts.map +1 -0
- package/build/modules/vc/W3cV2CredentialServiceOptions.mjs +4 -0
- package/build/modules/vc/W3cV2CredentialsApi.d.mts +34 -0
- package/build/modules/vc/W3cV2CredentialsApi.d.mts.map +1 -0
- package/build/modules/vc/W3cV2CredentialsApi.mjs +49 -0
- package/build/modules/vc/W3cV2CredentialsApi.mjs.map +1 -0
- package/build/modules/vc/W3cV2CredentialsModule.d.mts +16 -0
- package/build/modules/vc/W3cV2CredentialsModule.d.mts.map +1 -0
- package/build/modules/vc/W3cV2CredentialsModule.mjs +31 -0
- package/build/modules/vc/W3cV2CredentialsModule.mjs.map +1 -0
- package/build/modules/vc/constants.d.mts +22 -0
- package/build/modules/vc/constants.d.mts.map +1 -0
- package/build/modules/vc/constants.mjs +25 -0
- package/build/modules/vc/constants.mjs.map +1 -0
- package/build/modules/vc/data-integrity/SignatureSuiteRegistry.d.mts +26 -0
- package/build/modules/vc/data-integrity/SignatureSuiteRegistry.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/SignatureSuiteRegistry.mjs +52 -0
- package/build/modules/vc/data-integrity/SignatureSuiteRegistry.mjs.map +1 -0
- package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.d.mts +53 -0
- package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.mjs +232 -0
- package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.mjs.map +1 -0
- package/build/modules/vc/data-integrity/deriveProof.d.mts +27 -0
- package/build/modules/vc/data-integrity/deriveProof.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/deriveProof.mjs +80 -0
- package/build/modules/vc/data-integrity/deriveProof.mjs.map +1 -0
- package/build/modules/vc/data-integrity/index.d.mts +18 -0
- package/build/modules/vc/data-integrity/index.mjs +18 -0
- package/build/modules/vc/data-integrity/jsonldUtil.d.mts +25 -0
- package/build/modules/vc/data-integrity/jsonldUtil.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/jsonldUtil.mjs +77 -0
- package/build/modules/vc/data-integrity/jsonldUtil.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/contexts/X25519_v1.mjs +29 -0
- package/build/modules/vc/data-integrity/libraries/contexts/X25519_v1.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/contexts/credentials_v1.mjs +320 -0
- package/build/modules/vc/data-integrity/libraries/contexts/credentials_v1.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/contexts/dataIntegrity_v2.mjs +86 -0
- package/build/modules/vc/data-integrity/libraries/contexts/dataIntegrity_v2.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/contexts/defaultContexts.mjs +40 -0
- package/build/modules/vc/data-integrity/libraries/contexts/defaultContexts.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/contexts/did_v1.mjs +59 -0
- package/build/modules/vc/data-integrity/libraries/contexts/did_v1.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/contexts/ed25519_v1.mjs +92 -0
- package/build/modules/vc/data-integrity/libraries/contexts/ed25519_v1.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/contexts/linkedvp_v1.mjs +12 -0
- package/build/modules/vc/data-integrity/libraries/contexts/linkedvp_v1.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/contexts/odrl.mjs +306 -0
- package/build/modules/vc/data-integrity/libraries/contexts/odrl.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/contexts/purl_ob_v3po.mjs +421 -0
- package/build/modules/vc/data-integrity/libraries/contexts/purl_ob_v3po.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/contexts/schema_org.mjs +3065 -0
- package/build/modules/vc/data-integrity/libraries/contexts/schema_org.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/contexts/secp256k1_v1.mjs +101 -0
- package/build/modules/vc/data-integrity/libraries/contexts/secp256k1_v1.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/contexts/security_v1.mjs +79 -0
- package/build/modules/vc/data-integrity/libraries/contexts/security_v1.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/contexts/security_v2.mjs +127 -0
- package/build/modules/vc/data-integrity/libraries/contexts/security_v2.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/contexts/submission.mjs +20 -0
- package/build/modules/vc/data-integrity/libraries/contexts/submission.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/contexts/vc_revocation_list_2020.mjs +42 -0
- package/build/modules/vc/data-integrity/libraries/contexts/vc_revocation_list_2020.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/documentLoader.d.mts +8 -0
- package/build/modules/vc/data-integrity/libraries/documentLoader.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/libraries/documentLoader.mjs +46 -0
- package/build/modules/vc/data-integrity/libraries/documentLoader.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/index.d.mts +29 -0
- package/build/modules/vc/data-integrity/libraries/index.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/libraries/index.mjs +22 -0
- package/build/modules/vc/data-integrity/libraries/index.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/jsonld-signatures.d.mts +18 -0
- package/build/modules/vc/data-integrity/libraries/jsonld-signatures.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/libraries/jsonld-signatures.mjs +19 -0
- package/build/modules/vc/data-integrity/libraries/jsonld-signatures.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/jsonld.d.mts +19 -0
- package/build/modules/vc/data-integrity/libraries/jsonld.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/libraries/jsonld.mjs +12 -0
- package/build/modules/vc/data-integrity/libraries/jsonld.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.mjs +14 -0
- package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.d.mts +7 -0
- package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.mjs +14 -0
- package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.mjs.map +1 -0
- package/build/modules/vc/data-integrity/libraries/vc.d.mts +31 -0
- package/build/modules/vc/data-integrity/libraries/vc.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/libraries/vc.mjs +12 -0
- package/build/modules/vc/data-integrity/libraries/vc.mjs.map +1 -0
- package/build/modules/vc/data-integrity/models/DataIntegrityProof.d.mts +37 -0
- package/build/modules/vc/data-integrity/models/DataIntegrityProof.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/models/DataIntegrityProof.mjs +79 -0
- package/build/modules/vc/data-integrity/models/DataIntegrityProof.mjs.map +1 -0
- package/build/modules/vc/data-integrity/models/GetProofsOptions.d.mts +2 -0
- package/build/modules/vc/data-integrity/models/GetProofsResult.d.mts +1 -0
- package/build/modules/vc/data-integrity/models/GetTypeOptions.d.mts +1 -0
- package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.d.mts +38 -0
- package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.mjs +9 -0
- package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.mjs.map +1 -0
- package/build/modules/vc/data-integrity/models/LdKeyPair.d.mts +38 -0
- package/build/modules/vc/data-integrity/models/LdKeyPair.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/models/LdKeyPair.mjs +27 -0
- package/build/modules/vc/data-integrity/models/LdKeyPair.mjs.map +1 -0
- package/build/modules/vc/data-integrity/models/LinkedDataProof.d.mts +34 -0
- package/build/modules/vc/data-integrity/models/LinkedDataProof.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/models/LinkedDataProof.mjs +63 -0
- package/build/modules/vc/data-integrity/models/LinkedDataProof.mjs.map +1 -0
- package/build/modules/vc/data-integrity/models/ProofTransformer.mjs +28 -0
- package/build/modules/vc/data-integrity/models/ProofTransformer.mjs.map +1 -0
- package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.d.mts +32 -0
- package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.mjs +63 -0
- package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.mjs.map +1 -0
- package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.d.mts +30 -0
- package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.mjs +54 -0
- package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.mjs.map +1 -0
- package/build/modules/vc/data-integrity/models/index.d.mts +5 -0
- package/build/modules/vc/data-integrity/models/index.mjs +7 -0
- package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.d.mts +60 -0
- package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.mjs +68 -0
- package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.mjs.map +1 -0
- package/build/modules/vc/data-integrity/proof-purposes/ProofPurpose.d.mts +5 -0
- package/build/modules/vc/data-integrity/proof-purposes/ProofPurpose.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/proof-purposes/index.d.mts +2 -0
- package/build/modules/vc/data-integrity/proof-purposes/index.mjs +3 -0
- package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.d.mts +100 -0
- package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.mjs +171 -0
- package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.mjs.map +1 -0
- package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.d.mts +83 -0
- package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.mjs +173 -0
- package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.mjs.map +1 -0
- package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2020.d.mts +110 -0
- package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2020.d.mts.map +1 -0
- package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2020.mjs +192 -0
- package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2020.mjs.map +1 -0
- package/build/modules/vc/data-integrity/signature-suites/ed25519/constants.mjs +9 -0
- package/build/modules/vc/data-integrity/signature-suites/ed25519/constants.mjs.map +1 -0
- package/build/modules/vc/data-integrity/signature-suites/ed25519/context.mjs +96 -0
- package/build/modules/vc/data-integrity/signature-suites/ed25519/context.mjs.map +1 -0
- package/build/modules/vc/data-integrity/signature-suites/ed25519/context2020.mjs +102 -0
- package/build/modules/vc/data-integrity/signature-suites/ed25519/context2020.mjs.map +1 -0
- package/build/modules/vc/data-integrity/signature-suites/index.d.mts +3 -0
- package/build/modules/vc/data-integrity/signature-suites/index.mjs +5 -0
- package/build/modules/vc/index.d.mts +73 -0
- package/build/modules/vc/index.mjs +66 -0
- package/build/modules/vc/jwt-vc/W3cJwtCredentialService.d.mts +70 -0
- package/build/modules/vc/jwt-vc/W3cJwtCredentialService.d.mts.map +1 -0
- package/build/modules/vc/jwt-vc/W3cJwtCredentialService.mjs +307 -0
- package/build/modules/vc/jwt-vc/W3cJwtCredentialService.mjs.map +1 -0
- package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.d.mts +58 -0
- package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.d.mts.map +1 -0
- package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.mjs +91 -0
- package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.mjs.map +1 -0
- package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.d.mts +49 -0
- package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.d.mts.map +1 -0
- package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.mjs +70 -0
- package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.mjs.map +1 -0
- package/build/modules/vc/jwt-vc/W3cV2JwtCredentialService.d.mts +50 -0
- package/build/modules/vc/jwt-vc/W3cV2JwtCredentialService.d.mts.map +1 -0
- package/build/modules/vc/jwt-vc/W3cV2JwtCredentialService.mjs +231 -0
- package/build/modules/vc/jwt-vc/W3cV2JwtCredentialService.mjs.map +1 -0
- package/build/modules/vc/jwt-vc/W3cV2JwtVerifiableCredential.d.mts +42 -0
- package/build/modules/vc/jwt-vc/W3cV2JwtVerifiableCredential.d.mts.map +1 -0
- package/build/modules/vc/jwt-vc/W3cV2JwtVerifiableCredential.mjs +66 -0
- package/build/modules/vc/jwt-vc/W3cV2JwtVerifiableCredential.mjs.map +1 -0
- package/build/modules/vc/jwt-vc/W3cV2JwtVerifiablePresentation.d.mts +43 -0
- package/build/modules/vc/jwt-vc/W3cV2JwtVerifiablePresentation.d.mts.map +1 -0
- package/build/modules/vc/jwt-vc/W3cV2JwtVerifiablePresentation.mjs +61 -0
- package/build/modules/vc/jwt-vc/W3cV2JwtVerifiablePresentation.mjs.map +1 -0
- package/build/modules/vc/jwt-vc/credentialTransformer.mjs +88 -0
- package/build/modules/vc/jwt-vc/credentialTransformer.mjs.map +1 -0
- package/build/modules/vc/jwt-vc/index.d.mts +6 -0
- package/build/modules/vc/jwt-vc/index.mjs +8 -0
- package/build/modules/vc/jwt-vc/presentationTransformer.mjs +45 -0
- package/build/modules/vc/jwt-vc/presentationTransformer.mjs.map +1 -0
- package/build/modules/vc/models/ClaimFormat.d.mts +25 -0
- package/build/modules/vc/models/ClaimFormat.d.mts.map +1 -0
- package/build/modules/vc/models/ClaimFormat.mjs +29 -0
- package/build/modules/vc/models/ClaimFormat.mjs.map +1 -0
- package/build/modules/vc/models/W3cV2VerifyResult.d.mts +85 -0
- package/build/modules/vc/models/W3cV2VerifyResult.d.mts.map +1 -0
- package/build/modules/vc/models/W3cVerifyResult.d.mts +112 -0
- package/build/modules/vc/models/W3cVerifyResult.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cCredential.d.mts +38 -0
- package/build/modules/vc/models/credential/W3cCredential.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cCredential.mjs +100 -0
- package/build/modules/vc/models/credential/W3cCredential.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cCredentialSchema.d.mts +13 -0
- package/build/modules/vc/models/credential/W3cCredentialSchema.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cCredentialSchema.mjs +22 -0
- package/build/modules/vc/models/credential/W3cCredentialSchema.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cCredentialStatus.d.mts +13 -0
- package/build/modules/vc/models/credential/W3cCredentialStatus.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cCredentialStatus.mjs +22 -0
- package/build/modules/vc/models/credential/W3cCredentialStatus.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cCredentialSubject.d.mts +20 -0
- package/build/modules/vc/models/credential/W3cCredentialSubject.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cCredentialSubject.mjs +66 -0
- package/build/modules/vc/models/credential/W3cCredentialSubject.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cIssuer.d.mts +19 -0
- package/build/modules/vc/models/credential/W3cIssuer.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cIssuer.mjs +45 -0
- package/build/modules/vc/models/credential/W3cIssuer.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cJsonCredential.d.mts +24 -0
- package/build/modules/vc/models/credential/W3cJsonCredential.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cV2Credential.d.mts +57 -0
- package/build/modules/vc/models/credential/W3cV2Credential.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cV2Credential.mjs +169 -0
- package/build/modules/vc/models/credential/W3cV2Credential.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cV2CredentialSchema.d.mts +20 -0
- package/build/modules/vc/models/credential/W3cV2CredentialSchema.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cV2CredentialSchema.mjs +31 -0
- package/build/modules/vc/models/credential/W3cV2CredentialSchema.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cV2CredentialStatus.d.mts +20 -0
- package/build/modules/vc/models/credential/W3cV2CredentialStatus.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cV2CredentialStatus.mjs +35 -0
- package/build/modules/vc/models/credential/W3cV2CredentialStatus.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cV2CredentialSubject.d.mts +18 -0
- package/build/modules/vc/models/credential/W3cV2CredentialSubject.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cV2CredentialSubject.mjs +33 -0
- package/build/modules/vc/models/credential/W3cV2CredentialSubject.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cV2EnvelopedVerifiableCredential.d.mts +38 -0
- package/build/modules/vc/models/credential/W3cV2EnvelopedVerifiableCredential.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cV2EnvelopedVerifiableCredential.mjs +113 -0
- package/build/modules/vc/models/credential/W3cV2EnvelopedVerifiableCredential.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cV2Evidence.d.mts +21 -0
- package/build/modules/vc/models/credential/W3cV2Evidence.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cV2Evidence.mjs +36 -0
- package/build/modules/vc/models/credential/W3cV2Evidence.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cV2Issuer.d.mts +22 -0
- package/build/modules/vc/models/credential/W3cV2Issuer.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cV2Issuer.mjs +53 -0
- package/build/modules/vc/models/credential/W3cV2Issuer.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cV2JsonCredential.d.mts +60 -0
- package/build/modules/vc/models/credential/W3cV2JsonCredential.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cV2LocalizedValue.d.mts +23 -0
- package/build/modules/vc/models/credential/W3cV2LocalizedValue.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cV2LocalizedValue.mjs +64 -0
- package/build/modules/vc/models/credential/W3cV2LocalizedValue.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cV2RefreshService.d.mts +18 -0
- package/build/modules/vc/models/credential/W3cV2RefreshService.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cV2RefreshService.mjs +27 -0
- package/build/modules/vc/models/credential/W3cV2RefreshService.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cV2TermsOfUse.d.mts +18 -0
- package/build/modules/vc/models/credential/W3cV2TermsOfUse.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cV2TermsOfUse.mjs +27 -0
- package/build/modules/vc/models/credential/W3cV2TermsOfUse.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cV2VerifiableCredential.d.mts +26 -0
- package/build/modules/vc/models/credential/W3cV2VerifiableCredential.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cV2VerifiableCredential.mjs +42 -0
- package/build/modules/vc/models/credential/W3cV2VerifiableCredential.mjs.map +1 -0
- package/build/modules/vc/models/credential/W3cVerifiableCredential.d.mts +10 -0
- package/build/modules/vc/models/credential/W3cVerifiableCredential.d.mts.map +1 -0
- package/build/modules/vc/models/credential/W3cVerifiableCredential.mjs +36 -0
- package/build/modules/vc/models/credential/W3cVerifiableCredential.mjs.map +1 -0
- package/build/modules/vc/models/credential/index.d.mts +19 -0
- package/build/modules/vc/models/credential/index.mjs +19 -0
- package/build/modules/vc/models/index.d.mts +30 -0
- package/build/modules/vc/models/index.mjs +25 -0
- package/build/modules/vc/models/presentation/W3cHolder.d.mts +16 -0
- package/build/modules/vc/models/presentation/W3cHolder.d.mts.map +1 -0
- package/build/modules/vc/models/presentation/W3cHolder.mjs +45 -0
- package/build/modules/vc/models/presentation/W3cHolder.mjs.map +1 -0
- package/build/modules/vc/models/presentation/W3cJsonPresentation.d.mts +20 -0
- package/build/modules/vc/models/presentation/W3cJsonPresentation.d.mts.map +1 -0
- package/build/modules/vc/models/presentation/W3cPresentation.d.mts +26 -0
- package/build/modules/vc/models/presentation/W3cPresentation.d.mts.map +1 -0
- package/build/modules/vc/models/presentation/W3cPresentation.mjs +63 -0
- package/build/modules/vc/models/presentation/W3cPresentation.mjs.map +1 -0
- package/build/modules/vc/models/presentation/W3cV2EnvelopedVerifiablePresentation.d.mts +39 -0
- package/build/modules/vc/models/presentation/W3cV2EnvelopedVerifiablePresentation.d.mts.map +1 -0
- package/build/modules/vc/models/presentation/W3cV2EnvelopedVerifiablePresentation.mjs +97 -0
- package/build/modules/vc/models/presentation/W3cV2EnvelopedVerifiablePresentation.mjs.map +1 -0
- package/build/modules/vc/models/presentation/W3cV2Holder.d.mts +20 -0
- package/build/modules/vc/models/presentation/W3cV2Holder.d.mts.map +1 -0
- package/build/modules/vc/models/presentation/W3cV2Holder.mjs +53 -0
- package/build/modules/vc/models/presentation/W3cV2Holder.mjs.map +1 -0
- package/build/modules/vc/models/presentation/W3cV2JsonPresentation.d.mts +18 -0
- package/build/modules/vc/models/presentation/W3cV2JsonPresentation.d.mts.map +1 -0
- package/build/modules/vc/models/presentation/W3cV2Presentation.d.mts +28 -0
- package/build/modules/vc/models/presentation/W3cV2Presentation.d.mts.map +1 -0
- package/build/modules/vc/models/presentation/W3cV2Presentation.mjs +64 -0
- package/build/modules/vc/models/presentation/W3cV2Presentation.mjs.map +1 -0
- package/build/modules/vc/models/presentation/W3cV2VerifiablePresentation.d.mts +27 -0
- package/build/modules/vc/models/presentation/W3cV2VerifiablePresentation.d.mts.map +1 -0
- package/build/modules/vc/models/presentation/W3cVerifiablePresentation.d.mts +11 -0
- package/build/modules/vc/models/presentation/W3cVerifiablePresentation.d.mts.map +1 -0
- package/build/modules/vc/models/presentation/index.d.mts +6 -0
- package/build/modules/vc/models/presentation/index.mjs +5 -0
- package/build/modules/vc/repository/W3cCredentialRecord.d.mts +81 -0
- package/build/modules/vc/repository/W3cCredentialRecord.d.mts.map +1 -0
- package/build/modules/vc/repository/W3cCredentialRecord.mjs +87 -0
- package/build/modules/vc/repository/W3cCredentialRecord.mjs.map +1 -0
- package/build/modules/vc/repository/W3cCredentialRepository.d.mts +12 -0
- package/build/modules/vc/repository/W3cCredentialRepository.d.mts.map +1 -0
- package/build/modules/vc/repository/W3cCredentialRepository.mjs +27 -0
- package/build/modules/vc/repository/W3cCredentialRepository.mjs.map +1 -0
- package/build/modules/vc/repository/W3cV2CredentialRecord.d.mts +67 -0
- package/build/modules/vc/repository/W3cV2CredentialRecord.d.mts.map +1 -0
- package/build/modules/vc/repository/W3cV2CredentialRecord.mjs +82 -0
- package/build/modules/vc/repository/W3cV2CredentialRecord.mjs.map +1 -0
- package/build/modules/vc/repository/W3cV2CredentialRepository.d.mts +12 -0
- package/build/modules/vc/repository/W3cV2CredentialRepository.d.mts.map +1 -0
- package/build/modules/vc/repository/W3cV2CredentialRepository.mjs +27 -0
- package/build/modules/vc/repository/W3cV2CredentialRepository.mjs.map +1 -0
- package/build/modules/vc/repository/index.d.mts +4 -0
- package/build/modules/vc/repository/index.mjs +6 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwt.d.mts +32 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwt.d.mts.map +1 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwt.mjs +33 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwt.mjs.map +1 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtCredentialService.d.mts +50 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtCredentialService.d.mts.map +1 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtCredentialService.mjs +250 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtCredentialService.mjs.map +1 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiableCredential.d.mts +42 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiableCredential.d.mts.map +1 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiableCredential.mjs +66 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiableCredential.mjs.map +1 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiablePresentation.d.mts +43 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiablePresentation.d.mts.map +1 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiablePresentation.mjs +61 -0
- package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiablePresentation.mjs.map +1 -0
- package/build/modules/vc/sd-jwt-vc/index.d.mts +4 -0
- package/build/modules/vc/sd-jwt-vc/index.mjs +6 -0
- package/build/modules/vc/util.d.mts +11 -0
- package/build/modules/vc/util.d.mts.map +1 -0
- package/build/modules/vc/util.mjs +19 -0
- package/build/modules/vc/util.mjs.map +1 -0
- package/build/modules/vc/v2-jwt-utils.mjs +96 -0
- package/build/modules/vc/v2-jwt-utils.mjs.map +1 -0
- package/build/modules/vc/validators.mjs +48 -0
- package/build/modules/vc/validators.mjs.map +1 -0
- package/build/modules/x509/X509Api.d.mts +30 -0
- package/build/modules/x509/X509Api.d.mts.map +1 -0
- package/build/modules/x509/X509Api.mjs +39 -0
- package/build/modules/x509/X509Api.mjs.map +1 -0
- package/build/modules/x509/X509Certificate.d.mts +115 -0
- package/build/modules/x509/X509Certificate.d.mts.map +1 -0
- package/build/modules/x509/X509Certificate.mjs +236 -0
- package/build/modules/x509/X509Certificate.mjs.map +1 -0
- package/build/modules/x509/X509Error.d.mts +8 -0
- package/build/modules/x509/X509Error.d.mts.map +1 -0
- package/build/modules/x509/X509Error.mjs +11 -0
- package/build/modules/x509/X509Error.mjs.map +1 -0
- package/build/modules/x509/X509Module.d.mts +22 -0
- package/build/modules/x509/X509Module.d.mts.map +1 -0
- package/build/modules/x509/X509Module.mjs +27 -0
- package/build/modules/x509/X509Module.mjs.map +1 -0
- package/build/modules/x509/X509ModuleConfig.d.mts +104 -0
- package/build/modules/x509/X509ModuleConfig.d.mts.map +1 -0
- package/build/modules/x509/X509ModuleConfig.mjs +40 -0
- package/build/modules/x509/X509ModuleConfig.mjs.map +1 -0
- package/build/modules/x509/X509Service.d.mts +47 -0
- package/build/modules/x509/X509Service.d.mts.map +1 -0
- package/build/modules/x509/X509Service.mjs +89 -0
- package/build/modules/x509/X509Service.mjs.map +1 -0
- package/build/modules/x509/X509ServiceOptions.d.mts +142 -0
- package/build/modules/x509/X509ServiceOptions.d.mts.map +1 -0
- package/build/modules/x509/X509ServiceOptions.mjs +3 -0
- package/build/modules/x509/extraction.d.mts +9 -0
- package/build/modules/x509/extraction.d.mts.map +1 -0
- package/build/modules/x509/extraction.mjs +12 -0
- package/build/modules/x509/extraction.mjs.map +1 -0
- package/build/modules/x509/index.d.mts +11 -0
- package/build/modules/x509/index.mjs +13 -0
- package/build/modules/x509/utils/extensions.d.mts +21 -0
- package/build/modules/x509/utils/extensions.d.mts.map +1 -0
- package/build/modules/x509/utils/extensions.mjs +51 -0
- package/build/modules/x509/utils/extensions.mjs.map +1 -0
- package/build/modules/x509/utils/index.d.mts +2 -0
- package/build/modules/x509/utils/index.mjs +4 -0
- package/build/modules/x509/utils/nameConversion.d.mts +7 -0
- package/build/modules/x509/utils/nameConversion.d.mts.map +1 -0
- package/build/modules/x509/utils/nameConversion.mjs +19 -0
- package/build/modules/x509/utils/nameConversion.mjs.map +1 -0
- package/build/plugins/DependencyManager.d.mts +57 -0
- package/build/plugins/DependencyManager.d.mts.map +1 -0
- package/build/plugins/DependencyManager.mjs +132 -0
- package/build/plugins/DependencyManager.mjs.map +1 -0
- package/build/plugins/Module.d.mts +62 -0
- package/build/plugins/Module.d.mts.map +1 -0
- package/build/plugins/index.d.mts +5 -0
- package/build/plugins/index.mjs +7 -0
- package/build/plugins/utils.d.mts +13 -0
- package/build/plugins/utils.d.mts.map +1 -0
- package/build/plugins/utils.mjs +18 -0
- package/build/plugins/utils.mjs.map +1 -0
- package/build/storage/BaseRecord.d.mts +61 -0
- package/build/storage/BaseRecord.d.mts.map +1 -0
- package/build/storage/BaseRecord.mjs +75 -0
- package/build/storage/BaseRecord.mjs.map +1 -0
- package/build/storage/FileSystem.d.mts +24 -0
- package/build/storage/FileSystem.d.mts.map +1 -0
- package/build/storage/Metadata.d.mts +61 -0
- package/build/storage/Metadata.d.mts.map +1 -0
- package/build/storage/Metadata.mjs +74 -0
- package/build/storage/Metadata.mjs.map +1 -0
- package/build/storage/Repository.d.mts +65 -0
- package/build/storage/Repository.d.mts.map +1 -0
- package/build/storage/Repository.mjs +153 -0
- package/build/storage/Repository.mjs.map +1 -0
- package/build/storage/RepositoryEvents.d.mts +33 -0
- package/build/storage/RepositoryEvents.d.mts.map +1 -0
- package/build/storage/RepositoryEvents.mjs +13 -0
- package/build/storage/RepositoryEvents.mjs.map +1 -0
- package/build/storage/StorageService.d.mts +99 -0
- package/build/storage/StorageService.d.mts.map +1 -0
- package/build/storage/index.mjs +8 -0
- package/build/storage/migration/StorageUpdateService.d.mts +29 -0
- package/build/storage/migration/StorageUpdateService.d.mts.map +1 -0
- package/build/storage/migration/StorageUpdateService.mjs +67 -0
- package/build/storage/migration/StorageUpdateService.mjs.map +1 -0
- package/build/storage/migration/UpdateAssistant.d.mts +47 -0
- package/build/storage/migration/UpdateAssistant.d.mts.map +1 -0
- package/build/storage/migration/UpdateAssistant.mjs +95 -0
- package/build/storage/migration/UpdateAssistant.mjs.map +1 -0
- package/build/storage/migration/error/StorageUpdateError.mjs +14 -0
- package/build/storage/migration/error/StorageUpdateError.mjs.map +1 -0
- package/build/storage/migration/index.d.mts +6 -0
- package/build/storage/migration/index.mjs +7 -0
- package/build/storage/migration/isUpToDate.d.mts +8 -0
- package/build/storage/migration/isUpToDate.d.mts.map +1 -0
- package/build/storage/migration/isUpToDate.mjs +15 -0
- package/build/storage/migration/isUpToDate.mjs.map +1 -0
- package/build/storage/migration/repository/StorageVersionRecord.d.mts +20 -0
- package/build/storage/migration/repository/StorageVersionRecord.d.mts.map +1 -0
- package/build/storage/migration/repository/StorageVersionRecord.mjs +31 -0
- package/build/storage/migration/repository/StorageVersionRecord.mjs.map +1 -0
- package/build/storage/migration/repository/StorageVersionRepository.d.mts +12 -0
- package/build/storage/migration/repository/StorageVersionRepository.d.mts.map +1 -0
- package/build/storage/migration/repository/StorageVersionRepository.mjs +27 -0
- package/build/storage/migration/repository/StorageVersionRepository.mjs.map +1 -0
- package/build/storage/migration/updates/0.3-0.3.1/did.mjs +36 -0
- package/build/storage/migration/updates/0.3-0.3.1/did.mjs.map +1 -0
- package/build/storage/migration/updates/0.3-0.3.1/index.d.mts +7 -0
- package/build/storage/migration/updates/0.3-0.3.1/index.d.mts.map +1 -0
- package/build/storage/migration/updates/0.3-0.3.1/index.mjs +12 -0
- package/build/storage/migration/updates/0.3-0.3.1/index.mjs.map +1 -0
- package/build/storage/migration/updates/0.3.1-0.4/cache.mjs +34 -0
- package/build/storage/migration/updates/0.3.1-0.4/cache.mjs.map +1 -0
- package/build/storage/migration/updates/0.3.1-0.4/did.mjs +41 -0
- package/build/storage/migration/updates/0.3.1-0.4/did.mjs.map +1 -0
- package/build/storage/migration/updates/0.3.1-0.4/index.d.mts +7 -0
- package/build/storage/migration/updates/0.3.1-0.4/index.d.mts.map +1 -0
- package/build/storage/migration/updates/0.3.1-0.4/index.mjs +16 -0
- package/build/storage/migration/updates/0.3.1-0.4/index.mjs.map +1 -0
- package/build/storage/migration/updates/0.3.1-0.4/w3cCredentialRecord.mjs +25 -0
- package/build/storage/migration/updates/0.3.1-0.4/w3cCredentialRecord.mjs.map +1 -0
- package/build/storage/migration/updates/0.4-0.5/index.d.mts +7 -0
- package/build/storage/migration/updates/0.4-0.5/index.d.mts.map +1 -0
- package/build/storage/migration/updates/0.4-0.5/index.mjs +12 -0
- package/build/storage/migration/updates/0.4-0.5/index.mjs.map +1 -0
- package/build/storage/migration/updates/0.4-0.5/w3cCredentialRecord.mjs +61 -0
- package/build/storage/migration/updates/0.4-0.5/w3cCredentialRecord.mjs.map +1 -0
- package/build/storage/migration/updates.d.mts +43 -0
- package/build/storage/migration/updates.d.mts.map +1 -0
- package/build/storage/migration/updates.mjs +42 -0
- package/build/storage/migration/updates.mjs.map +1 -0
- package/build/types.d.mts +68 -0
- package/build/types.d.mts.map +1 -0
- package/build/types.mjs +18 -0
- package/build/types.mjs.map +1 -0
- package/build/utils/JsonEncoder.d.mts +51 -0
- package/build/utils/JsonEncoder.d.mts.map +1 -0
- package/build/utils/JsonEncoder.mjs +69 -0
- package/build/utils/JsonEncoder.mjs.map +1 -0
- package/build/utils/JsonTransformer.d.mts +22 -0
- package/build/utils/JsonTransformer.d.mts.map +1 -0
- package/build/utils/JsonTransformer.mjs +37 -0
- package/build/utils/JsonTransformer.mjs.map +1 -0
- package/build/utils/MessageValidator.d.mts +13 -0
- package/build/utils/MessageValidator.d.mts.map +1 -0
- package/build/utils/MessageValidator.mjs +28 -0
- package/build/utils/MessageValidator.mjs.map +1 -0
- package/build/utils/MultiBaseEncoder.d.mts +30 -0
- package/build/utils/MultiBaseEncoder.d.mts.map +1 -0
- package/build/utils/MultiBaseEncoder.mjs +50 -0
- package/build/utils/MultiBaseEncoder.mjs.map +1 -0
- package/build/utils/MultiHashEncoder.d.mts +41 -0
- package/build/utils/MultiHashEncoder.d.mts.map +1 -0
- package/build/utils/MultiHashEncoder.mjs +79 -0
- package/build/utils/MultiHashEncoder.mjs.map +1 -0
- package/build/utils/TypedArrayEncoder.d.mts +68 -0
- package/build/utils/TypedArrayEncoder.d.mts.map +1 -0
- package/build/utils/TypedArrayEncoder.mjs +96 -0
- package/build/utils/TypedArrayEncoder.mjs.map +1 -0
- package/build/utils/VarintEncoder.d.mts +1 -0
- package/build/utils/VarintEncoder.mjs +22 -0
- package/build/utils/VarintEncoder.mjs.map +1 -0
- package/build/utils/array.d.mts +7 -0
- package/build/utils/array.d.mts.map +1 -0
- package/build/utils/array.mjs +16 -0
- package/build/utils/array.mjs.map +1 -0
- package/build/utils/base58.mjs +16 -0
- package/build/utils/base58.mjs.map +1 -0
- package/build/utils/base64.d.mts +5 -0
- package/build/utils/base64.d.mts.map +1 -0
- package/build/utils/base64.mjs +10 -0
- package/build/utils/base64.mjs.map +1 -0
- package/build/utils/buffer.d.mts +2 -0
- package/build/utils/buffer.mjs +5 -0
- package/build/utils/credentialUse.d.mts +84 -0
- package/build/utils/credentialUse.d.mts.map +1 -0
- package/build/utils/credentialUse.mjs +117 -0
- package/build/utils/credentialUse.mjs.map +1 -0
- package/build/utils/credentialUseTypes.d.mts +77 -0
- package/build/utils/credentialUseTypes.d.mts.map +1 -0
- package/build/utils/credentialUseTypes.mjs +83 -0
- package/build/utils/credentialUseTypes.mjs.map +1 -0
- package/build/utils/deepEquality.d.mts +13 -0
- package/build/utils/deepEquality.d.mts.map +1 -0
- package/build/utils/deepEquality.mjs +41 -0
- package/build/utils/deepEquality.mjs.map +1 -0
- package/build/utils/did.d.mts +13 -0
- package/build/utils/did.d.mts.map +1 -0
- package/build/utils/did.mjs +23 -0
- package/build/utils/did.mjs.map +1 -0
- package/build/utils/domain.d.mts +5 -0
- package/build/utils/domain.d.mts.map +1 -0
- package/build/utils/domain.mjs +11 -0
- package/build/utils/domain.mjs.map +1 -0
- package/build/utils/fetch.mjs +20 -0
- package/build/utils/fetch.mjs.map +1 -0
- package/build/utils/index.d.mts +15 -0
- package/build/utils/index.mjs +17 -0
- package/build/utils/mixins.d.mts +7 -0
- package/build/utils/mixins.d.mts.map +1 -0
- package/build/utils/objectEquality.d.mts +5 -0
- package/build/utils/objectEquality.d.mts.map +1 -0
- package/build/utils/objectEquality.mjs +18 -0
- package/build/utils/objectEquality.mjs.map +1 -0
- package/build/utils/path.d.mts +18 -0
- package/build/utils/path.d.mts.map +1 -0
- package/build/utils/path.mjs +35 -0
- package/build/utils/path.mjs.map +1 -0
- package/build/utils/timestamp.d.mts +13 -0
- package/build/utils/timestamp.d.mts.map +1 -0
- package/build/utils/timestamp.mjs +29 -0
- package/build/utils/timestamp.mjs.map +1 -0
- package/build/utils/transformers.d.mts +14 -0
- package/build/utils/transformers.d.mts.map +1 -0
- package/build/utils/transformers.mjs +41 -0
- package/build/utils/transformers.mjs.map +1 -0
- package/build/utils/uri.d.mts +5 -0
- package/build/utils/uri.d.mts.map +1 -0
- package/build/utils/uri.mjs +11 -0
- package/build/utils/uri.mjs.map +1 -0
- package/build/utils/uuid.d.mts +6 -0
- package/build/utils/uuid.d.mts.map +1 -0
- package/build/utils/uuid.mjs +15 -0
- package/build/utils/uuid.mjs.map +1 -0
- package/build/utils/validators.d.mts +22 -0
- package/build/utils/validators.d.mts.map +1 -0
- package/build/utils/validators.mjs +79 -0
- package/build/utils/validators.mjs.map +1 -0
- package/build/utils/version.d.mts +5 -0
- package/build/utils/version.d.mts.map +1 -0
- package/build/utils/version.mjs +21 -0
- package/build/utils/version.mjs.map +1 -0
- package/build/utils/zod-error.mjs +13 -0
- package/build/utils/zod-error.mjs.map +1 -0
- package/build/utils/zod.d.mts +2 -0
- package/build/utils/zod.mjs +20 -0
- package/build/utils/zod.mjs.map +1 -0
- package/package.json +58 -51
- package/build/agent/Agent.d.ts +0 -33
- package/build/agent/Agent.js +0 -187
- package/build/agent/Agent.js.map +0 -1
- package/build/agent/AgentConfig.d.ts +0 -60
- package/build/agent/AgentConfig.js +0 -82
- package/build/agent/AgentConfig.js.map +0 -1
- package/build/agent/AgentDependencies.d.ts +0 -11
- package/build/agent/AgentDependencies.js +0 -3
- package/build/agent/AgentDependencies.js.map +0 -1
- package/build/agent/AgentMessage.d.ts +0 -92
- package/build/agent/AgentMessage.js +0 -66
- package/build/agent/AgentMessage.js.map +0 -1
- package/build/agent/AgentModules.d.ts +0 -160
- package/build/agent/AgentModules.js +0 -115
- package/build/agent/AgentModules.js.map +0 -1
- package/build/agent/BaseAgent.d.ts +0 -69
- package/build/agent/BaseAgent.js +0 -147
- package/build/agent/BaseAgent.js.map +0 -1
- package/build/agent/BaseMessage.d.ts +0 -11
- package/build/agent/BaseMessage.js +0 -34
- package/build/agent/BaseMessage.js.map +0 -1
- package/build/agent/Dispatcher.d.ts +0 -15
- package/build/agent/Dispatcher.js +0 -132
- package/build/agent/Dispatcher.js.map +0 -1
- package/build/agent/EnvelopeService.d.ts +0 -21
- package/build/agent/EnvelopeService.js +0 -66
- package/build/agent/EnvelopeService.js.map +0 -1
- package/build/agent/EventEmitter.d.ts +0 -15
- package/build/agent/EventEmitter.js +0 -48
- package/build/agent/EventEmitter.js.map +0 -1
- package/build/agent/Events.d.ts +0 -46
- package/build/agent/Events.js +0 -17
- package/build/agent/Events.js.map +0 -1
- package/build/agent/FeatureRegistry.d.ts +0 -21
- package/build/agent/FeatureRegistry.js +0 -66
- package/build/agent/FeatureRegistry.js.map +0 -1
- package/build/agent/MessageHandler.d.ts +0 -14
- package/build/agent/MessageHandler.js +0 -3
- package/build/agent/MessageHandler.js.map +0 -1
- package/build/agent/MessageHandlerMiddleware.d.ts +0 -7
- package/build/agent/MessageHandlerMiddleware.js +0 -26
- package/build/agent/MessageHandlerMiddleware.js.map +0 -1
- package/build/agent/MessageHandlerRegistry.d.ts +0 -30
- package/build/agent/MessageHandlerRegistry.js +0 -98
- package/build/agent/MessageHandlerRegistry.js.map +0 -1
- package/build/agent/MessageReceiver.d.ts +0 -63
- package/build/agent/MessageReceiver.js +0 -245
- package/build/agent/MessageReceiver.js.map +0 -1
- package/build/agent/MessageSender.d.ts +0 -56
- package/build/agent/MessageSender.js +0 -472
- package/build/agent/MessageSender.js.map +0 -1
- package/build/agent/TransportService.d.ts +0 -32
- package/build/agent/TransportService.js +0 -78
- package/build/agent/TransportService.js.map +0 -1
- package/build/agent/context/AgentContext.d.ts +0 -39
- package/build/agent/context/AgentContext.js +0 -40
- package/build/agent/context/AgentContext.js.map +0 -1
- package/build/agent/context/AgentContextProvider.d.ts +0 -26
- package/build/agent/context/AgentContextProvider.js +0 -3
- package/build/agent/context/AgentContextProvider.js.map +0 -1
- package/build/agent/context/DefaultAgentContextProvider.d.ts +0 -17
- package/build/agent/context/DefaultAgentContextProvider.js +0 -54
- package/build/agent/context/DefaultAgentContextProvider.js.map +0 -1
- package/build/agent/context/index.d.ts +0 -3
- package/build/agent/context/index.js +0 -20
- package/build/agent/context/index.js.map +0 -1
- package/build/agent/getOutboundMessageContext.d.ts +0 -27
- package/build/agent/getOutboundMessageContext.js +0 -198
- package/build/agent/getOutboundMessageContext.js.map +0 -1
- package/build/agent/index.d.ts +0 -1
- package/build/agent/index.js +0 -18
- package/build/agent/index.js.map +0 -1
- package/build/agent/models/InboundMessageContext.d.ts +0 -46
- package/build/agent/models/InboundMessageContext.js +0 -48
- package/build/agent/models/InboundMessageContext.js.map +0 -1
- package/build/agent/models/OutboundMessageContext.d.ts +0 -51
- package/build/agent/models/OutboundMessageContext.js +0 -46
- package/build/agent/models/OutboundMessageContext.js.map +0 -1
- package/build/agent/models/OutboundMessageSendStatus.d.ts +0 -6
- package/build/agent/models/OutboundMessageSendStatus.js +0 -11
- package/build/agent/models/OutboundMessageSendStatus.js.map +0 -1
- package/build/agent/models/features/Feature.d.ts +0 -18
- package/build/agent/models/features/Feature.js +0 -62
- package/build/agent/models/features/Feature.js.map +0 -1
- package/build/agent/models/features/FeatureQuery.d.ts +0 -9
- package/build/agent/models/features/FeatureQuery.js +0 -33
- package/build/agent/models/features/FeatureQuery.js.map +0 -1
- package/build/agent/models/features/GoalCode.d.ts +0 -7
- package/build/agent/models/features/GoalCode.js +0 -12
- package/build/agent/models/features/GoalCode.js.map +0 -1
- package/build/agent/models/features/GovernanceFramework.d.ts +0 -7
- package/build/agent/models/features/GovernanceFramework.js +0 -12
- package/build/agent/models/features/GovernanceFramework.js.map +0 -1
- package/build/agent/models/features/Protocol.d.ts +0 -10
- package/build/agent/models/features/Protocol.js +0 -30
- package/build/agent/models/features/Protocol.js.map +0 -1
- package/build/agent/models/features/index.d.ts +0 -5
- package/build/agent/models/features/index.js +0 -22
- package/build/agent/models/features/index.js.map +0 -1
- package/build/agent/models/index.d.ts +0 -4
- package/build/agent/models/index.js +0 -21
- package/build/agent/models/index.js.map +0 -1
- package/build/constants.d.ts +0 -12
- package/build/constants.js +0 -16
- package/build/constants.js.map +0 -1
- package/build/crypto/JwsService.d.ts +0 -48
- package/build/crypto/JwsService.js +0 -213
- package/build/crypto/JwsService.js.map +0 -1
- package/build/crypto/JwsTypes.d.ts +0 -52
- package/build/crypto/JwsTypes.js +0 -5
- package/build/crypto/JwsTypes.js.map +0 -1
- package/build/crypto/Key.d.ts +0 -16
- package/build/crypto/Key.js +0 -55
- package/build/crypto/Key.js.map +0 -1
- package/build/crypto/KeyBackend.d.ts +0 -19
- package/build/crypto/KeyBackend.js +0 -24
- package/build/crypto/KeyBackend.js.map +0 -1
- package/build/crypto/KeyType.d.ts +0 -11
- package/build/crypto/KeyType.js +0 -16
- package/build/crypto/KeyType.js.map +0 -1
- package/build/crypto/WalletKeyPair.d.ts +0 -107
- package/build/crypto/WalletKeyPair.js +0 -94
- package/build/crypto/WalletKeyPair.js.map +0 -1
- package/build/crypto/__tests__/__fixtures__/didJwsz6Mkf.d.ts +0 -24
- package/build/crypto/__tests__/__fixtures__/didJwsz6Mkf.js +0 -29
- package/build/crypto/__tests__/__fixtures__/didJwsz6Mkf.js.map +0 -1
- package/build/crypto/__tests__/__fixtures__/didJwsz6Mkv.d.ts +0 -24
- package/build/crypto/__tests__/__fixtures__/didJwsz6Mkv.js +0 -29
- package/build/crypto/__tests__/__fixtures__/didJwsz6Mkv.js.map +0 -1
- package/build/crypto/__tests__/__fixtures__/didJwszDnaey.d.ts +0 -24
- package/build/crypto/__tests__/__fixtures__/didJwszDnaey.js +0 -29
- package/build/crypto/__tests__/__fixtures__/didJwszDnaey.js.map +0 -1
- package/build/crypto/hashes/Hasher.d.ts +0 -4
- package/build/crypto/hashes/Hasher.js +0 -20
- package/build/crypto/hashes/Hasher.js.map +0 -1
- package/build/crypto/hashes/IHash.d.ts +0 -3
- package/build/crypto/hashes/IHash.js +0 -3
- package/build/crypto/hashes/IHash.js.map +0 -1
- package/build/crypto/hashes/Sha1.d.ts +0 -4
- package/build/crypto/hashes/Sha1.js +0 -11
- package/build/crypto/hashes/Sha1.js.map +0 -1
- package/build/crypto/hashes/Sha256.d.ts +0 -4
- package/build/crypto/hashes/Sha256.js +0 -11
- package/build/crypto/hashes/Sha256.js.map +0 -1
- package/build/crypto/hashes/index.d.ts +0 -3
- package/build/crypto/hashes/index.js +0 -20
- package/build/crypto/hashes/index.js.map +0 -1
- package/build/crypto/index.d.ts +0 -10
- package/build/crypto/index.js +0 -31
- package/build/crypto/index.js.map +0 -1
- package/build/crypto/jose/index.d.ts +0 -3
- package/build/crypto/jose/index.js +0 -20
- package/build/crypto/jose/index.js.map +0 -1
- package/build/crypto/jose/jwa/alg.d.ts +0 -37
- package/build/crypto/jose/jwa/alg.js +0 -42
- package/build/crypto/jose/jwa/alg.js.map +0 -1
- package/build/crypto/jose/jwa/crv.d.ts +0 -8
- package/build/crypto/jose/jwa/crv.js +0 -13
- package/build/crypto/jose/jwa/crv.js.map +0 -1
- package/build/crypto/jose/jwa/index.d.ts +0 -3
- package/build/crypto/jose/jwa/index.js +0 -11
- package/build/crypto/jose/jwa/index.js.map +0 -1
- package/build/crypto/jose/jwa/kty.d.ts +0 -6
- package/build/crypto/jose/jwa/kty.js +0 -11
- package/build/crypto/jose/jwa/kty.js.map +0 -1
- package/build/crypto/jose/jwk/Ed25519Jwk.d.ts +0 -31
- package/build/crypto/jose/jwk/Ed25519Jwk.js +0 -63
- package/build/crypto/jose/jwk/Ed25519Jwk.js.map +0 -1
- package/build/crypto/jose/jwk/Jwk.d.ts +0 -28
- package/build/crypto/jose/jwk/Jwk.js +0 -20
- package/build/crypto/jose/jwk/Jwk.js.map +0 -1
- package/build/crypto/jose/jwk/K256Jwk.d.ts +0 -41
- package/build/crypto/jose/jwk/K256Jwk.js +0 -80
- package/build/crypto/jose/jwk/K256Jwk.js.map +0 -1
- package/build/crypto/jose/jwk/P256Jwk.d.ts +0 -41
- package/build/crypto/jose/jwk/P256Jwk.js +0 -80
- package/build/crypto/jose/jwk/P256Jwk.js.map +0 -1
- package/build/crypto/jose/jwk/P384Jwk.d.ts +0 -41
- package/build/crypto/jose/jwk/P384Jwk.js +0 -80
- package/build/crypto/jose/jwk/P384Jwk.js.map +0 -1
- package/build/crypto/jose/jwk/P521Jwk.d.ts +0 -41
- package/build/crypto/jose/jwk/P521Jwk.js +0 -80
- package/build/crypto/jose/jwk/P521Jwk.js.map +0 -1
- package/build/crypto/jose/jwk/X25519Jwk.d.ts +0 -30
- package/build/crypto/jose/jwk/X25519Jwk.js +0 -67
- package/build/crypto/jose/jwk/X25519Jwk.js.map +0 -1
- package/build/crypto/jose/jwk/ecCompression.d.ts +0 -5
- package/build/crypto/jose/jwk/ecCompression.js +0 -108
- package/build/crypto/jose/jwk/ecCompression.js.map +0 -1
- package/build/crypto/jose/jwk/index.d.ts +0 -7
- package/build/crypto/jose/jwk/index.js +0 -31
- package/build/crypto/jose/jwk/index.js.map +0 -1
- package/build/crypto/jose/jwk/transform.d.ts +0 -14
- package/build/crypto/jose/jwk/transform.js +0 -58
- package/build/crypto/jose/jwk/transform.js.map +0 -1
- package/build/crypto/jose/jwk/validate.d.ts +0 -16
- package/build/crypto/jose/jwk/validate.js +0 -23
- package/build/crypto/jose/jwk/validate.js.map +0 -1
- package/build/crypto/jose/jwt/Jwt.d.ts +0 -22
- package/build/crypto/jose/jwt/Jwt.js +0 -34
- package/build/crypto/jose/jwt/Jwt.js.map +0 -1
- package/build/crypto/jose/jwt/JwtPayload.d.ts +0 -101
- package/build/crypto/jose/jwt/JwtPayload.js +0 -127
- package/build/crypto/jose/jwt/JwtPayload.js.map +0 -1
- package/build/crypto/jose/jwt/index.d.ts +0 -2
- package/build/crypto/jose/jwt/index.js +0 -8
- package/build/crypto/jose/jwt/index.js.map +0 -1
- package/build/crypto/keyUtils.d.ts +0 -6
- package/build/crypto/keyUtils.js +0 -65
- package/build/crypto/keyUtils.js.map +0 -1
- package/build/crypto/multiCodecKey.d.ts +0 -3
- package/build/crypto/multiCodecKey.js +0 -33
- package/build/crypto/multiCodecKey.js.map +0 -1
- package/build/crypto/signing-provider/SigningProvider.d.ts +0 -27
- package/build/crypto/signing-provider/SigningProvider.js +0 -3
- package/build/crypto/signing-provider/SigningProvider.js.map +0 -1
- package/build/crypto/signing-provider/SigningProviderError.d.ts +0 -3
- package/build/crypto/signing-provider/SigningProviderError.js +0 -8
- package/build/crypto/signing-provider/SigningProviderError.js.map +0 -1
- package/build/crypto/signing-provider/SigningProviderRegistry.d.ts +0 -10
- package/build/crypto/signing-provider/SigningProviderRegistry.js +0 -49
- package/build/crypto/signing-provider/SigningProviderRegistry.js.map +0 -1
- package/build/crypto/signing-provider/index.d.ts +0 -3
- package/build/crypto/signing-provider/index.js +0 -20
- package/build/crypto/signing-provider/index.js.map +0 -1
- package/build/crypto/webcrypto/CredoSubtle.d.ts +0 -5
- package/build/crypto/webcrypto/CredoSubtle.js +0 -40
- package/build/crypto/webcrypto/CredoSubtle.js.map +0 -1
- package/build/crypto/webcrypto/CredoWalletWebCrypto.d.ts +0 -14
- package/build/crypto/webcrypto/CredoWalletWebCrypto.js +0 -87
- package/build/crypto/webcrypto/CredoWalletWebCrypto.js.map +0 -1
- package/build/crypto/webcrypto/CredoWebCrypto.d.ts +0 -10
- package/build/crypto/webcrypto/CredoWebCrypto.js +0 -45
- package/build/crypto/webcrypto/CredoWebCrypto.js.map +0 -1
- package/build/crypto/webcrypto/CredoWebCryptoError.d.ts +0 -3
- package/build/crypto/webcrypto/CredoWebCryptoError.js +0 -8
- package/build/crypto/webcrypto/CredoWebCryptoError.js.map +0 -1
- package/build/crypto/webcrypto/CredoWebCryptoKey.d.ts +0 -11
- package/build/crypto/webcrypto/CredoWebCryptoKey.js +0 -39
- package/build/crypto/webcrypto/CredoWebCryptoKey.js.map +0 -1
- package/build/crypto/webcrypto/algorithmIdentifiers.d.ts +0 -31
- package/build/crypto/webcrypto/algorithmIdentifiers.js +0 -41
- package/build/crypto/webcrypto/algorithmIdentifiers.js.map +0 -1
- package/build/crypto/webcrypto/index.d.ts +0 -2
- package/build/crypto/webcrypto/index.js +0 -19
- package/build/crypto/webcrypto/index.js.map +0 -1
- package/build/crypto/webcrypto/providers/CredoEcdsaProvider.d.ts +0 -13
- package/build/crypto/webcrypto/providers/CredoEcdsaProvider.js +0 -55
- package/build/crypto/webcrypto/providers/CredoEcdsaProvider.js.map +0 -1
- package/build/crypto/webcrypto/providers/CredoEd25519Provider.d.ts +0 -13
- package/build/crypto/webcrypto/providers/CredoEd25519Provider.js +0 -55
- package/build/crypto/webcrypto/providers/CredoEd25519Provider.js.map +0 -1
- package/build/crypto/webcrypto/providers/CredoSha1Provider.d.ts +0 -7
- package/build/crypto/webcrypto/providers/CredoSha1Provider.js +0 -47
- package/build/crypto/webcrypto/providers/CredoSha1Provider.js.map +0 -1
- package/build/crypto/webcrypto/providers/CredoSha256Provider.d.ts +0 -7
- package/build/crypto/webcrypto/providers/CredoSha256Provider.js +0 -47
- package/build/crypto/webcrypto/providers/CredoSha256Provider.js.map +0 -1
- package/build/crypto/webcrypto/providers/index.d.ts +0 -3
- package/build/crypto/webcrypto/providers/index.js +0 -20
- package/build/crypto/webcrypto/providers/index.js.map +0 -1
- package/build/crypto/webcrypto/types.d.ts +0 -42
- package/build/crypto/webcrypto/types.js +0 -7
- package/build/crypto/webcrypto/types.js.map +0 -1
- package/build/crypto/webcrypto/utils/index.d.ts +0 -1
- package/build/crypto/webcrypto/utils/index.js +0 -18
- package/build/crypto/webcrypto/utils/index.js.map +0 -1
- package/build/crypto/webcrypto/utils/keyAlgorithmConversion.d.ts +0 -7
- package/build/crypto/webcrypto/utils/keyAlgorithmConversion.js +0 -80
- package/build/crypto/webcrypto/utils/keyAlgorithmConversion.js.map +0 -1
- package/build/decorators/ack/AckDecorator.d.ts +0 -13
- package/build/decorators/ack/AckDecorator.js +0 -38
- package/build/decorators/ack/AckDecorator.js.map +0 -1
- package/build/decorators/ack/AckDecoratorExtension.d.ts +0 -13
- package/build/decorators/ack/AckDecoratorExtension.js +0 -38
- package/build/decorators/ack/AckDecoratorExtension.js.map +0 -1
- package/build/decorators/attachment/Attachment.d.ts +0 -75
- package/build/decorators/attachment/Attachment.js +0 -168
- package/build/decorators/attachment/Attachment.js.map +0 -1
- package/build/decorators/attachment/AttachmentExtension.d.ts +0 -15
- package/build/decorators/attachment/AttachmentExtension.js +0 -41
- package/build/decorators/attachment/AttachmentExtension.js.map +0 -1
- package/build/decorators/l10n/L10nDecorator.d.ts +0 -7
- package/build/decorators/l10n/L10nDecorator.js +0 -13
- package/build/decorators/l10n/L10nDecorator.js.map +0 -1
- package/build/decorators/l10n/L10nDecoratorExtension.d.ts +0 -12
- package/build/decorators/l10n/L10nDecoratorExtension.js +0 -40
- package/build/decorators/l10n/L10nDecoratorExtension.js.map +0 -1
- package/build/decorators/service/ServiceDecorator.d.ts +0 -20
- package/build/decorators/service/ServiceDecorator.js +0 -63
- package/build/decorators/service/ServiceDecorator.js.map +0 -1
- package/build/decorators/service/ServiceDecoratorExtension.d.ts +0 -12
- package/build/decorators/service/ServiceDecoratorExtension.js +0 -31
- package/build/decorators/service/ServiceDecoratorExtension.js.map +0 -1
- package/build/decorators/signature/SignatureDecorator.d.ts +0 -11
- package/build/decorators/signature/SignatureDecorator.js +0 -55
- package/build/decorators/signature/SignatureDecorator.js.map +0 -1
- package/build/decorators/signature/SignatureDecoratorUtils.d.ts +0 -21
- package/build/decorators/signature/SignatureDecoratorUtils.js +0 -58
- package/build/decorators/signature/SignatureDecoratorUtils.js.map +0 -1
- package/build/decorators/thread/ThreadDecorator.d.ts +0 -26
- package/build/decorators/thread/ThreadDecorator.js +0 -52
- package/build/decorators/thread/ThreadDecorator.js.map +0 -1
- package/build/decorators/thread/ThreadDecoratorExtension.d.ts +0 -15
- package/build/decorators/thread/ThreadDecoratorExtension.js +0 -36
- package/build/decorators/thread/ThreadDecoratorExtension.js.map +0 -1
- package/build/decorators/timing/TimingDecorator.d.ts +0 -38
- package/build/decorators/timing/TimingDecorator.js +0 -93
- package/build/decorators/timing/TimingDecorator.js.map +0 -1
- package/build/decorators/timing/TimingDecoratorExtension.d.ts +0 -14
- package/build/decorators/timing/TimingDecoratorExtension.js +0 -32
- package/build/decorators/timing/TimingDecoratorExtension.js.map +0 -1
- package/build/decorators/transport/TransportDecorator.d.ts +0 -20
- package/build/decorators/transport/TransportDecorator.js +0 -51
- package/build/decorators/transport/TransportDecorator.js.map +0 -1
- package/build/decorators/transport/TransportDecoratorExtension.d.ts +0 -13
- package/build/decorators/transport/TransportDecoratorExtension.js +0 -54
- package/build/decorators/transport/TransportDecoratorExtension.js.map +0 -1
- package/build/error/BaseError.d.ts +0 -42
- package/build/error/BaseError.js +0 -70
- package/build/error/BaseError.js.map +0 -1
- package/build/error/ClassValidationError.d.ts +0 -11
- package/build/error/ClassValidationError.js +0 -18
- package/build/error/ClassValidationError.js.map +0 -1
- package/build/error/CredoError.d.ts +0 -11
- package/build/error/CredoError.js +0 -16
- package/build/error/CredoError.js.map +0 -1
- package/build/error/MessageSendingError.d.ts +0 -9
- package/build/error/MessageSendingError.js +0 -12
- package/build/error/MessageSendingError.js.map +0 -1
- package/build/error/RecordDuplicateError.d.ts +0 -7
- package/build/error/RecordDuplicateError.js +0 -11
- package/build/error/RecordDuplicateError.js.map +0 -1
- package/build/error/RecordNotFoundError.d.ts +0 -7
- package/build/error/RecordNotFoundError.js +0 -11
- package/build/error/RecordNotFoundError.js.map +0 -1
- package/build/error/ValidationErrorUtils.d.ts +0 -2
- package/build/error/ValidationErrorUtils.js +0 -12
- package/build/error/ValidationErrorUtils.js.map +0 -1
- package/build/error/index.d.ts +0 -5
- package/build/error/index.js +0 -22
- package/build/error/index.js.map +0 -1
- package/build/index.d.ts +0 -74
- package/build/index.js +0 -129
- package/build/index.js.map +0 -1
- package/build/logger/BaseLogger.d.ts +0 -14
- package/build/logger/BaseLogger.js +0 -14
- package/build/logger/BaseLogger.js.map +0 -1
- package/build/logger/ConsoleLogger.d.ts +0 -12
- package/build/logger/ConsoleLogger.js +0 -61
- package/build/logger/ConsoleLogger.js.map +0 -1
- package/build/logger/Logger.d.ts +0 -20
- package/build/logger/Logger.js +0 -16
- package/build/logger/Logger.js.map +0 -1
- package/build/logger/index.d.ts +0 -3
- package/build/logger/index.js +0 -20
- package/build/logger/index.js.map +0 -1
- package/build/logger/replaceError.d.ts +0 -1
- package/build/logger/replaceError.js +0 -17
- package/build/logger/replaceError.js.map +0 -1
- package/build/modules/basic-messages/BasicMessageEvents.d.ts +0 -13
- package/build/modules/basic-messages/BasicMessageEvents.js +0 -8
- package/build/modules/basic-messages/BasicMessageEvents.js.map +0 -1
- package/build/modules/basic-messages/BasicMessageRole.d.ts +0 -4
- package/build/modules/basic-messages/BasicMessageRole.js +0 -9
- package/build/modules/basic-messages/BasicMessageRole.js.map +0 -1
- package/build/modules/basic-messages/BasicMessagesApi.d.ts +0 -58
- package/build/modules/basic-messages/BasicMessagesApi.js +0 -103
- package/build/modules/basic-messages/BasicMessagesApi.js.map +0 -1
- package/build/modules/basic-messages/BasicMessagesModule.d.ts +0 -10
- package/build/modules/basic-messages/BasicMessagesModule.js +0 -29
- package/build/modules/basic-messages/BasicMessagesModule.js.map +0 -1
- package/build/modules/basic-messages/handlers/BasicMessageHandler.d.ts +0 -9
- package/build/modules/basic-messages/handlers/BasicMessageHandler.js +0 -16
- package/build/modules/basic-messages/handlers/BasicMessageHandler.js.map +0 -1
- package/build/modules/basic-messages/handlers/index.d.ts +0 -1
- package/build/modules/basic-messages/handlers/index.js +0 -18
- package/build/modules/basic-messages/handlers/index.js.map +0 -1
- package/build/modules/basic-messages/index.d.ts +0 -7
- package/build/modules/basic-messages/index.js +0 -24
- package/build/modules/basic-messages/index.js.map +0 -1
- package/build/modules/basic-messages/messages/BasicMessage.d.ts +0 -19
- package/build/modules/basic-messages/messages/BasicMessage.js +0 -53
- package/build/modules/basic-messages/messages/BasicMessage.js.map +0 -1
- package/build/modules/basic-messages/messages/index.d.ts +0 -1
- package/build/modules/basic-messages/messages/index.js +0 -18
- package/build/modules/basic-messages/messages/index.js.map +0 -1
- package/build/modules/basic-messages/repository/BasicMessageRecord.d.ts +0 -39
- package/build/modules/basic-messages/repository/BasicMessageRecord.js +0 -29
- package/build/modules/basic-messages/repository/BasicMessageRecord.js.map +0 -1
- package/build/modules/basic-messages/repository/BasicMessageRepository.d.ts +0 -7
- package/build/modules/basic-messages/repository/BasicMessageRepository.js +0 -32
- package/build/modules/basic-messages/repository/BasicMessageRepository.js.map +0 -1
- package/build/modules/basic-messages/repository/index.d.ts +0 -2
- package/build/modules/basic-messages/repository/index.js +0 -19
- package/build/modules/basic-messages/repository/index.js.map +0 -1
- package/build/modules/basic-messages/services/BasicMessageService.d.ts +0 -26
- package/build/modules/basic-messages/services/BasicMessageService.js +0 -86
- package/build/modules/basic-messages/services/BasicMessageService.js.map +0 -1
- package/build/modules/basic-messages/services/index.d.ts +0 -1
- package/build/modules/basic-messages/services/index.js +0 -18
- package/build/modules/basic-messages/services/index.js.map +0 -1
- package/build/modules/cache/Cache.d.ts +0 -6
- package/build/modules/cache/Cache.js +0 -3
- package/build/modules/cache/Cache.js.map +0 -1
- package/build/modules/cache/CacheModule.d.ts +0 -10
- package/build/modules/cache/CacheModule.js +0 -23
- package/build/modules/cache/CacheModule.js.map +0 -1
- package/build/modules/cache/CacheModuleConfig.d.ts +0 -21
- package/build/modules/cache/CacheModuleConfig.js +0 -14
- package/build/modules/cache/CacheModuleConfig.js.map +0 -1
- package/build/modules/cache/InMemoryLruCache.d.ts +0 -21
- package/build/modules/cache/InMemoryLruCache.js +0 -51
- package/build/modules/cache/InMemoryLruCache.js.map +0 -1
- package/build/modules/cache/index.d.ts +0 -5
- package/build/modules/cache/index.js +0 -14
- package/build/modules/cache/index.js.map +0 -1
- package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.d.ts +0 -22
- package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.js +0 -38
- package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.js.map +0 -1
- package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRepository.d.ts +0 -7
- package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRepository.js +0 -32
- package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRepository.js.map +0 -1
- package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.d.ts +0 -34
- package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.js +0 -126
- package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.js.map +0 -1
- package/build/modules/cache/singleContextLruCache/index.d.ts +0 -1
- package/build/modules/cache/singleContextLruCache/index.js +0 -6
- package/build/modules/cache/singleContextLruCache/index.js.map +0 -1
- package/build/modules/common/index.d.ts +0 -1
- package/build/modules/common/index.js +0 -18
- package/build/modules/common/index.js.map +0 -1
- package/build/modules/common/messages/AckMessage.d.ts +0 -26
- package/build/modules/common/messages/AckMessage.js +0 -54
- package/build/modules/common/messages/AckMessage.js.map +0 -1
- package/build/modules/connections/ConnectionEvents.d.ts +0 -28
- package/build/modules/connections/ConnectionEvents.js +0 -9
- package/build/modules/connections/ConnectionEvents.js.map +0 -1
- package/build/modules/connections/ConnectionsApi.d.ts +0 -195
- package/build/modules/connections/ConnectionsApi.js +0 -450
- package/build/modules/connections/ConnectionsApi.js.map +0 -1
- package/build/modules/connections/ConnectionsModule.d.ts +0 -14
- package/build/modules/connections/ConnectionsModule.js +0 -43
- package/build/modules/connections/ConnectionsModule.js.map +0 -1
- package/build/modules/connections/ConnectionsModuleConfig.d.ts +0 -47
- package/build/modules/connections/ConnectionsModuleConfig.js +0 -57
- package/build/modules/connections/ConnectionsModuleConfig.js.map +0 -1
- package/build/modules/connections/DidExchangeProtocol.d.ts +0 -60
- package/build/modules/connections/DidExchangeProtocol.js +0 -484
- package/build/modules/connections/DidExchangeProtocol.js.map +0 -1
- package/build/modules/connections/DidExchangeStateMachine.d.ts +0 -10
- package/build/modules/connections/DidExchangeStateMachine.js +0 -78
- package/build/modules/connections/DidExchangeStateMachine.js.map +0 -1
- package/build/modules/connections/TrustPingEvents.d.ts +0 -21
- package/build/modules/connections/TrustPingEvents.js +0 -9
- package/build/modules/connections/TrustPingEvents.js.map +0 -1
- package/build/modules/connections/errors/ConnectionProblemReportError.d.ts +0 -13
- package/build/modules/connections/errors/ConnectionProblemReportError.js +0 -19
- package/build/modules/connections/errors/ConnectionProblemReportError.js.map +0 -1
- package/build/modules/connections/errors/ConnectionProblemReportReason.d.ts +0 -11
- package/build/modules/connections/errors/ConnectionProblemReportReason.js +0 -16
- package/build/modules/connections/errors/ConnectionProblemReportReason.js.map +0 -1
- package/build/modules/connections/errors/DidExchangeProblemReportError.d.ts +0 -13
- package/build/modules/connections/errors/DidExchangeProblemReportError.js +0 -19
- package/build/modules/connections/errors/DidExchangeProblemReportError.js.map +0 -1
- package/build/modules/connections/errors/DidExchangeProblemReportReason.d.ts +0 -12
- package/build/modules/connections/errors/DidExchangeProblemReportReason.js +0 -17
- package/build/modules/connections/errors/DidExchangeProblemReportReason.js.map +0 -1
- package/build/modules/connections/errors/index.d.ts +0 -4
- package/build/modules/connections/errors/index.js +0 -21
- package/build/modules/connections/errors/index.js.map +0 -1
- package/build/modules/connections/handlers/AckMessageHandler.d.ts +0 -9
- package/build/modules/connections/handlers/AckMessageHandler.js +0 -15
- package/build/modules/connections/handlers/AckMessageHandler.js.map +0 -1
- package/build/modules/connections/handlers/ConnectionProblemReportHandler.d.ts +0 -9
- package/build/modules/connections/handlers/ConnectionProblemReportHandler.js +0 -15
- package/build/modules/connections/handlers/ConnectionProblemReportHandler.js.map +0 -1
- package/build/modules/connections/handlers/ConnectionRequestHandler.d.ts +0 -18
- package/build/modules/connections/handlers/ConnectionRequestHandler.js +0 -69
- package/build/modules/connections/handlers/ConnectionRequestHandler.js.map +0 -1
- package/build/modules/connections/handlers/ConnectionResponseHandler.d.ts +0 -16
- package/build/modules/connections/handlers/ConnectionResponseHandler.js +0 -62
- package/build/modules/connections/handlers/ConnectionResponseHandler.js.map +0 -1
- package/build/modules/connections/handlers/DidExchangeCompleteHandler.d.ts +0 -11
- package/build/modules/connections/handlers/DidExchangeCompleteHandler.js +0 -41
- package/build/modules/connections/handlers/DidExchangeCompleteHandler.js.map +0 -1
- package/build/modules/connections/handlers/DidExchangeRequestHandler.d.ts +0 -18
- package/build/modules/connections/handlers/DidExchangeRequestHandler.js +0 -77
- package/build/modules/connections/handlers/DidExchangeRequestHandler.js.map +0 -1
- package/build/modules/connections/handlers/DidExchangeResponseHandler.d.ts +0 -18
- package/build/modules/connections/handlers/DidExchangeResponseHandler.js +0 -78
- package/build/modules/connections/handlers/DidExchangeResponseHandler.js.map +0 -1
- package/build/modules/connections/handlers/DidRotateAckHandler.d.ts +0 -9
- package/build/modules/connections/handlers/DidRotateAckHandler.js +0 -15
- package/build/modules/connections/handlers/DidRotateAckHandler.js.map +0 -1
- package/build/modules/connections/handlers/DidRotateHandler.d.ts +0 -11
- package/build/modules/connections/handlers/DidRotateHandler.js +0 -21
- package/build/modules/connections/handlers/DidRotateHandler.js.map +0 -1
- package/build/modules/connections/handlers/DidRotateProblemReportHandler.d.ts +0 -9
- package/build/modules/connections/handlers/DidRotateProblemReportHandler.js +0 -15
- package/build/modules/connections/handlers/DidRotateProblemReportHandler.js.map +0 -1
- package/build/modules/connections/handlers/HangupHandler.d.ts +0 -9
- package/build/modules/connections/handlers/HangupHandler.js +0 -15
- package/build/modules/connections/handlers/HangupHandler.js.map +0 -1
- package/build/modules/connections/handlers/TrustPingMessageHandler.d.ts +0 -11
- package/build/modules/connections/handlers/TrustPingMessageHandler.js +0 -27
- package/build/modules/connections/handlers/TrustPingMessageHandler.js.map +0 -1
- package/build/modules/connections/handlers/TrustPingResponseMessageHandler.d.ts +0 -9
- package/build/modules/connections/handlers/TrustPingResponseMessageHandler.js +0 -15
- package/build/modules/connections/handlers/TrustPingResponseMessageHandler.js.map +0 -1
- package/build/modules/connections/handlers/index.d.ts +0 -13
- package/build/modules/connections/handlers/index.js +0 -30
- package/build/modules/connections/handlers/index.js.map +0 -1
- package/build/modules/connections/index.d.ts +0 -10
- package/build/modules/connections/index.js +0 -27
- package/build/modules/connections/index.js.map +0 -1
- package/build/modules/connections/messages/ConnectionInvitationMessage.d.ts +0 -55
- package/build/modules/connections/messages/ConnectionInvitationMessage.js +0 -141
- package/build/modules/connections/messages/ConnectionInvitationMessage.js.map +0 -1
- package/build/modules/connections/messages/ConnectionProblemReportMessage.d.ts +0 -16
- package/build/modules/connections/messages/ConnectionProblemReportMessage.js +0 -35
- package/build/modules/connections/messages/ConnectionProblemReportMessage.js.map +0 -1
- package/build/modules/connections/messages/ConnectionRequestMessage.d.ts +0 -28
- package/build/modules/connections/messages/ConnectionRequestMessage.js +0 -64
- package/build/modules/connections/messages/ConnectionRequestMessage.js.map +0 -1
- package/build/modules/connections/messages/ConnectionResponseMessage.d.ts +0 -23
- package/build/modules/connections/messages/ConnectionResponseMessage.js +0 -52
- package/build/modules/connections/messages/ConnectionResponseMessage.js.map +0 -1
- package/build/modules/connections/messages/DidExchangeCompleteMessage.d.ts +0 -14
- package/build/modules/connections/messages/DidExchangeCompleteMessage.js +0 -38
- package/build/modules/connections/messages/DidExchangeCompleteMessage.js.map +0 -1
- package/build/modules/connections/messages/DidExchangeProblemReportMessage.d.ts +0 -11
- package/build/modules/connections/messages/DidExchangeProblemReportMessage.js +0 -30
- package/build/modules/connections/messages/DidExchangeProblemReportMessage.js.map +0 -1
- package/build/modules/connections/messages/DidExchangeRequestMessage.d.ts +0 -29
- package/build/modules/connections/messages/DidExchangeRequestMessage.js +0 -73
- package/build/modules/connections/messages/DidExchangeRequestMessage.js.map +0 -1
- package/build/modules/connections/messages/DidExchangeResponseMessage.d.ts +0 -24
- package/build/modules/connections/messages/DidExchangeResponseMessage.js +0 -64
- package/build/modules/connections/messages/DidExchangeResponseMessage.js.map +0 -1
- package/build/modules/connections/messages/DidRotateAckMessage.d.ts +0 -12
- package/build/modules/connections/messages/DidRotateAckMessage.js +0 -31
- package/build/modules/connections/messages/DidRotateAckMessage.js.map +0 -1
- package/build/modules/connections/messages/DidRotateMessage.d.ts +0 -20
- package/build/modules/connections/messages/DidRotateMessage.js +0 -47
- package/build/modules/connections/messages/DidRotateMessage.js.map +0 -1
- package/build/modules/connections/messages/DidRotateProblemReportMessage.d.ts +0 -11
- package/build/modules/connections/messages/DidRotateProblemReportMessage.js +0 -30
- package/build/modules/connections/messages/DidRotateProblemReportMessage.js.map +0 -1
- package/build/modules/connections/messages/HangupMessage.d.ts +0 -19
- package/build/modules/connections/messages/HangupMessage.js +0 -40
- package/build/modules/connections/messages/HangupMessage.js.map +0 -1
- package/build/modules/connections/messages/TrustPingMessage.d.ts +0 -26
- package/build/modules/connections/messages/TrustPingMessage.js +0 -63
- package/build/modules/connections/messages/TrustPingMessage.js.map +0 -1
- package/build/modules/connections/messages/TrustPingResponseMessage.d.ts +0 -25
- package/build/modules/connections/messages/TrustPingResponseMessage.js +0 -57
- package/build/modules/connections/messages/TrustPingResponseMessage.js.map +0 -1
- package/build/modules/connections/messages/index.d.ts +0 -14
- package/build/modules/connections/messages/index.js +0 -31
- package/build/modules/connections/messages/index.js.map +0 -1
- package/build/modules/connections/models/Connection.d.ts +0 -10
- package/build/modules/connections/models/Connection.js +0 -38
- package/build/modules/connections/models/Connection.js.map +0 -1
- package/build/modules/connections/models/ConnectionRole.d.ts +0 -4
- package/build/modules/connections/models/ConnectionRole.js +0 -9
- package/build/modules/connections/models/ConnectionRole.js.map +0 -1
- package/build/modules/connections/models/ConnectionState.d.ts +0 -14
- package/build/modules/connections/models/ConnectionState.js +0 -33
- package/build/modules/connections/models/ConnectionState.js.map +0 -1
- package/build/modules/connections/models/ConnectionType.d.ts +0 -3
- package/build/modules/connections/models/ConnectionType.js +0 -8
- package/build/modules/connections/models/ConnectionType.js.map +0 -1
- package/build/modules/connections/models/DidExchangeRole.d.ts +0 -4
- package/build/modules/connections/models/DidExchangeRole.js +0 -9
- package/build/modules/connections/models/DidExchangeRole.js.map +0 -1
- package/build/modules/connections/models/DidExchangeState.d.ts +0 -16
- package/build/modules/connections/models/DidExchangeState.js +0 -21
- package/build/modules/connections/models/DidExchangeState.js.map +0 -1
- package/build/modules/connections/models/DidRotateRole.d.ts +0 -4
- package/build/modules/connections/models/DidRotateRole.js +0 -9
- package/build/modules/connections/models/DidRotateRole.js.map +0 -1
- package/build/modules/connections/models/HandshakeProtocol.d.ts +0 -8
- package/build/modules/connections/models/HandshakeProtocol.js +0 -13
- package/build/modules/connections/models/HandshakeProtocol.js.map +0 -1
- package/build/modules/connections/models/InvitationDetails.d.ts +0 -6
- package/build/modules/connections/models/InvitationDetails.js +0 -3
- package/build/modules/connections/models/InvitationDetails.js.map +0 -1
- package/build/modules/connections/models/did/DidDoc.d.ts +0 -37
- package/build/modules/connections/models/did/DidDoc.js +0 -94
- package/build/modules/connections/models/did/DidDoc.js.map +0 -1
- package/build/modules/connections/models/did/authentication/Authentication.d.ts +0 -4
- package/build/modules/connections/models/did/authentication/Authentication.js +0 -7
- package/build/modules/connections/models/did/authentication/Authentication.js.map +0 -1
- package/build/modules/connections/models/did/authentication/EmbeddedAuthentication.d.ts +0 -6
- package/build/modules/connections/models/did/authentication/EmbeddedAuthentication.js +0 -29
- package/build/modules/connections/models/did/authentication/EmbeddedAuthentication.js.map +0 -1
- package/build/modules/connections/models/did/authentication/ReferencedAuthentication.d.ts +0 -7
- package/build/modules/connections/models/did/authentication/ReferencedAuthentication.js +0 -35
- package/build/modules/connections/models/did/authentication/ReferencedAuthentication.js.map +0 -1
- package/build/modules/connections/models/did/authentication/index.d.ts +0 -19
- package/build/modules/connections/models/did/authentication/index.js +0 -59
- package/build/modules/connections/models/did/authentication/index.js.map +0 -1
- package/build/modules/connections/models/did/index.d.ts +0 -3
- package/build/modules/connections/models/did/index.js +0 -20
- package/build/modules/connections/models/did/index.js.map +0 -1
- package/build/modules/connections/models/did/publicKey/Ed25119Sig2018.d.ts +0 -10
- package/build/modules/connections/models/did/publicKey/Ed25119Sig2018.js +0 -35
- package/build/modules/connections/models/did/publicKey/Ed25119Sig2018.js.map +0 -1
- package/build/modules/connections/models/did/publicKey/EddsaSaSigSecp256k1.d.ts +0 -10
- package/build/modules/connections/models/did/publicKey/EddsaSaSigSecp256k1.js +0 -35
- package/build/modules/connections/models/did/publicKey/EddsaSaSigSecp256k1.js.map +0 -1
- package/build/modules/connections/models/did/publicKey/PublicKey.d.ts +0 -12
- package/build/modules/connections/models/did/publicKey/PublicKey.js +0 -42
- package/build/modules/connections/models/did/publicKey/PublicKey.js.map +0 -1
- package/build/modules/connections/models/did/publicKey/RsaSig2018.d.ts +0 -10
- package/build/modules/connections/models/did/publicKey/RsaSig2018.js +0 -35
- package/build/modules/connections/models/did/publicKey/RsaSig2018.js.map +0 -1
- package/build/modules/connections/models/did/publicKey/index.d.ts +0 -18
- package/build/modules/connections/models/did/publicKey/index.js +0 -40
- package/build/modules/connections/models/did/publicKey/index.js.map +0 -1
- package/build/modules/connections/models/index.d.ts +0 -9
- package/build/modules/connections/models/index.js +0 -26
- package/build/modules/connections/models/index.js.map +0 -1
- package/build/modules/connections/repository/ConnectionMetadataTypes.d.ts +0 -14
- package/build/modules/connections/repository/ConnectionMetadataTypes.js +0 -9
- package/build/modules/connections/repository/ConnectionMetadataTypes.js.map +0 -1
- package/build/modules/connections/repository/ConnectionRecord.d.ts +0 -70
- package/build/modules/connections/repository/ConnectionRecord.js +0 -90
- package/build/modules/connections/repository/ConnectionRecord.js.map +0 -1
- package/build/modules/connections/repository/ConnectionRepository.d.ts +0 -15
- package/build/modules/connections/repository/ConnectionRepository.js +0 -50
- package/build/modules/connections/repository/ConnectionRepository.js.map +0 -1
- package/build/modules/connections/repository/index.d.ts +0 -2
- package/build/modules/connections/repository/index.js +0 -19
- package/build/modules/connections/repository/index.js.map +0 -1
- package/build/modules/connections/services/ConnectionService.d.ts +0 -181
- package/build/modules/connections/services/ConnectionService.js +0 -692
- package/build/modules/connections/services/ConnectionService.js.map +0 -1
- package/build/modules/connections/services/DidRotateService.d.ts +0 -54
- package/build/modules/connections/services/DidRotateService.js +0 -242
- package/build/modules/connections/services/DidRotateService.js.map +0 -1
- package/build/modules/connections/services/TrustPingService.d.ts +0 -12
- package/build/modules/connections/services/TrustPingService.js +0 -54
- package/build/modules/connections/services/TrustPingService.js.map +0 -1
- package/build/modules/connections/services/helpers.d.ts +0 -16
- package/build/modules/connections/services/helpers.js +0 -155
- package/build/modules/connections/services/helpers.js.map +0 -1
- package/build/modules/connections/services/index.d.ts +0 -3
- package/build/modules/connections/services/index.js +0 -20
- package/build/modules/connections/services/index.js.map +0 -1
- package/build/modules/credentials/CredentialEvents.d.ts +0 -20
- package/build/modules/credentials/CredentialEvents.js +0 -9
- package/build/modules/credentials/CredentialEvents.js.map +0 -1
- package/build/modules/credentials/CredentialsApi.d.ts +0 -60
- package/build/modules/credentials/CredentialsApi.js +0 -511
- package/build/modules/credentials/CredentialsApi.js.map +0 -1
- package/build/modules/credentials/CredentialsApiOptions.d.ts +0 -128
- package/build/modules/credentials/CredentialsApiOptions.js +0 -3
- package/build/modules/credentials/CredentialsApiOptions.js.map +0 -1
- package/build/modules/credentials/CredentialsModule.d.ts +0 -22
- package/build/modules/credentials/CredentialsModule.js +0 -45
- package/build/modules/credentials/CredentialsModule.js.map +0 -1
- package/build/modules/credentials/CredentialsModuleConfig.d.ts +0 -34
- package/build/modules/credentials/CredentialsModuleConfig.js +0 -20
- package/build/modules/credentials/CredentialsModuleConfig.js.map +0 -1
- package/build/modules/credentials/formats/CredentialFormat.d.ts +0 -40
- package/build/modules/credentials/formats/CredentialFormat.js +0 -3
- package/build/modules/credentials/formats/CredentialFormat.js.map +0 -1
- package/build/modules/credentials/formats/CredentialFormatService.d.ts +0 -23
- package/build/modules/credentials/formats/CredentialFormatService.js +0 -3
- package/build/modules/credentials/formats/CredentialFormatService.js.map +0 -1
- package/build/modules/credentials/formats/CredentialFormatServiceOptions.d.ts +0 -117
- package/build/modules/credentials/formats/CredentialFormatServiceOptions.js +0 -3
- package/build/modules/credentials/formats/CredentialFormatServiceOptions.js.map +0 -1
- package/build/modules/credentials/formats/dataIntegrity/DataIntegrityCredentialFormat.d.ts +0 -51
- package/build/modules/credentials/formats/dataIntegrity/DataIntegrityCredentialFormat.js +0 -3
- package/build/modules/credentials/formats/dataIntegrity/DataIntegrityCredentialFormat.js.map +0 -1
- package/build/modules/credentials/formats/dataIntegrity/dataIntegrityExchange.d.ts +0 -77
- package/build/modules/credentials/formats/dataIntegrity/dataIntegrityExchange.js +0 -129
- package/build/modules/credentials/formats/dataIntegrity/dataIntegrityExchange.js.map +0 -1
- package/build/modules/credentials/formats/dataIntegrity/index.d.ts +0 -2
- package/build/modules/credentials/formats/dataIntegrity/index.js +0 -19
- package/build/modules/credentials/formats/dataIntegrity/index.js.map +0 -1
- package/build/modules/credentials/formats/index.d.ts +0 -5
- package/build/modules/credentials/formats/index.js +0 -22
- package/build/modules/credentials/formats/index.js.map +0 -1
- package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetail.d.ts +0 -15
- package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetail.js +0 -38
- package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetail.js.map +0 -1
- package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetailOptions.d.ts +0 -24
- package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetailOptions.js +0 -67
- package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetailOptions.js.map +0 -1
- package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormat.d.ts +0 -92
- package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormat.js +0 -3
- package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormat.js.map +0 -1
- package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormatService.d.ts +0 -71
- package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormatService.js +0 -300
- package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormatService.js.map +0 -1
- package/build/modules/credentials/formats/jsonld/index.d.ts +0 -4
- package/build/modules/credentials/formats/jsonld/index.js +0 -21
- package/build/modules/credentials/formats/jsonld/index.js.map +0 -1
- package/build/modules/credentials/index.d.ts +0 -9
- package/build/modules/credentials/index.js +0 -26
- package/build/modules/credentials/index.js.map +0 -1
- package/build/modules/credentials/models/CredentialAutoAcceptType.d.ts +0 -11
- package/build/modules/credentials/models/CredentialAutoAcceptType.js +0 -16
- package/build/modules/credentials/models/CredentialAutoAcceptType.js.map +0 -1
- package/build/modules/credentials/models/CredentialFormatSpec.d.ts +0 -9
- package/build/modules/credentials/models/CredentialFormatSpec.js +0 -35
- package/build/modules/credentials/models/CredentialFormatSpec.js.map +0 -1
- package/build/modules/credentials/models/CredentialPreviewAttribute.d.ts +0 -15
- package/build/modules/credentials/models/CredentialPreviewAttribute.js +0 -44
- package/build/modules/credentials/models/CredentialPreviewAttribute.js.map +0 -1
- package/build/modules/credentials/models/CredentialProblemReportReason.d.ts +0 -8
- package/build/modules/credentials/models/CredentialProblemReportReason.js +0 -13
- package/build/modules/credentials/models/CredentialProblemReportReason.js.map +0 -1
- package/build/modules/credentials/models/CredentialRole.d.ts +0 -4
- package/build/modules/credentials/models/CredentialRole.js +0 -9
- package/build/modules/credentials/models/CredentialRole.js.map +0 -1
- package/build/modules/credentials/models/CredentialState.d.ts +0 -18
- package/build/modules/credentials/models/CredentialState.js +0 -23
- package/build/modules/credentials/models/CredentialState.js.map +0 -1
- package/build/modules/credentials/models/RevocationNotification.d.ts +0 -5
- package/build/modules/credentials/models/RevocationNotification.js +0 -11
- package/build/modules/credentials/models/RevocationNotification.js.map +0 -1
- package/build/modules/credentials/models/index.d.ts +0 -7
- package/build/modules/credentials/models/index.js +0 -24
- package/build/modules/credentials/models/index.js.map +0 -1
- package/build/modules/credentials/protocol/BaseCredentialProtocol.d.ts +0 -112
- package/build/modules/credentials/protocol/BaseCredentialProtocol.js +0 -169
- package/build/modules/credentials/protocol/BaseCredentialProtocol.js.map +0 -1
- package/build/modules/credentials/protocol/CredentialProtocol.d.ts +0 -54
- package/build/modules/credentials/protocol/CredentialProtocol.js +0 -3
- package/build/modules/credentials/protocol/CredentialProtocol.js.map +0 -1
- package/build/modules/credentials/protocol/CredentialProtocolOptions.d.ts +0 -143
- package/build/modules/credentials/protocol/CredentialProtocolOptions.js +0 -3
- package/build/modules/credentials/protocol/CredentialProtocolOptions.js.map +0 -1
- package/build/modules/credentials/protocol/index.d.ts +0 -6
- package/build/modules/credentials/protocol/index.js +0 -40
- package/build/modules/credentials/protocol/index.js.map +0 -1
- package/build/modules/credentials/protocol/revocation-notification/handlers/V1RevocationNotificationHandler.d.ts +0 -9
- package/build/modules/credentials/protocol/revocation-notification/handlers/V1RevocationNotificationHandler.js +0 -15
- package/build/modules/credentials/protocol/revocation-notification/handlers/V1RevocationNotificationHandler.js.map +0 -1
- package/build/modules/credentials/protocol/revocation-notification/handlers/V2RevocationNotificationHandler.d.ts +0 -9
- package/build/modules/credentials/protocol/revocation-notification/handlers/V2RevocationNotificationHandler.js +0 -15
- package/build/modules/credentials/protocol/revocation-notification/handlers/V2RevocationNotificationHandler.js.map +0 -1
- package/build/modules/credentials/protocol/revocation-notification/handlers/index.d.ts +0 -2
- package/build/modules/credentials/protocol/revocation-notification/handlers/index.js +0 -19
- package/build/modules/credentials/protocol/revocation-notification/handlers/index.js.map +0 -1
- package/build/modules/credentials/protocol/revocation-notification/index.d.ts +0 -1
- package/build/modules/credentials/protocol/revocation-notification/index.js +0 -18
- package/build/modules/credentials/protocol/revocation-notification/index.js.map +0 -1
- package/build/modules/credentials/protocol/revocation-notification/messages/V1RevocationNotificationMessage.d.ts +0 -15
- package/build/modules/credentials/protocol/revocation-notification/messages/V1RevocationNotificationMessage.js +0 -46
- package/build/modules/credentials/protocol/revocation-notification/messages/V1RevocationNotificationMessage.js.map +0 -1
- package/build/modules/credentials/protocol/revocation-notification/messages/V2RevocationNotificationMessage.d.ts +0 -17
- package/build/modules/credentials/protocol/revocation-notification/messages/V2RevocationNotificationMessage.js +0 -52
- package/build/modules/credentials/protocol/revocation-notification/messages/V2RevocationNotificationMessage.js.map +0 -1
- package/build/modules/credentials/protocol/revocation-notification/messages/index.d.ts +0 -2
- package/build/modules/credentials/protocol/revocation-notification/messages/index.js +0 -19
- package/build/modules/credentials/protocol/revocation-notification/messages/index.js.map +0 -1
- package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationService.d.ts +0 -36
- package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationService.js +0 -143
- package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationService.js.map +0 -1
- package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationServiceOptions.d.ts +0 -6
- package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationServiceOptions.js +0 -3
- package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationServiceOptions.js.map +0 -1
- package/build/modules/credentials/protocol/revocation-notification/services/index.d.ts +0 -2
- package/build/modules/credentials/protocol/revocation-notification/services/index.js +0 -19
- package/build/modules/credentials/protocol/revocation-notification/services/index.js.map +0 -1
- package/build/modules/credentials/protocol/revocation-notification/util/revocationIdentifier.d.ts +0 -5
- package/build/modules/credentials/protocol/revocation-notification/util/revocationIdentifier.js +0 -13
- package/build/modules/credentials/protocol/revocation-notification/util/revocationIdentifier.js.map +0 -1
- package/build/modules/credentials/protocol/v2/CredentialFormatCoordinator.d.ts +0 -100
- package/build/modules/credentials/protocol/v2/CredentialFormatCoordinator.js +0 -365
- package/build/modules/credentials/protocol/v2/CredentialFormatCoordinator.js.map +0 -1
- package/build/modules/credentials/protocol/v2/V2CredentialProtocol.d.ts +0 -178
- package/build/modules/credentials/protocol/v2/V2CredentialProtocol.js +0 -946
- package/build/modules/credentials/protocol/v2/V2CredentialProtocol.js.map +0 -1
- package/build/modules/credentials/protocol/v2/errors/V2CredentialProblemReportError.d.ts +0 -11
- package/build/modules/credentials/protocol/v2/errors/V2CredentialProblemReportError.js +0 -18
- package/build/modules/credentials/protocol/v2/errors/V2CredentialProblemReportError.js.map +0 -1
- package/build/modules/credentials/protocol/v2/errors/index.d.ts +0 -1
- package/build/modules/credentials/protocol/v2/errors/index.js +0 -6
- package/build/modules/credentials/protocol/v2/errors/index.js.map +0 -1
- package/build/modules/credentials/protocol/v2/handlers/V2CredentialAckHandler.d.ts +0 -9
- package/build/modules/credentials/protocol/v2/handlers/V2CredentialAckHandler.js +0 -15
- package/build/modules/credentials/protocol/v2/handlers/V2CredentialAckHandler.js.map +0 -1
- package/build/modules/credentials/protocol/v2/handlers/V2CredentialProblemReportHandler.d.ts +0 -9
- package/build/modules/credentials/protocol/v2/handlers/V2CredentialProblemReportHandler.js +0 -15
- package/build/modules/credentials/protocol/v2/handlers/V2CredentialProblemReportHandler.js.map +0 -1
- package/build/modules/credentials/protocol/v2/handlers/V2IssueCredentialHandler.d.ts +0 -11
- package/build/modules/credentials/protocol/v2/handlers/V2IssueCredentialHandler.js +0 -41
- package/build/modules/credentials/protocol/v2/handlers/V2IssueCredentialHandler.js.map +0 -1
- package/build/modules/credentials/protocol/v2/handlers/V2OfferCredentialHandler.d.ts +0 -11
- package/build/modules/credentials/protocol/v2/handlers/V2OfferCredentialHandler.js +0 -33
- package/build/modules/credentials/protocol/v2/handlers/V2OfferCredentialHandler.js.map +0 -1
- package/build/modules/credentials/protocol/v2/handlers/V2ProposeCredentialHandler.d.ts +0 -12
- package/build/modules/credentials/protocol/v2/handlers/V2ProposeCredentialHandler.js +0 -36
- package/build/modules/credentials/protocol/v2/handlers/V2ProposeCredentialHandler.js.map +0 -1
- package/build/modules/credentials/protocol/v2/handlers/V2RequestCredentialHandler.d.ts +0 -11
- package/build/modules/credentials/protocol/v2/handlers/V2RequestCredentialHandler.js +0 -41
- package/build/modules/credentials/protocol/v2/handlers/V2RequestCredentialHandler.js.map +0 -1
- package/build/modules/credentials/protocol/v2/handlers/index.d.ts +0 -6
- package/build/modules/credentials/protocol/v2/handlers/index.js +0 -23
- package/build/modules/credentials/protocol/v2/handlers/index.js.map +0 -1
- package/build/modules/credentials/protocol/v2/index.d.ts +0 -3
- package/build/modules/credentials/protocol/v2/index.js +0 -20
- package/build/modules/credentials/protocol/v2/index.js.map +0 -1
- package/build/modules/credentials/protocol/v2/messages/V2CredentialAckMessage.d.ts +0 -15
- package/build/modules/credentials/protocol/v2/messages/V2CredentialAckMessage.js +0 -34
- package/build/modules/credentials/protocol/v2/messages/V2CredentialAckMessage.js.map +0 -1
- package/build/modules/credentials/protocol/v2/messages/V2CredentialPreview.d.ts +0 -26
- package/build/modules/credentials/protocol/v2/messages/V2CredentialPreview.js +0 -71
- package/build/modules/credentials/protocol/v2/messages/V2CredentialPreview.js.map +0 -1
- package/build/modules/credentials/protocol/v2/messages/V2CredentialProblemReportMessage.d.ts +0 -15
- package/build/modules/credentials/protocol/v2/messages/V2CredentialProblemReportMessage.js +0 -34
- package/build/modules/credentials/protocol/v2/messages/V2CredentialProblemReportMessage.js.map +0 -1
- package/build/modules/credentials/protocol/v2/messages/V2IssueCredentialMessage.d.ts +0 -22
- package/build/modules/credentials/protocol/v2/messages/V2IssueCredentialMessage.js +0 -76
- package/build/modules/credentials/protocol/v2/messages/V2IssueCredentialMessage.js.map +0 -1
- package/build/modules/credentials/protocol/v2/messages/V2OfferCredentialMessage.d.ts +0 -27
- package/build/modules/credentials/protocol/v2/messages/V2OfferCredentialMessage.js +0 -92
- package/build/modules/credentials/protocol/v2/messages/V2OfferCredentialMessage.js.map +0 -1
- package/build/modules/credentials/protocol/v2/messages/V2ProposeCredentialMessage.d.ts +0 -30
- package/build/modules/credentials/protocol/v2/messages/V2ProposeCredentialMessage.js +0 -87
- package/build/modules/credentials/protocol/v2/messages/V2ProposeCredentialMessage.js.map +0 -1
- package/build/modules/credentials/protocol/v2/messages/V2RequestCredentialMessage.d.ts +0 -27
- package/build/modules/credentials/protocol/v2/messages/V2RequestCredentialMessage.js +0 -77
- package/build/modules/credentials/protocol/v2/messages/V2RequestCredentialMessage.js.map +0 -1
- package/build/modules/credentials/protocol/v2/messages/index.d.ts +0 -7
- package/build/modules/credentials/protocol/v2/messages/index.js +0 -24
- package/build/modules/credentials/protocol/v2/messages/index.js.map +0 -1
- package/build/modules/credentials/repository/CredentialExchangeRecord.d.ts +0 -66
- package/build/modules/credentials/repository/CredentialExchangeRecord.js +0 -80
- package/build/modules/credentials/repository/CredentialExchangeRecord.js.map +0 -1
- package/build/modules/credentials/repository/CredentialRepository.d.ts +0 -7
- package/build/modules/credentials/repository/CredentialRepository.js +0 -32
- package/build/modules/credentials/repository/CredentialRepository.js.map +0 -1
- package/build/modules/credentials/repository/index.d.ts +0 -2
- package/build/modules/credentials/repository/index.js +0 -19
- package/build/modules/credentials/repository/index.js.map +0 -1
- package/build/modules/credentials/util/composeAutoAccept.d.ts +0 -8
- package/build/modules/credentials/util/composeAutoAccept.js +0 -15
- package/build/modules/credentials/util/composeAutoAccept.js.map +0 -1
- package/build/modules/credentials/util/previewAttributes.d.ts +0 -2
- package/build/modules/credentials/util/previewAttributes.js +0 -24
- package/build/modules/credentials/util/previewAttributes.js.map +0 -1
- package/build/modules/didcomm/index.d.ts +0 -2
- package/build/modules/didcomm/index.js +0 -19
- package/build/modules/didcomm/index.js.map +0 -1
- package/build/modules/didcomm/services/DidCommDocumentService.d.ts +0 -8
- package/build/modules/didcomm/services/DidCommDocumentService.js +0 -83
- package/build/modules/didcomm/services/DidCommDocumentService.js.map +0 -1
- package/build/modules/didcomm/services/index.d.ts +0 -1
- package/build/modules/didcomm/services/index.js +0 -18
- package/build/modules/didcomm/services/index.js.map +0 -1
- package/build/modules/didcomm/types.d.ts +0 -7
- package/build/modules/didcomm/types.js +0 -3
- package/build/modules/didcomm/types.js.map +0 -1
- package/build/modules/didcomm/util/matchingEd25519Key.d.ts +0 -9
- package/build/modules/didcomm/util/matchingEd25519Key.js +0 -33
- package/build/modules/didcomm/util/matchingEd25519Key.js.map +0 -1
- package/build/modules/dids/DidsApi.d.ts +0 -71
- package/build/modules/dids/DidsApi.js +0 -158
- package/build/modules/dids/DidsApi.js.map +0 -1
- package/build/modules/dids/DidsApiOptions.d.ts +0 -29
- package/build/modules/dids/DidsApiOptions.js +0 -3
- package/build/modules/dids/DidsApiOptions.js.map +0 -1
- package/build/modules/dids/DidsModule.d.ts +0 -13
- package/build/modules/dids/DidsModule.js +0 -26
- package/build/modules/dids/DidsModule.js.map +0 -1
- package/build/modules/dids/DidsModuleConfig.d.ts +0 -41
- package/build/modules/dids/DidsModuleConfig.js +0 -62
- package/build/modules/dids/DidsModuleConfig.js.map +0 -1
- package/build/modules/dids/domain/DidDocument.d.ts +0 -62
- package/build/modules/dids/domain/DidDocument.js +0 -258
- package/build/modules/dids/domain/DidDocument.js.map +0 -1
- package/build/modules/dids/domain/DidDocumentBuilder.d.ts +0 -16
- package/build/modules/dids/domain/DidDocumentBuilder.js +0 -89
- package/build/modules/dids/domain/DidDocumentBuilder.js.map +0 -1
- package/build/modules/dids/domain/DidDocumentRole.d.ts +0 -4
- package/build/modules/dids/domain/DidDocumentRole.js +0 -9
- package/build/modules/dids/domain/DidDocumentRole.js.map +0 -1
- package/build/modules/dids/domain/DidRegistrar.d.ts +0 -8
- package/build/modules/dids/domain/DidRegistrar.js +0 -3
- package/build/modules/dids/domain/DidRegistrar.js.map +0 -1
- package/build/modules/dids/domain/DidResolver.d.ts +0 -15
- package/build/modules/dids/domain/DidResolver.js +0 -3
- package/build/modules/dids/domain/DidResolver.js.map +0 -1
- package/build/modules/dids/domain/index.d.ts +0 -9
- package/build/modules/dids/domain/index.js +0 -28
- package/build/modules/dids/domain/index.js.map +0 -1
- package/build/modules/dids/domain/key-type/bls12381g1.d.ts +0 -2
- package/build/modules/dids/domain/key-type/bls12381g1.js +0 -19
- package/build/modules/dids/domain/key-type/bls12381g1.js.map +0 -1
- package/build/modules/dids/domain/key-type/bls12381g1g2.d.ts +0 -4
- package/build/modules/dids/domain/key-type/bls12381g1g2.js +0 -34
- package/build/modules/dids/domain/key-type/bls12381g1g2.js.map +0 -1
- package/build/modules/dids/domain/key-type/bls12381g2.d.ts +0 -2
- package/build/modules/dids/domain/key-type/bls12381g2.js +0 -19
- package/build/modules/dids/domain/key-type/bls12381g2.js.map +0 -1
- package/build/modules/dids/domain/key-type/ed25519.d.ts +0 -3
- package/build/modules/dids/domain/key-type/ed25519.js +0 -35
- package/build/modules/dids/domain/key-type/ed25519.js.map +0 -1
- package/build/modules/dids/domain/key-type/index.d.ts +0 -6
- package/build/modules/dids/domain/key-type/index.js +0 -27
- package/build/modules/dids/domain/key-type/index.js.map +0 -1
- package/build/modules/dids/domain/key-type/keyDidJsonWebKey.d.ts +0 -2
- package/build/modules/dids/domain/key-type/keyDidJsonWebKey.js +0 -18
- package/build/modules/dids/domain/key-type/keyDidJsonWebKey.js.map +0 -1
- package/build/modules/dids/domain/key-type/keyDidMapping.d.ts +0 -11
- package/build/modules/dids/domain/key-type/keyDidMapping.js +0 -77
- package/build/modules/dids/domain/key-type/keyDidMapping.js.map +0 -1
- package/build/modules/dids/domain/key-type/secp256k1.d.ts +0 -2
- package/build/modules/dids/domain/key-type/secp256k1.js +0 -23
- package/build/modules/dids/domain/key-type/secp256k1.js.map +0 -1
- package/build/modules/dids/domain/key-type/x25519.d.ts +0 -2
- package/build/modules/dids/domain/key-type/x25519.js +0 -29
- package/build/modules/dids/domain/key-type/x25519.js.map +0 -1
- package/build/modules/dids/domain/keyDidDocument.d.ts +0 -4
- package/build/modules/dids/domain/keyDidDocument.js +0 -114
- package/build/modules/dids/domain/keyDidDocument.js.map +0 -1
- package/build/modules/dids/domain/parse.d.ts +0 -3
- package/build/modules/dids/domain/parse.js +0 -17
- package/build/modules/dids/domain/parse.js.map +0 -1
- package/build/modules/dids/domain/service/DidCommV1Service.d.ts +0 -18
- package/build/modules/dids/domain/service/DidCommV1Service.js +0 -55
- package/build/modules/dids/domain/service/DidCommV1Service.js.map +0 -1
- package/build/modules/dids/domain/service/DidCommV2Service.d.ts +0 -19
- package/build/modules/dids/domain/service/DidCommV2Service.js +0 -57
- package/build/modules/dids/domain/service/DidCommV2Service.js.map +0 -1
- package/build/modules/dids/domain/service/DidDocumentService.d.ts +0 -18
- package/build/modules/dids/domain/service/DidDocumentService.js +0 -63
- package/build/modules/dids/domain/service/DidDocumentService.js.map +0 -1
- package/build/modules/dids/domain/service/IndyAgentService.d.ts +0 -16
- package/build/modules/dids/domain/service/IndyAgentService.js +0 -49
- package/build/modules/dids/domain/service/IndyAgentService.js.map +0 -1
- package/build/modules/dids/domain/service/NewDidCommV2Service.d.ts +0 -27
- package/build/modules/dids/domain/service/NewDidCommV2Service.js +0 -71
- package/build/modules/dids/domain/service/NewDidCommV2Service.js.map +0 -1
- package/build/modules/dids/domain/service/ServiceTransformer.d.ts +0 -13
- package/build/modules/dids/domain/service/ServiceTransformer.js +0 -46
- package/build/modules/dids/domain/service/ServiceTransformer.js.map +0 -1
- package/build/modules/dids/domain/service/index.d.ts +0 -7
- package/build/modules/dids/domain/service/index.js +0 -18
- package/build/modules/dids/domain/service/index.js.map +0 -1
- package/build/modules/dids/domain/verificationMethod/Bls12381G1Key2020.d.ts +0 -23
- package/build/modules/dids/domain/verificationMethod/Bls12381G1Key2020.js +0 -38
- package/build/modules/dids/domain/verificationMethod/Bls12381G1Key2020.js.map +0 -1
- package/build/modules/dids/domain/verificationMethod/Bls12381G2Key2020.d.ts +0 -23
- package/build/modules/dids/domain/verificationMethod/Bls12381G2Key2020.js +0 -38
- package/build/modules/dids/domain/verificationMethod/Bls12381G2Key2020.js.map +0 -1
- package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.d.ts +0 -23
- package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.js +0 -38
- package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.js.map +0 -1
- package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.d.ts +0 -23
- package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.js +0 -38
- package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.js.map +0 -1
- package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.d.ts +0 -23
- package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.js +0 -42
- package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.js.map +0 -1
- package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.d.ts +0 -37
- package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.js +0 -39
- package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.js.map +0 -1
- package/build/modules/dids/domain/verificationMethod/Multikey.d.ts +0 -30
- package/build/modules/dids/domain/verificationMethod/Multikey.js +0 -39
- package/build/modules/dids/domain/verificationMethod/Multikey.js.map +0 -1
- package/build/modules/dids/domain/verificationMethod/VerificationMethod.d.ts +0 -28
- package/build/modules/dids/domain/verificationMethod/VerificationMethod.js +0 -79
- package/build/modules/dids/domain/verificationMethod/VerificationMethod.js.map +0 -1
- package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.d.ts +0 -16
- package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.js +0 -49
- package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.js.map +0 -1
- package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.d.ts +0 -23
- package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.js +0 -38
- package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.js.map +0 -1
- package/build/modules/dids/domain/verificationMethod/index.d.ts +0 -10
- package/build/modules/dids/domain/verificationMethod/index.js +0 -31
- package/build/modules/dids/domain/verificationMethod/index.js.map +0 -1
- package/build/modules/dids/helpers.d.ts +0 -6
- package/build/modules/dids/helpers.js +0 -37
- package/build/modules/dids/helpers.js.map +0 -1
- package/build/modules/dids/index.d.ts +0 -9
- package/build/modules/dids/index.js +0 -26
- package/build/modules/dids/index.js.map +0 -1
- package/build/modules/dids/methods/index.d.ts +0 -4
- package/build/modules/dids/methods/index.js +0 -21
- package/build/modules/dids/methods/index.js.map +0 -1
- package/build/modules/dids/methods/jwk/DidJwk.d.ts +0 -18
- package/build/modules/dids/methods/jwk/DidJwk.js +0 -53
- package/build/modules/dids/methods/jwk/DidJwk.js.map +0 -1
- package/build/modules/dids/methods/jwk/JwkDidRegistrar.d.ts +0 -26
- package/build/modules/dids/methods/jwk/JwkDidRegistrar.js +0 -107
- package/build/modules/dids/methods/jwk/JwkDidRegistrar.js.map +0 -1
- package/build/modules/dids/methods/jwk/JwkDidResolver.d.ts +0 -16
- package/build/modules/dids/methods/jwk/JwkDidResolver.js +0 -41
- package/build/modules/dids/methods/jwk/JwkDidResolver.js.map +0 -1
- package/build/modules/dids/methods/jwk/__tests__/__fixtures__/p256DidJwkEyJjcnYi0i.d.ts +0 -20
- package/build/modules/dids/methods/jwk/__tests__/__fixtures__/p256DidJwkEyJjcnYi0i.js +0 -36
- package/build/modules/dids/methods/jwk/__tests__/__fixtures__/p256DidJwkEyJjcnYi0i.js.map +0 -1
- package/build/modules/dids/methods/jwk/__tests__/__fixtures__/x25519DidJwkEyJrdHkiOiJ.d.ts +0 -16
- package/build/modules/dids/methods/jwk/__tests__/__fixtures__/x25519DidJwkEyJrdHkiOiJ.js +0 -24
- package/build/modules/dids/methods/jwk/__tests__/__fixtures__/x25519DidJwkEyJrdHkiOiJ.js.map +0 -1
- package/build/modules/dids/methods/jwk/didJwkDidDocument.d.ts +0 -2
- package/build/modules/dids/methods/jwk/didJwkDidDocument.js +0 -35
- package/build/modules/dids/methods/jwk/didJwkDidDocument.js.map +0 -1
- package/build/modules/dids/methods/jwk/index.d.ts +0 -3
- package/build/modules/dids/methods/jwk/index.js +0 -22
- package/build/modules/dids/methods/jwk/index.js.map +0 -1
- package/build/modules/dids/methods/key/DidKey.d.ts +0 -8
- package/build/modules/dids/methods/key/DidKey.js +0 -24
- package/build/modules/dids/methods/key/DidKey.js.map +0 -1
- package/build/modules/dids/methods/key/KeyDidRegistrar.d.ts +0 -26
- package/build/modules/dids/methods/key/KeyDidRegistrar.js +0 -105
- package/build/modules/dids/methods/key/KeyDidRegistrar.js.map +0 -1
- package/build/modules/dids/methods/key/KeyDidResolver.d.ts +0 -16
- package/build/modules/dids/methods/key/KeyDidResolver.js +0 -41
- package/build/modules/dids/methods/key/KeyDidResolver.js.map +0 -1
- package/build/modules/dids/methods/key/index.d.ts +0 -3
- package/build/modules/dids/methods/key/index.js +0 -22
- package/build/modules/dids/methods/key/index.js.map +0 -1
- package/build/modules/dids/methods/peer/PeerDidRegistrar.d.ts +0 -57
- package/build/modules/dids/methods/peer/PeerDidRegistrar.js +0 -162
- package/build/modules/dids/methods/peer/PeerDidRegistrar.js.map +0 -1
- package/build/modules/dids/methods/peer/PeerDidResolver.d.ts +0 -16
- package/build/modules/dids/methods/peer/PeerDidResolver.js +0 -85
- package/build/modules/dids/methods/peer/PeerDidResolver.js.map +0 -1
- package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.d.ts +0 -2
- package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.js +0 -59
- package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.js.map +0 -1
- package/build/modules/dids/methods/peer/didPeer.d.ts +0 -15
- package/build/modules/dids/methods/peer/didPeer.js +0 -42
- package/build/modules/dids/methods/peer/didPeer.js.map +0 -1
- package/build/modules/dids/methods/peer/index.d.ts +0 -4
- package/build/modules/dids/methods/peer/index.js +0 -21
- package/build/modules/dids/methods/peer/index.js.map +0 -1
- package/build/modules/dids/methods/peer/peerDidNumAlgo0.d.ts +0 -3
- package/build/modules/dids/methods/peer/peerDidNumAlgo0.js +0 -26
- package/build/modules/dids/methods/peer/peerDidNumAlgo0.js.map +0 -1
- package/build/modules/dids/methods/peer/peerDidNumAlgo1.d.ts +0 -1
- package/build/modules/dids/methods/peer/peerDidNumAlgo1.js +0 -12
- package/build/modules/dids/methods/peer/peerDidNumAlgo1.js.map +0 -1
- package/build/modules/dids/methods/peer/peerDidNumAlgo2.d.ts +0 -6
- package/build/modules/dids/methods/peer/peerDidNumAlgo2.js +0 -224
- package/build/modules/dids/methods/peer/peerDidNumAlgo2.js.map +0 -1
- package/build/modules/dids/methods/peer/peerDidNumAlgo4.d.ts +0 -14
- package/build/modules/dids/methods/peer/peerDidNumAlgo4.js +0 -118
- package/build/modules/dids/methods/peer/peerDidNumAlgo4.js.map +0 -1
- package/build/modules/dids/methods/web/WebDidResolver.d.ts +0 -12
- package/build/modules/dids/methods/web/WebDidResolver.js +0 -56
- package/build/modules/dids/methods/web/WebDidResolver.js.map +0 -1
- package/build/modules/dids/methods/web/index.d.ts +0 -1
- package/build/modules/dids/methods/web/index.js +0 -18
- package/build/modules/dids/methods/web/index.js.map +0 -1
- package/build/modules/dids/repository/DidRecord.d.ts +0 -43
- package/build/modules/dids/repository/DidRecord.js +0 -56
- package/build/modules/dids/repository/DidRecord.js.map +0 -1
- package/build/modules/dids/repository/DidRepository.d.ts +0 -37
- package/build/modules/dids/repository/DidRepository.js +0 -98
- package/build/modules/dids/repository/DidRepository.js.map +0 -1
- package/build/modules/dids/repository/didRecordMetadataTypes.d.ts +0 -9
- package/build/modules/dids/repository/didRecordMetadataTypes.js +0 -8
- package/build/modules/dids/repository/didRecordMetadataTypes.js.map +0 -1
- package/build/modules/dids/repository/index.d.ts +0 -2
- package/build/modules/dids/repository/index.js +0 -19
- package/build/modules/dids/repository/index.js.map +0 -1
- package/build/modules/dids/services/DidRegistrarService.d.ts +0 -19
- package/build/modules/dids/services/DidRegistrarService.js +0 -115
- package/build/modules/dids/services/DidRegistrarService.js.map +0 -1
- package/build/modules/dids/services/DidResolverService.d.ts +0 -25
- package/build/modules/dids/services/DidResolverService.js +0 -135
- package/build/modules/dids/services/DidResolverService.js.map +0 -1
- package/build/modules/dids/services/index.d.ts +0 -2
- package/build/modules/dids/services/index.js +0 -19
- package/build/modules/dids/services/index.js.map +0 -1
- package/build/modules/dids/types.d.ts +0 -118
- package/build/modules/dids/types.js +0 -3
- package/build/modules/dids/types.js.map +0 -1
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.d.ts +0 -8
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.js +0 -12
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.js.map +0 -1
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.d.ts +0 -10
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.js +0 -23
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.js.map +0 -1
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.d.ts +0 -59
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.js +0 -444
- package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.js.map +0 -1
- package/build/modules/dif-presentation-exchange/index.d.ts +0 -6
- package/build/modules/dif-presentation-exchange/index.js +0 -24
- package/build/modules/dif-presentation-exchange/index.js.map +0 -1
- package/build/modules/dif-presentation-exchange/models/DifPexCredentialsForRequest.d.ts +0 -123
- package/build/modules/dif-presentation-exchange/models/DifPexCredentialsForRequest.js +0 -3
- package/build/modules/dif-presentation-exchange/models/DifPexCredentialsForRequest.js.map +0 -1
- package/build/modules/dif-presentation-exchange/models/index.d.ts +0 -13
- package/build/modules/dif-presentation-exchange/models/index.js +0 -21
- package/build/modules/dif-presentation-exchange/models/index.js.map +0 -1
- package/build/modules/dif-presentation-exchange/utils/credentialSelection.d.ts +0 -6
- package/build/modules/dif-presentation-exchange/utils/credentialSelection.js +0 -277
- package/build/modules/dif-presentation-exchange/utils/credentialSelection.js.map +0 -1
- package/build/modules/dif-presentation-exchange/utils/index.d.ts +0 -4
- package/build/modules/dif-presentation-exchange/utils/index.js +0 -21
- package/build/modules/dif-presentation-exchange/utils/index.js.map +0 -1
- package/build/modules/dif-presentation-exchange/utils/presentationSelection.d.ts +0 -25
- package/build/modules/dif-presentation-exchange/utils/presentationSelection.js +0 -64
- package/build/modules/dif-presentation-exchange/utils/presentationSelection.js.map +0 -1
- package/build/modules/dif-presentation-exchange/utils/presentationsToCreate.d.ts +0 -42
- package/build/modules/dif-presentation-exchange/utils/presentationsToCreate.js +0 -53
- package/build/modules/dif-presentation-exchange/utils/presentationsToCreate.js.map +0 -1
- package/build/modules/dif-presentation-exchange/utils/transform.d.ts +0 -10
- package/build/modules/dif-presentation-exchange/utils/transform.js +0 -47
- package/build/modules/dif-presentation-exchange/utils/transform.js.map +0 -1
- package/build/modules/discover-features/DiscoverFeaturesApi.d.ts +0 -31
- package/build/modules/discover-features/DiscoverFeaturesApi.js +0 -133
- package/build/modules/discover-features/DiscoverFeaturesApi.js.map +0 -1
- package/build/modules/discover-features/DiscoverFeaturesApiOptions.d.ts +0 -39
- package/build/modules/discover-features/DiscoverFeaturesApiOptions.js +0 -3
- package/build/modules/discover-features/DiscoverFeaturesApiOptions.js.map +0 -1
- package/build/modules/discover-features/DiscoverFeaturesEvents.d.ts +0 -28
- package/build/modules/discover-features/DiscoverFeaturesEvents.js +0 -9
- package/build/modules/discover-features/DiscoverFeaturesEvents.js.map +0 -1
- package/build/modules/discover-features/DiscoverFeaturesModule.d.ts +0 -14
- package/build/modules/discover-features/DiscoverFeaturesModule.js +0 -34
- package/build/modules/discover-features/DiscoverFeaturesModule.js.map +0 -1
- package/build/modules/discover-features/DiscoverFeaturesModuleConfig.d.ts +0 -18
- package/build/modules/discover-features/DiscoverFeaturesModuleConfig.js +0 -15
- package/build/modules/discover-features/DiscoverFeaturesModuleConfig.js.map +0 -1
- package/build/modules/discover-features/DiscoverFeaturesServiceOptions.d.ts +0 -13
- package/build/modules/discover-features/DiscoverFeaturesServiceOptions.js +0 -3
- package/build/modules/discover-features/DiscoverFeaturesServiceOptions.js.map +0 -1
- package/build/modules/discover-features/index.d.ts +0 -4
- package/build/modules/discover-features/index.js +0 -21
- package/build/modules/discover-features/index.js.map +0 -1
- package/build/modules/discover-features/protocol/index.d.ts +0 -2
- package/build/modules/discover-features/protocol/index.js +0 -19
- package/build/modules/discover-features/protocol/index.js.map +0 -1
- package/build/modules/discover-features/protocol/v1/V1DiscoverFeaturesService.d.ts +0 -22
- package/build/modules/discover-features/protocol/v1/V1DiscoverFeaturesService.js +0 -116
- package/build/modules/discover-features/protocol/v1/V1DiscoverFeaturesService.js.map +0 -1
- package/build/modules/discover-features/protocol/v1/handlers/V1DiscloseMessageHandler.d.ts +0 -9
- package/build/modules/discover-features/protocol/v1/handlers/V1DiscloseMessageHandler.js +0 -15
- package/build/modules/discover-features/protocol/v1/handlers/V1DiscloseMessageHandler.js.map +0 -1
- package/build/modules/discover-features/protocol/v1/handlers/V1QueryMessageHandler.d.ts +0 -10
- package/build/modules/discover-features/protocol/v1/handlers/V1QueryMessageHandler.js +0 -23
- package/build/modules/discover-features/protocol/v1/handlers/V1QueryMessageHandler.js.map +0 -1
- package/build/modules/discover-features/protocol/v1/handlers/index.d.ts +0 -2
- package/build/modules/discover-features/protocol/v1/handlers/index.js +0 -19
- package/build/modules/discover-features/protocol/v1/handlers/index.js.map +0 -1
- package/build/modules/discover-features/protocol/v1/index.d.ts +0 -2
- package/build/modules/discover-features/protocol/v1/index.js +0 -19
- package/build/modules/discover-features/protocol/v1/index.js.map +0 -1
- package/build/modules/discover-features/protocol/v1/messages/DiscloseMessage.d.ts +0 -21
- package/build/modules/discover-features/protocol/v1/messages/DiscloseMessage.js +0 -61
- package/build/modules/discover-features/protocol/v1/messages/DiscloseMessage.js.map +0 -1
- package/build/modules/discover-features/protocol/v1/messages/QueryMessage.d.ts +0 -13
- package/build/modules/discover-features/protocol/v1/messages/QueryMessage.js +0 -43
- package/build/modules/discover-features/protocol/v1/messages/QueryMessage.js.map +0 -1
- package/build/modules/discover-features/protocol/v1/messages/index.d.ts +0 -2
- package/build/modules/discover-features/protocol/v1/messages/index.js +0 -19
- package/build/modules/discover-features/protocol/v1/messages/index.js.map +0 -1
- package/build/modules/discover-features/protocol/v2/V2DiscoverFeaturesService.d.ts +0 -21
- package/build/modules/discover-features/protocol/v2/V2DiscoverFeaturesService.js +0 -96
- package/build/modules/discover-features/protocol/v2/V2DiscoverFeaturesService.js.map +0 -1
- package/build/modules/discover-features/protocol/v2/handlers/V2DisclosuresMessageHandler.d.ts +0 -9
- package/build/modules/discover-features/protocol/v2/handlers/V2DisclosuresMessageHandler.js +0 -15
- package/build/modules/discover-features/protocol/v2/handlers/V2DisclosuresMessageHandler.js.map +0 -1
- package/build/modules/discover-features/protocol/v2/handlers/V2QueriesMessageHandler.d.ts +0 -10
- package/build/modules/discover-features/protocol/v2/handlers/V2QueriesMessageHandler.js +0 -23
- package/build/modules/discover-features/protocol/v2/handlers/V2QueriesMessageHandler.js.map +0 -1
- package/build/modules/discover-features/protocol/v2/handlers/index.d.ts +0 -2
- package/build/modules/discover-features/protocol/v2/handlers/index.js +0 -19
- package/build/modules/discover-features/protocol/v2/handlers/index.js.map +0 -1
- package/build/modules/discover-features/protocol/v2/index.d.ts +0 -2
- package/build/modules/discover-features/protocol/v2/index.js +0 -19
- package/build/modules/discover-features/protocol/v2/index.js.map +0 -1
- package/build/modules/discover-features/protocol/v2/messages/V2DisclosuresMessage.d.ts +0 -13
- package/build/modules/discover-features/protocol/v2/messages/V2DisclosuresMessage.js +0 -45
- package/build/modules/discover-features/protocol/v2/messages/V2DisclosuresMessage.js.map +0 -1
- package/build/modules/discover-features/protocol/v2/messages/V2QueriesMessage.d.ts +0 -14
- package/build/modules/discover-features/protocol/v2/messages/V2QueriesMessage.js +0 -41
- package/build/modules/discover-features/protocol/v2/messages/V2QueriesMessage.js.map +0 -1
- package/build/modules/discover-features/protocol/v2/messages/index.d.ts +0 -2
- package/build/modules/discover-features/protocol/v2/messages/index.js +0 -19
- package/build/modules/discover-features/protocol/v2/messages/index.js.map +0 -1
- package/build/modules/discover-features/services/DiscoverFeaturesService.d.ts +0 -19
- package/build/modules/discover-features/services/DiscoverFeaturesService.js +0 -13
- package/build/modules/discover-features/services/DiscoverFeaturesService.js.map +0 -1
- package/build/modules/discover-features/services/index.d.ts +0 -1
- package/build/modules/discover-features/services/index.js +0 -18
- package/build/modules/discover-features/services/index.js.map +0 -1
- package/build/modules/generic-records/GenericRecordsApi.d.ts +0 -21
- package/build/modules/generic-records/GenericRecordsApi.js +0 -89
- package/build/modules/generic-records/GenericRecordsApi.js.map +0 -1
- package/build/modules/generic-records/GenericRecordsModule.d.ts +0 -9
- package/build/modules/generic-records/GenericRecordsModule.js +0 -22
- package/build/modules/generic-records/GenericRecordsModule.js.map +0 -1
- package/build/modules/generic-records/index.d.ts +0 -2
- package/build/modules/generic-records/index.js +0 -19
- package/build/modules/generic-records/index.js.map +0 -1
- package/build/modules/generic-records/repository/GenericRecord.d.ts +0 -24
- package/build/modules/generic-records/repository/GenericRecord.js +0 -24
- package/build/modules/generic-records/repository/GenericRecord.js.map +0 -1
- package/build/modules/generic-records/repository/GenericRecordsRepository.d.ts +0 -7
- package/build/modules/generic-records/repository/GenericRecordsRepository.js +0 -32
- package/build/modules/generic-records/repository/GenericRecordsRepository.js.map +0 -1
- package/build/modules/generic-records/services/GenericRecordService.d.ts +0 -16
- package/build/modules/generic-records/services/GenericRecordService.js +0 -69
- package/build/modules/generic-records/services/GenericRecordService.js.map +0 -1
- package/build/modules/mdoc/Mdoc.d.ts +0 -27
- package/build/modules/mdoc/Mdoc.js +0 -121
- package/build/modules/mdoc/Mdoc.js.map +0 -1
- package/build/modules/mdoc/MdocApi.d.ts +0 -44
- package/build/modules/mdoc/MdocApi.js +0 -74
- package/build/modules/mdoc/MdocApi.js.map +0 -1
- package/build/modules/mdoc/MdocContext.d.ts +0 -3
- package/build/modules/mdoc/MdocContext.js +0 -105
- package/build/modules/mdoc/MdocContext.js.map +0 -1
- package/build/modules/mdoc/MdocDeviceResponse.d.ts +0 -109
- package/build/modules/mdoc/MdocDeviceResponse.js +0 -150
- package/build/modules/mdoc/MdocDeviceResponse.js.map +0 -1
- package/build/modules/mdoc/MdocError.d.ts +0 -3
- package/build/modules/mdoc/MdocError.js +0 -8
- package/build/modules/mdoc/MdocError.js.map +0 -1
- package/build/modules/mdoc/MdocModule.d.ts +0 -12
- package/build/modules/mdoc/MdocModule.js +0 -30
- package/build/modules/mdoc/MdocModule.js.map +0 -1
- package/build/modules/mdoc/MdocOptions.d.ts +0 -51
- package/build/modules/mdoc/MdocOptions.js +0 -3
- package/build/modules/mdoc/MdocOptions.js.map +0 -1
- package/build/modules/mdoc/MdocService.d.ts +0 -39
- package/build/modules/mdoc/MdocService.js +0 -66
- package/build/modules/mdoc/MdocService.js.map +0 -1
- package/build/modules/mdoc/index.d.ts +0 -8
- package/build/modules/mdoc/index.js +0 -25
- package/build/modules/mdoc/index.js.map +0 -1
- package/build/modules/mdoc/repository/MdocRecord.d.ts +0 -29
- package/build/modules/mdoc/repository/MdocRecord.js +0 -33
- package/build/modules/mdoc/repository/MdocRecord.js.map +0 -1
- package/build/modules/mdoc/repository/MdocRepository.d.ts +0 -7
- package/build/modules/mdoc/repository/MdocRepository.js +0 -32
- package/build/modules/mdoc/repository/MdocRepository.js.map +0 -1
- package/build/modules/mdoc/repository/index.d.ts +0 -2
- package/build/modules/mdoc/repository/index.js +0 -19
- package/build/modules/mdoc/repository/index.js.map +0 -1
- package/build/modules/message-pickup/MessagePickupApi.d.ts +0 -36
- package/build/modules/message-pickup/MessagePickupApi.js +0 -208
- package/build/modules/message-pickup/MessagePickupApi.js.map +0 -1
- package/build/modules/message-pickup/MessagePickupApiOptions.d.ts +0 -39
- package/build/modules/message-pickup/MessagePickupApiOptions.js +0 -3
- package/build/modules/message-pickup/MessagePickupApiOptions.js.map +0 -1
- package/build/modules/message-pickup/MessagePickupEvents.d.ts +0 -27
- package/build/modules/message-pickup/MessagePickupEvents.js +0 -10
- package/build/modules/message-pickup/MessagePickupEvents.js.map +0 -1
- package/build/modules/message-pickup/MessagePickupModule.d.ts +0 -23
- package/build/modules/message-pickup/MessagePickupModule.js +0 -41
- package/build/modules/message-pickup/MessagePickupModule.js.map +0 -1
- package/build/modules/message-pickup/MessagePickupModuleConfig.d.ts +0 -41
- package/build/modules/message-pickup/MessagePickupModuleConfig.js +0 -23
- package/build/modules/message-pickup/MessagePickupModuleConfig.js.map +0 -1
- package/build/modules/message-pickup/MessagePickupSession.d.ts +0 -12
- package/build/modules/message-pickup/MessagePickupSession.js +0 -9
- package/build/modules/message-pickup/MessagePickupSession.js.map +0 -1
- package/build/modules/message-pickup/index.d.ts +0 -8
- package/build/modules/message-pickup/index.js +0 -27
- package/build/modules/message-pickup/index.js.map +0 -1
- package/build/modules/message-pickup/protocol/BaseMessagePickupProtocol.d.ts +0 -17
- package/build/modules/message-pickup/protocol/BaseMessagePickupProtocol.js +0 -11
- package/build/modules/message-pickup/protocol/BaseMessagePickupProtocol.js.map +0 -1
- package/build/modules/message-pickup/protocol/MessagePickupProtocol.d.ts +0 -12
- package/build/modules/message-pickup/protocol/MessagePickupProtocol.js +0 -3
- package/build/modules/message-pickup/protocol/MessagePickupProtocol.js.map +0 -1
- package/build/modules/message-pickup/protocol/MessagePickupProtocolOptions.d.ts +0 -27
- package/build/modules/message-pickup/protocol/MessagePickupProtocolOptions.js +0 -3
- package/build/modules/message-pickup/protocol/MessagePickupProtocolOptions.js.map +0 -1
- package/build/modules/message-pickup/protocol/index.d.ts +0 -2
- package/build/modules/message-pickup/protocol/index.js +0 -19
- package/build/modules/message-pickup/protocol/index.js.map +0 -1
- package/build/modules/message-pickup/protocol/v1/V1MessagePickupProtocol.d.ts +0 -24
- package/build/modules/message-pickup/protocol/v1/V1MessagePickupProtocol.js +0 -126
- package/build/modules/message-pickup/protocol/v1/V1MessagePickupProtocol.js.map +0 -1
- package/build/modules/message-pickup/protocol/v1/handlers/V1BatchHandler.d.ts +0 -10
- package/build/modules/message-pickup/protocol/v1/handlers/V1BatchHandler.js +0 -23
- package/build/modules/message-pickup/protocol/v1/handlers/V1BatchHandler.js.map +0 -1
- package/build/modules/message-pickup/protocol/v1/handlers/V1BatchPickupHandler.d.ts +0 -9
- package/build/modules/message-pickup/protocol/v1/handlers/V1BatchPickupHandler.js +0 -16
- package/build/modules/message-pickup/protocol/v1/handlers/V1BatchPickupHandler.js.map +0 -1
- package/build/modules/message-pickup/protocol/v1/handlers/index.d.ts +0 -2
- package/build/modules/message-pickup/protocol/v1/handlers/index.js +0 -19
- package/build/modules/message-pickup/protocol/v1/handlers/index.js.map +0 -1
- package/build/modules/message-pickup/protocol/v1/index.d.ts +0 -2
- package/build/modules/message-pickup/protocol/v1/index.js +0 -19
- package/build/modules/message-pickup/protocol/v1/index.js.map +0 -1
- package/build/modules/message-pickup/protocol/v1/messages/V1BatchMessage.d.ts +0 -27
- package/build/modules/message-pickup/protocol/v1/messages/V1BatchMessage.js +0 -71
- package/build/modules/message-pickup/protocol/v1/messages/V1BatchMessage.js.map +0 -1
- package/build/modules/message-pickup/protocol/v1/messages/V1BatchPickupMessage.d.ts +0 -22
- package/build/modules/message-pickup/protocol/v1/messages/V1BatchPickupMessage.js +0 -49
- package/build/modules/message-pickup/protocol/v1/messages/V1BatchPickupMessage.js.map +0 -1
- package/build/modules/message-pickup/protocol/v1/messages/index.d.ts +0 -2
- package/build/modules/message-pickup/protocol/v1/messages/index.js +0 -19
- package/build/modules/message-pickup/protocol/v1/messages/index.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/V2MessagePickupProtocol.d.ts +0 -28
- package/build/modules/message-pickup/protocol/v2/V2MessagePickupProtocol.js +0 -240
- package/build/modules/message-pickup/protocol/v2/V2MessagePickupProtocol.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/handlers/V2DeliveryRequestHandler.d.ts +0 -10
- package/build/modules/message-pickup/protocol/v2/handlers/V2DeliveryRequestHandler.js +0 -16
- package/build/modules/message-pickup/protocol/v2/handlers/V2DeliveryRequestHandler.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/handlers/V2LiveDeliveryChangeHandler.d.ts +0 -10
- package/build/modules/message-pickup/protocol/v2/handlers/V2LiveDeliveryChangeHandler.js +0 -16
- package/build/modules/message-pickup/protocol/v2/handlers/V2LiveDeliveryChangeHandler.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/handlers/V2MessageDeliveryHandler.d.ts +0 -11
- package/build/modules/message-pickup/protocol/v2/handlers/V2MessageDeliveryHandler.js +0 -23
- package/build/modules/message-pickup/protocol/v2/handlers/V2MessageDeliveryHandler.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/handlers/V2MessagesReceivedHandler.d.ts +0 -10
- package/build/modules/message-pickup/protocol/v2/handlers/V2MessagesReceivedHandler.js +0 -16
- package/build/modules/message-pickup/protocol/v2/handlers/V2MessagesReceivedHandler.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/handlers/V2StatusHandler.d.ts +0 -11
- package/build/modules/message-pickup/protocol/v2/handlers/V2StatusHandler.js +0 -23
- package/build/modules/message-pickup/protocol/v2/handlers/V2StatusHandler.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/handlers/V2StatusRequestHandler.d.ts +0 -10
- package/build/modules/message-pickup/protocol/v2/handlers/V2StatusRequestHandler.js +0 -16
- package/build/modules/message-pickup/protocol/v2/handlers/V2StatusRequestHandler.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/handlers/index.d.ts +0 -6
- package/build/modules/message-pickup/protocol/v2/handlers/index.js +0 -23
- package/build/modules/message-pickup/protocol/v2/handlers/index.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/index.d.ts +0 -2
- package/build/modules/message-pickup/protocol/v2/index.js +0 -19
- package/build/modules/message-pickup/protocol/v2/index.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/messages/V2DeliveryRequestMessage.d.ts +0 -14
- package/build/modules/message-pickup/protocol/v2/messages/V2DeliveryRequestMessage.js +0 -47
- package/build/modules/message-pickup/protocol/v2/messages/V2DeliveryRequestMessage.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/messages/V2LiveDeliveryChangeMessage.d.ts +0 -12
- package/build/modules/message-pickup/protocol/v2/messages/V2LiveDeliveryChangeMessage.js +0 -41
- package/build/modules/message-pickup/protocol/v2/messages/V2LiveDeliveryChangeMessage.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/messages/V2MessageDeliveryMessage.d.ts +0 -15
- package/build/modules/message-pickup/protocol/v2/messages/V2MessageDeliveryMessage.js +0 -48
- package/build/modules/message-pickup/protocol/v2/messages/V2MessageDeliveryMessage.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/messages/V2MessagesReceivedMessage.d.ts +0 -12
- package/build/modules/message-pickup/protocol/v2/messages/V2MessagesReceivedMessage.js +0 -41
- package/build/modules/message-pickup/protocol/v2/messages/V2MessagesReceivedMessage.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/messages/V2StatusMessage.d.ts +0 -25
- package/build/modules/message-pickup/protocol/v2/messages/V2StatusMessage.js +0 -89
- package/build/modules/message-pickup/protocol/v2/messages/V2StatusMessage.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/messages/V2StatusRequestMessage.d.ts +0 -12
- package/build/modules/message-pickup/protocol/v2/messages/V2StatusRequestMessage.js +0 -40
- package/build/modules/message-pickup/protocol/v2/messages/V2StatusRequestMessage.js.map +0 -1
- package/build/modules/message-pickup/protocol/v2/messages/index.d.ts +0 -6
- package/build/modules/message-pickup/protocol/v2/messages/index.js +0 -23
- package/build/modules/message-pickup/protocol/v2/messages/index.js.map +0 -1
- package/build/modules/message-pickup/services/MessagePickupSessionService.d.ts +0 -27
- package/build/modules/message-pickup/services/MessagePickupSessionService.js +0 -91
- package/build/modules/message-pickup/services/MessagePickupSessionService.js.map +0 -1
- package/build/modules/message-pickup/services/index.d.ts +0 -1
- package/build/modules/message-pickup/services/index.js +0 -18
- package/build/modules/message-pickup/services/index.js.map +0 -1
- package/build/modules/message-pickup/storage/InMemoryMessagePickupRepository.d.ts +0 -13
- package/build/modules/message-pickup/storage/InMemoryMessagePickupRepository.js +0 -77
- package/build/modules/message-pickup/storage/InMemoryMessagePickupRepository.js.map +0 -1
- package/build/modules/message-pickup/storage/MessagePickupRepository.d.ts +0 -8
- package/build/modules/message-pickup/storage/MessagePickupRepository.js +0 -3
- package/build/modules/message-pickup/storage/MessagePickupRepository.js.map +0 -1
- package/build/modules/message-pickup/storage/MessagePickupRepositoryOptions.d.ts +0 -20
- package/build/modules/message-pickup/storage/MessagePickupRepositoryOptions.js +0 -3
- package/build/modules/message-pickup/storage/MessagePickupRepositoryOptions.js.map +0 -1
- package/build/modules/message-pickup/storage/QueuedMessage.d.ts +0 -12
- package/build/modules/message-pickup/storage/QueuedMessage.js +0 -3
- package/build/modules/message-pickup/storage/QueuedMessage.js.map +0 -1
- package/build/modules/message-pickup/storage/index.d.ts +0 -4
- package/build/modules/message-pickup/storage/index.js +0 -21
- package/build/modules/message-pickup/storage/index.js.map +0 -1
- package/build/modules/oob/OutOfBandApi.d.ts +0 -276
- package/build/modules/oob/OutOfBandApi.js +0 -722
- package/build/modules/oob/OutOfBandApi.js.map +0 -1
- package/build/modules/oob/OutOfBandModule.d.ts +0 -10
- package/build/modules/oob/OutOfBandModule.js +0 -28
- package/build/modules/oob/OutOfBandModule.js.map +0 -1
- package/build/modules/oob/OutOfBandService.d.ts +0 -51
- package/build/modules/oob/OutOfBandService.js +0 -224
- package/build/modules/oob/OutOfBandService.js.map +0 -1
- package/build/modules/oob/domain/OutOfBandDidCommService.d.ts +0 -18
- package/build/modules/oob/domain/OutOfBandDidCommService.js +0 -77
- package/build/modules/oob/domain/OutOfBandDidCommService.js.map +0 -1
- package/build/modules/oob/domain/OutOfBandEvents.d.ts +0 -23
- package/build/modules/oob/domain/OutOfBandEvents.js +0 -9
- package/build/modules/oob/domain/OutOfBandEvents.js.map +0 -1
- package/build/modules/oob/domain/OutOfBandRole.d.ts +0 -4
- package/build/modules/oob/domain/OutOfBandRole.js +0 -9
- package/build/modules/oob/domain/OutOfBandRole.js.map +0 -1
- package/build/modules/oob/domain/OutOfBandState.d.ts +0 -6
- package/build/modules/oob/domain/OutOfBandState.js +0 -11
- package/build/modules/oob/domain/OutOfBandState.js.map +0 -1
- package/build/modules/oob/domain/index.d.ts +0 -4
- package/build/modules/oob/domain/index.js +0 -21
- package/build/modules/oob/domain/index.js.map +0 -1
- package/build/modules/oob/handlers/HandshakeReuseAcceptedHandler.d.ts +0 -10
- package/build/modules/oob/handlers/HandshakeReuseAcceptedHandler.js +0 -16
- package/build/modules/oob/handlers/HandshakeReuseAcceptedHandler.js.map +0 -1
- package/build/modules/oob/handlers/HandshakeReuseHandler.d.ts +0 -11
- package/build/modules/oob/handlers/HandshakeReuseHandler.js +0 -21
- package/build/modules/oob/handlers/HandshakeReuseHandler.js.map +0 -1
- package/build/modules/oob/handlers/index.d.ts +0 -1
- package/build/modules/oob/handlers/index.js +0 -18
- package/build/modules/oob/handlers/index.js.map +0 -1
- package/build/modules/oob/helpers.d.ts +0 -4
- package/build/modules/oob/helpers.js +0 -71
- package/build/modules/oob/helpers.js.map +0 -1
- package/build/modules/oob/index.d.ts +0 -6
- package/build/modules/oob/index.js +0 -23
- package/build/modules/oob/index.js.map +0 -1
- package/build/modules/oob/messages/HandshakeReuseAcceptedMessage.d.ts +0 -11
- package/build/modules/oob/messages/HandshakeReuseAcceptedMessage.js +0 -35
- package/build/modules/oob/messages/HandshakeReuseAcceptedMessage.js.map +0 -1
- package/build/modules/oob/messages/HandshakeReuseMessage.d.ts +0 -10
- package/build/modules/oob/messages/HandshakeReuseMessage.js +0 -34
- package/build/modules/oob/messages/HandshakeReuseMessage.js.map +0 -1
- package/build/modules/oob/messages/OutOfBandInvitation.d.ts +0 -55
- package/build/modules/oob/messages/OutOfBandInvitation.js +0 -181
- package/build/modules/oob/messages/OutOfBandInvitation.js.map +0 -1
- package/build/modules/oob/messages/index.d.ts +0 -2
- package/build/modules/oob/messages/index.js +0 -19
- package/build/modules/oob/messages/index.js.map +0 -1
- package/build/modules/oob/repository/OutOfBandRecord.d.ts +0 -59
- package/build/modules/oob/repository/OutOfBandRecord.js +0 -63
- package/build/modules/oob/repository/OutOfBandRecord.js.map +0 -1
- package/build/modules/oob/repository/OutOfBandRepository.d.ts +0 -7
- package/build/modules/oob/repository/OutOfBandRepository.js +0 -32
- package/build/modules/oob/repository/OutOfBandRepository.js.map +0 -1
- package/build/modules/oob/repository/index.d.ts +0 -2
- package/build/modules/oob/repository/index.js +0 -19
- package/build/modules/oob/repository/index.js.map +0 -1
- package/build/modules/oob/repository/outOfBandRecordMetadataTypes.d.ts +0 -19
- package/build/modules/oob/repository/outOfBandRecordMetadataTypes.js +0 -9
- package/build/modules/oob/repository/outOfBandRecordMetadataTypes.js.map +0 -1
- package/build/modules/problem-reports/errors/ProblemReportError.d.ts +0 -9
- package/build/modules/problem-reports/errors/ProblemReportError.js +0 -18
- package/build/modules/problem-reports/errors/ProblemReportError.js.map +0 -1
- package/build/modules/problem-reports/errors/index.d.ts +0 -1
- package/build/modules/problem-reports/errors/index.js +0 -18
- package/build/modules/problem-reports/errors/index.js.map +0 -1
- package/build/modules/problem-reports/index.d.ts +0 -3
- package/build/modules/problem-reports/index.js +0 -20
- package/build/modules/problem-reports/index.js.map +0 -1
- package/build/modules/problem-reports/messages/ProblemReportMessage.d.ts +0 -63
- package/build/modules/problem-reports/messages/ProblemReportMessage.js +0 -119
- package/build/modules/problem-reports/messages/ProblemReportMessage.js.map +0 -1
- package/build/modules/problem-reports/messages/index.d.ts +0 -1
- package/build/modules/problem-reports/messages/index.js +0 -18
- package/build/modules/problem-reports/messages/index.js.map +0 -1
- package/build/modules/problem-reports/models/ProblemReportReason.d.ts +0 -3
- package/build/modules/problem-reports/models/ProblemReportReason.js +0 -8
- package/build/modules/problem-reports/models/ProblemReportReason.js.map +0 -1
- package/build/modules/problem-reports/models/index.d.ts +0 -1
- package/build/modules/problem-reports/models/index.js +0 -18
- package/build/modules/problem-reports/models/index.js.map +0 -1
- package/build/modules/proofs/ProofEvents.d.ts +0 -13
- package/build/modules/proofs/ProofEvents.js +0 -8
- package/build/modules/proofs/ProofEvents.js.map +0 -1
- package/build/modules/proofs/ProofsApi.d.ts +0 -68
- package/build/modules/proofs/ProofsApi.js +0 -478
- package/build/modules/proofs/ProofsApi.js.map +0 -1
- package/build/modules/proofs/ProofsApiOptions.d.ts +0 -141
- package/build/modules/proofs/ProofsApiOptions.js +0 -3
- package/build/modules/proofs/ProofsApiOptions.js.map +0 -1
- package/build/modules/proofs/ProofsModule.d.ts +0 -23
- package/build/modules/proofs/ProofsModule.js +0 -31
- package/build/modules/proofs/ProofsModule.js.map +0 -1
- package/build/modules/proofs/ProofsModuleConfig.d.ts +0 -34
- package/build/modules/proofs/ProofsModuleConfig.js +0 -20
- package/build/modules/proofs/ProofsModuleConfig.js.map +0 -1
- package/build/modules/proofs/errors/PresentationProblemReportReason.d.ts +0 -8
- package/build/modules/proofs/errors/PresentationProblemReportReason.js +0 -13
- package/build/modules/proofs/errors/PresentationProblemReportReason.js.map +0 -1
- package/build/modules/proofs/errors/index.d.ts +0 -1
- package/build/modules/proofs/errors/index.js +0 -18
- package/build/modules/proofs/errors/index.js.map +0 -1
- package/build/modules/proofs/formats/ProofFormat.d.ts +0 -66
- package/build/modules/proofs/formats/ProofFormat.js +0 -3
- package/build/modules/proofs/formats/ProofFormat.js.map +0 -1
- package/build/modules/proofs/formats/ProofFormatService.d.ts +0 -19
- package/build/modules/proofs/formats/ProofFormatService.js +0 -3
- package/build/modules/proofs/formats/ProofFormatService.js.map +0 -1
- package/build/modules/proofs/formats/ProofFormatServiceOptions.d.ts +0 -103
- package/build/modules/proofs/formats/ProofFormatServiceOptions.js +0 -3
- package/build/modules/proofs/formats/ProofFormatServiceOptions.js.map +0 -1
- package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormat.d.ts +0 -53
- package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormat.js +0 -3
- package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormat.js.map +0 -1
- package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormatService.d.ts +0 -32
- package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormatService.js +0 -285
- package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormatService.js.map +0 -1
- package/build/modules/proofs/formats/dif-presentation-exchange/index.d.ts +0 -2
- package/build/modules/proofs/formats/dif-presentation-exchange/index.js +0 -19
- package/build/modules/proofs/formats/dif-presentation-exchange/index.js.map +0 -1
- package/build/modules/proofs/formats/index.d.ts +0 -6
- package/build/modules/proofs/formats/index.js +0 -36
- package/build/modules/proofs/formats/index.js.map +0 -1
- package/build/modules/proofs/index.d.ts +0 -10
- package/build/modules/proofs/index.js +0 -29
- package/build/modules/proofs/index.js.map +0 -1
- package/build/modules/proofs/models/ProofAutoAcceptType.d.ts +0 -8
- package/build/modules/proofs/models/ProofAutoAcceptType.js +0 -16
- package/build/modules/proofs/models/ProofAutoAcceptType.js.map +0 -1
- package/build/modules/proofs/models/ProofFormatSpec.d.ts +0 -9
- package/build/modules/proofs/models/ProofFormatSpec.js +0 -35
- package/build/modules/proofs/models/ProofFormatSpec.js.map +0 -1
- package/build/modules/proofs/models/ProofRole.d.ts +0 -4
- package/build/modules/proofs/models/ProofRole.js +0 -9
- package/build/modules/proofs/models/ProofRole.js.map +0 -1
- package/build/modules/proofs/models/ProofState.d.ts +0 -16
- package/build/modules/proofs/models/ProofState.js +0 -21
- package/build/modules/proofs/models/ProofState.js.map +0 -1
- package/build/modules/proofs/models/index.d.ts +0 -4
- package/build/modules/proofs/models/index.js +0 -21
- package/build/modules/proofs/models/index.js.map +0 -1
- package/build/modules/proofs/protocol/BaseProofProtocol.d.ts +0 -98
- package/build/modules/proofs/protocol/BaseProofProtocol.js +0 -151
- package/build/modules/proofs/protocol/BaseProofProtocol.js.map +0 -1
- package/build/modules/proofs/protocol/ProofProtocol.d.ts +0 -52
- package/build/modules/proofs/protocol/ProofProtocol.js +0 -3
- package/build/modules/proofs/protocol/ProofProtocol.js.map +0 -1
- package/build/modules/proofs/protocol/ProofProtocolOptions.d.ts +0 -128
- package/build/modules/proofs/protocol/ProofProtocolOptions.js +0 -3
- package/build/modules/proofs/protocol/ProofProtocolOptions.js.map +0 -1
- package/build/modules/proofs/protocol/index.d.ts +0 -5
- package/build/modules/proofs/protocol/index.js +0 -39
- package/build/modules/proofs/protocol/index.js.map +0 -1
- package/build/modules/proofs/protocol/v2/ProofFormatCoordinator.d.ts +0 -93
- package/build/modules/proofs/protocol/v2/ProofFormatCoordinator.js +0 -307
- package/build/modules/proofs/protocol/v2/ProofFormatCoordinator.js.map +0 -1
- package/build/modules/proofs/protocol/v2/V2ProofProtocol.d.ts +0 -114
- package/build/modules/proofs/protocol/v2/V2ProofProtocol.js +0 -800
- package/build/modules/proofs/protocol/v2/V2ProofProtocol.js.map +0 -1
- package/build/modules/proofs/protocol/v2/errors/V2PresentationProblemReportError.d.ts +0 -13
- package/build/modules/proofs/protocol/v2/errors/V2PresentationProblemReportError.js +0 -19
- package/build/modules/proofs/protocol/v2/errors/V2PresentationProblemReportError.js.map +0 -1
- package/build/modules/proofs/protocol/v2/errors/index.d.ts +0 -1
- package/build/modules/proofs/protocol/v2/errors/index.js +0 -18
- package/build/modules/proofs/protocol/v2/errors/index.js.map +0 -1
- package/build/modules/proofs/protocol/v2/handlers/V2PresentationAckHandler.d.ts +0 -9
- package/build/modules/proofs/protocol/v2/handlers/V2PresentationAckHandler.js +0 -15
- package/build/modules/proofs/protocol/v2/handlers/V2PresentationAckHandler.js.map +0 -1
- package/build/modules/proofs/protocol/v2/handlers/V2PresentationHandler.d.ts +0 -10
- package/build/modules/proofs/protocol/v2/handlers/V2PresentationHandler.js +0 -43
- package/build/modules/proofs/protocol/v2/handlers/V2PresentationHandler.js.map +0 -1
- package/build/modules/proofs/protocol/v2/handlers/V2PresentationProblemReportHandler.d.ts +0 -9
- package/build/modules/proofs/protocol/v2/handlers/V2PresentationProblemReportHandler.js +0 -15
- package/build/modules/proofs/protocol/v2/handlers/V2PresentationProblemReportHandler.js.map +0 -1
- package/build/modules/proofs/protocol/v2/handlers/V2ProposePresentationHandler.d.ts +0 -11
- package/build/modules/proofs/protocol/v2/handlers/V2ProposePresentationHandler.js +0 -36
- package/build/modules/proofs/protocol/v2/handlers/V2ProposePresentationHandler.js.map +0 -1
- package/build/modules/proofs/protocol/v2/handlers/V2RequestPresentationHandler.d.ts +0 -10
- package/build/modules/proofs/protocol/v2/handlers/V2RequestPresentationHandler.js +0 -36
- package/build/modules/proofs/protocol/v2/handlers/V2RequestPresentationHandler.js.map +0 -1
- package/build/modules/proofs/protocol/v2/index.d.ts +0 -3
- package/build/modules/proofs/protocol/v2/index.js +0 -20
- package/build/modules/proofs/protocol/v2/index.js.map +0 -1
- package/build/modules/proofs/protocol/v2/messages/V2PresentationAckMessage.d.ts +0 -5
- package/build/modules/proofs/protocol/v2/messages/V2PresentationAckMessage.js +0 -27
- package/build/modules/proofs/protocol/v2/messages/V2PresentationAckMessage.js.map +0 -1
- package/build/modules/proofs/protocol/v2/messages/V2PresentationMessage.d.ts +0 -24
- package/build/modules/proofs/protocol/v2/messages/V2PresentationMessage.js +0 -85
- package/build/modules/proofs/protocol/v2/messages/V2PresentationMessage.js.map +0 -1
- package/build/modules/proofs/protocol/v2/messages/V2PresentationProblemReportMessage.d.ts +0 -8
- package/build/modules/proofs/protocol/v2/messages/V2PresentationProblemReportMessage.js +0 -30
- package/build/modules/proofs/protocol/v2/messages/V2PresentationProblemReportMessage.js.map +0 -1
- package/build/modules/proofs/protocol/v2/messages/V2ProposePresentationMessage.d.ts +0 -22
- package/build/modules/proofs/protocol/v2/messages/V2ProposePresentationMessage.js +0 -77
- package/build/modules/proofs/protocol/v2/messages/V2ProposePresentationMessage.js.map +0 -1
- package/build/modules/proofs/protocol/v2/messages/V2RequestPresentationMessage.d.ts +0 -26
- package/build/modules/proofs/protocol/v2/messages/V2RequestPresentationMessage.js +0 -92
- package/build/modules/proofs/protocol/v2/messages/V2RequestPresentationMessage.js.map +0 -1
- package/build/modules/proofs/protocol/v2/messages/index.d.ts +0 -5
- package/build/modules/proofs/protocol/v2/messages/index.js +0 -22
- package/build/modules/proofs/protocol/v2/messages/index.js.map +0 -1
- package/build/modules/proofs/repository/ProofExchangeRecord.d.ts +0 -50
- package/build/modules/proofs/repository/ProofExchangeRecord.js +0 -54
- package/build/modules/proofs/repository/ProofExchangeRecord.js.map +0 -1
- package/build/modules/proofs/repository/ProofRepository.d.ts +0 -26
- package/build/modules/proofs/repository/ProofRepository.js +0 -54
- package/build/modules/proofs/repository/ProofRepository.js.map +0 -1
- package/build/modules/proofs/repository/index.d.ts +0 -2
- package/build/modules/proofs/repository/index.js +0 -19
- package/build/modules/proofs/repository/index.js.map +0 -1
- package/build/modules/proofs/utils/composeAutoAccept.d.ts +0 -8
- package/build/modules/proofs/utils/composeAutoAccept.js +0 -15
- package/build/modules/proofs/utils/composeAutoAccept.js.map +0 -1
- package/build/modules/proofs/utils/index.d.ts +0 -1
- package/build/modules/proofs/utils/index.js +0 -18
- package/build/modules/proofs/utils/index.js.map +0 -1
- package/build/modules/routing/MediationRecipientApi.d.ts +0 -89
- package/build/modules/routing/MediationRecipientApi.js +0 -425
- package/build/modules/routing/MediationRecipientApi.js.map +0 -1
- package/build/modules/routing/MediationRecipientModule.d.ts +0 -14
- package/build/modules/routing/MediationRecipientModule.js +0 -34
- package/build/modules/routing/MediationRecipientModule.js.map +0 -1
- package/build/modules/routing/MediationRecipientModuleConfig.d.ts +0 -79
- package/build/modules/routing/MediationRecipientModuleConfig.js +0 -38
- package/build/modules/routing/MediationRecipientModuleConfig.js.map +0 -1
- package/build/modules/routing/MediatorApi.d.ts +0 -18
- package/build/modules/routing/MediatorApi.js +0 -69
- package/build/modules/routing/MediatorApi.js.map +0 -1
- package/build/modules/routing/MediatorModule.d.ts +0 -14
- package/build/modules/routing/MediatorModule.js +0 -34
- package/build/modules/routing/MediatorModule.js.map +0 -1
- package/build/modules/routing/MediatorModuleConfig.d.ts +0 -33
- package/build/modules/routing/MediatorModuleConfig.js +0 -21
- package/build/modules/routing/MediatorModuleConfig.js.map +0 -1
- package/build/modules/routing/MediatorPickupStrategy.d.ts +0 -7
- package/build/modules/routing/MediatorPickupStrategy.js +0 -19
- package/build/modules/routing/MediatorPickupStrategy.js.map +0 -1
- package/build/modules/routing/MessageForwardingStrategy.d.ts +0 -5
- package/build/modules/routing/MessageForwardingStrategy.js +0 -16
- package/build/modules/routing/MessageForwardingStrategy.js.map +0 -1
- package/build/modules/routing/RoutingEvents.d.ts +0 -30
- package/build/modules/routing/RoutingEvents.js +0 -10
- package/build/modules/routing/RoutingEvents.js.map +0 -1
- package/build/modules/routing/error/RoutingProblemReportReason.d.ts +0 -3
- package/build/modules/routing/error/RoutingProblemReportReason.js +0 -8
- package/build/modules/routing/error/RoutingProblemReportReason.js.map +0 -1
- package/build/modules/routing/error/index.d.ts +0 -1
- package/build/modules/routing/error/index.js +0 -18
- package/build/modules/routing/error/index.js.map +0 -1
- package/build/modules/routing/handlers/ForwardHandler.d.ts +0 -9
- package/build/modules/routing/handlers/ForwardHandler.js +0 -15
- package/build/modules/routing/handlers/ForwardHandler.js.map +0 -1
- package/build/modules/routing/handlers/KeylistUpdateHandler.d.ts +0 -10
- package/build/modules/routing/handlers/KeylistUpdateHandler.js +0 -21
- package/build/modules/routing/handlers/KeylistUpdateHandler.js.map +0 -1
- package/build/modules/routing/handlers/KeylistUpdateResponseHandler.d.ts +0 -9
- package/build/modules/routing/handlers/KeylistUpdateResponseHandler.js +0 -16
- package/build/modules/routing/handlers/KeylistUpdateResponseHandler.js.map +0 -1
- package/build/modules/routing/handlers/MediationDenyHandler.d.ts +0 -9
- package/build/modules/routing/handlers/MediationDenyHandler.js +0 -16
- package/build/modules/routing/handlers/MediationDenyHandler.js.map +0 -1
- package/build/modules/routing/handlers/MediationGrantHandler.d.ts +0 -9
- package/build/modules/routing/handlers/MediationGrantHandler.js +0 -16
- package/build/modules/routing/handlers/MediationGrantHandler.js.map +0 -1
- package/build/modules/routing/handlers/MediationRequestHandler.d.ts +0 -12
- package/build/modules/routing/handlers/MediationRequestHandler.js +0 -26
- package/build/modules/routing/handlers/MediationRequestHandler.js.map +0 -1
- package/build/modules/routing/handlers/index.d.ts +0 -6
- package/build/modules/routing/handlers/index.js +0 -23
- package/build/modules/routing/handlers/index.js.map +0 -1
- package/build/modules/routing/index.d.ts +0 -10
- package/build/modules/routing/index.js +0 -27
- package/build/modules/routing/index.js.map +0 -1
- package/build/modules/routing/messages/ForwardMessage.d.ts +0 -23
- package/build/modules/routing/messages/ForwardMessage.js +0 -52
- package/build/modules/routing/messages/ForwardMessage.js.map +0 -1
- package/build/modules/routing/messages/KeylistMessage.d.ts +0 -20
- package/build/modules/routing/messages/KeylistMessage.js +0 -49
- package/build/modules/routing/messages/KeylistMessage.js.map +0 -1
- package/build/modules/routing/messages/KeylistUpdateMessage.d.ts +0 -29
- package/build/modules/routing/messages/KeylistUpdateMessage.js +0 -68
- package/build/modules/routing/messages/KeylistUpdateMessage.js.map +0 -1
- package/build/modules/routing/messages/KeylistUpdateResponseMessage.d.ts +0 -34
- package/build/modules/routing/messages/KeylistUpdateResponseMessage.js +0 -79
- package/build/modules/routing/messages/KeylistUpdateResponseMessage.js.map +0 -1
- package/build/modules/routing/messages/MediationDenyMessage.d.ts +0 -14
- package/build/modules/routing/messages/MediationDenyMessage.js +0 -35
- package/build/modules/routing/messages/MediationDenyMessage.js.map +0 -1
- package/build/modules/routing/messages/MediationGrantMessage.d.ts +0 -20
- package/build/modules/routing/messages/MediationGrantMessage.js +0 -55
- package/build/modules/routing/messages/MediationGrantMessage.js.map +0 -1
- package/build/modules/routing/messages/MediationRequestMessage.d.ts +0 -22
- package/build/modules/routing/messages/MediationRequestMessage.js +0 -42
- package/build/modules/routing/messages/MediationRequestMessage.js.map +0 -1
- package/build/modules/routing/messages/index.d.ts +0 -6
- package/build/modules/routing/messages/index.js +0 -23
- package/build/modules/routing/messages/index.js.map +0 -1
- package/build/modules/routing/models/MediationRole.d.ts +0 -9
- package/build/modules/routing/models/MediationRole.js +0 -14
- package/build/modules/routing/models/MediationRole.js.map +0 -1
- package/build/modules/routing/models/MediationState.d.ts +0 -10
- package/build/modules/routing/models/MediationState.js +0 -15
- package/build/modules/routing/models/MediationState.js.map +0 -1
- package/build/modules/routing/models/index.d.ts +0 -2
- package/build/modules/routing/models/index.js +0 -19
- package/build/modules/routing/models/index.js.map +0 -1
- package/build/modules/routing/repository/MediationRecord.d.ts +0 -53
- package/build/modules/routing/repository/MediationRecord.js +0 -87
- package/build/modules/routing/repository/MediationRecord.js.map +0 -1
- package/build/modules/routing/repository/MediationRepository.d.ts +0 -10
- package/build/modules/routing/repository/MediationRepository.js +0 -40
- package/build/modules/routing/repository/MediationRepository.js.map +0 -1
- package/build/modules/routing/repository/MediatorRoutingRecord.d.ts +0 -15
- package/build/modules/routing/repository/MediatorRoutingRecord.js +0 -23
- package/build/modules/routing/repository/MediatorRoutingRecord.js.map +0 -1
- package/build/modules/routing/repository/MediatorRoutingRepository.d.ts +0 -8
- package/build/modules/routing/repository/MediatorRoutingRepository.js +0 -33
- package/build/modules/routing/repository/MediatorRoutingRepository.js.map +0 -1
- package/build/modules/routing/repository/index.d.ts +0 -4
- package/build/modules/routing/repository/index.js +0 -21
- package/build/modules/routing/repository/index.js.map +0 -1
- package/build/modules/routing/services/MediationRecipientService.d.ts +0 -57
- package/build/modules/routing/services/MediationRecipientService.js +0 -276
- package/build/modules/routing/services/MediationRecipientService.js.map +0 -1
- package/build/modules/routing/services/MediatorService.d.ts +0 -39
- package/build/modules/routing/services/MediatorService.js +0 -253
- package/build/modules/routing/services/MediatorService.js.map +0 -1
- package/build/modules/routing/services/RoutingService.d.ts +0 -33
- package/build/modules/routing/services/RoutingService.js +0 -54
- package/build/modules/routing/services/RoutingService.js.map +0 -1
- package/build/modules/routing/services/helpers.d.ts +0 -3
- package/build/modules/routing/services/helpers.js +0 -13
- package/build/modules/routing/services/helpers.js.map +0 -1
- package/build/modules/routing/services/index.d.ts +0 -3
- package/build/modules/routing/services/index.js +0 -20
- package/build/modules/routing/services/index.js.map +0 -1
- package/build/modules/sd-jwt-vc/SdJwtVcApi.d.ts +0 -59
- package/build/modules/sd-jwt-vc/SdJwtVcApi.js +0 -77
- package/build/modules/sd-jwt-vc/SdJwtVcApi.js.map +0 -1
- package/build/modules/sd-jwt-vc/SdJwtVcError.d.ts +0 -3
- package/build/modules/sd-jwt-vc/SdJwtVcError.js +0 -8
- package/build/modules/sd-jwt-vc/SdJwtVcError.js.map +0 -1
- package/build/modules/sd-jwt-vc/SdJwtVcModule.d.ts +0 -12
- package/build/modules/sd-jwt-vc/SdJwtVcModule.js +0 -30
- package/build/modules/sd-jwt-vc/SdJwtVcModule.js.map +0 -1
- package/build/modules/sd-jwt-vc/SdJwtVcOptions.d.ts +0 -93
- package/build/modules/sd-jwt-vc/SdJwtVcOptions.js +0 -3
- package/build/modules/sd-jwt-vc/SdJwtVcOptions.js.map +0 -1
- package/build/modules/sd-jwt-vc/SdJwtVcService.d.ts +0 -80
- package/build/modules/sd-jwt-vc/SdJwtVcService.js +0 -466
- package/build/modules/sd-jwt-vc/SdJwtVcService.js.map +0 -1
- package/build/modules/sd-jwt-vc/index.d.ts +0 -6
- package/build/modules/sd-jwt-vc/index.js +0 -23
- package/build/modules/sd-jwt-vc/index.js.map +0 -1
- package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.d.ts +0 -32
- package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.js +0 -36
- package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.js.map +0 -1
- package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.d.ts +0 -7
- package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.js +0 -32
- package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.js.map +0 -1
- package/build/modules/sd-jwt-vc/repository/index.d.ts +0 -2
- package/build/modules/sd-jwt-vc/repository/index.js +0 -19
- package/build/modules/sd-jwt-vc/repository/index.js.map +0 -1
- package/build/modules/vc/W3cCredentialService.d.ts +0 -60
- package/build/modules/vc/W3cCredentialService.js +0 -163
- package/build/modules/vc/W3cCredentialService.js.map +0 -1
- package/build/modules/vc/W3cCredentialServiceOptions.d.ts +0 -160
- package/build/modules/vc/W3cCredentialServiceOptions.js +0 -3
- package/build/modules/vc/W3cCredentialServiceOptions.js.map +0 -1
- package/build/modules/vc/W3cCredentialsApi.d.ts +0 -24
- package/build/modules/vc/W3cCredentialsApi.js +0 -60
- package/build/modules/vc/W3cCredentialsApi.js.map +0 -1
- package/build/modules/vc/W3cCredentialsModule.d.ts +0 -13
- package/build/modules/vc/W3cCredentialsModule.js +0 -49
- package/build/modules/vc/W3cCredentialsModule.js.map +0 -1
- package/build/modules/vc/W3cCredentialsModuleConfig.d.ts +0 -36
- package/build/modules/vc/W3cCredentialsModuleConfig.js +0 -16
- package/build/modules/vc/W3cCredentialsModuleConfig.js.map +0 -1
- package/build/modules/vc/__tests__/dids/did_example_489398593.d.ts +0 -10
- package/build/modules/vc/__tests__/dids/did_example_489398593.js +0 -16
- package/build/modules/vc/__tests__/dids/did_example_489398593.js.map +0 -1
- package/build/modules/vc/__tests__/dids/did_sov_QqEfJxe752NCmWqR5TssZ5.d.ts +0 -20
- package/build/modules/vc/__tests__/dids/did_sov_QqEfJxe752NCmWqR5TssZ5.js +0 -28
- package/build/modules/vc/__tests__/dids/did_sov_QqEfJxe752NCmWqR5TssZ5.js.map +0 -1
- package/build/modules/vc/__tests__/dids/did_web_launchpad.d.ts +0 -20
- package/build/modules/vc/__tests__/dids/did_web_launchpad.js +0 -28
- package/build/modules/vc/__tests__/dids/did_web_launchpad.js.map +0 -1
- package/build/modules/vc/__tests__/dids/did_z6Mkgg342Ycpuk263R9d8Aq6MUaxPn1DDeHyGo38EefXmgDL.d.ts +0 -23
- package/build/modules/vc/__tests__/dids/did_z6Mkgg342Ycpuk263R9d8Aq6MUaxPn1DDeHyGo38EefXmgDL.js +0 -49
- package/build/modules/vc/__tests__/dids/did_z6Mkgg342Ycpuk263R9d8Aq6MUaxPn1DDeHyGo38EefXmgDL.js.map +0 -1
- package/build/modules/vc/__tests__/dids/did_z6MkvePyWAApUVeDboZhNbckaWHnqtD6pCETd6xoqGbcpEBV.d.ts +0 -23
- package/build/modules/vc/__tests__/dids/did_z6MkvePyWAApUVeDboZhNbckaWHnqtD6pCETd6xoqGbcpEBV.js +0 -49
- package/build/modules/vc/__tests__/dids/did_z6MkvePyWAApUVeDboZhNbckaWHnqtD6pCETd6xoqGbcpEBV.js.map +0 -1
- package/build/modules/vc/__tests__/dids/did_zUC729nNiUKQ4pHHNYovae25gkkuvtsZmtpjnLYUj1r8Yd4ZRn3FaswicUWs2NYNuWXxQ7MgzAX7dqXxAFZXFvn2jhqGKpjm5xLwESYfhcDGdSrc9mgfu51w939BjmKmng5HvYK.d.ts +0 -18
- package/build/modules/vc/__tests__/dids/did_zUC729nNiUKQ4pHHNYovae25gkkuvtsZmtpjnLYUj1r8Yd4ZRn3FaswicUWs2NYNuWXxQ7MgzAX7dqXxAFZXFvn2jhqGKpjm5xLwESYfhcDGdSrc9mgfu51w939BjmKmng5HvYK.js +0 -32
- package/build/modules/vc/__tests__/dids/did_zUC729nNiUKQ4pHHNYovae25gkkuvtsZmtpjnLYUj1r8Yd4ZRn3FaswicUWs2NYNuWXxQ7MgzAX7dqXxAFZXFvn2jhqGKpjm5xLwESYfhcDGdSrc9mgfu51w939BjmKmng5HvYK.js.map +0 -1
- package/build/modules/vc/__tests__/dids/did_zUC72Q7XD4PE4CrMiDVXuvZng3sBvMmaGgNeTUJuzavH2BS7ThbHL9FhsZM9QYY5fqAQ4MB8M9oudz3tfuaX36Ajr97QRW7LBt6WWmrtESe6Bs5NYzFtLWEmeVtvRYVAgjFcJSa.d.ts +0 -37
- package/build/modules/vc/__tests__/dids/did_zUC72Q7XD4PE4CrMiDVXuvZng3sBvMmaGgNeTUJuzavH2BS7ThbHL9FhsZM9QYY5fqAQ4MB8M9oudz3tfuaX36Ajr97QRW7LBt6WWmrtESe6Bs5NYzFtLWEmeVtvRYVAgjFcJSa.js +0 -53
- package/build/modules/vc/__tests__/dids/did_zUC72Q7XD4PE4CrMiDVXuvZng3sBvMmaGgNeTUJuzavH2BS7ThbHL9FhsZM9QYY5fqAQ4MB8M9oudz3tfuaX36Ajr97QRW7LBt6WWmrtESe6Bs5NYzFtLWEmeVtvRYVAgjFcJSa.js.map +0 -1
- package/build/modules/vc/__tests__/dids/did_zUC72to2eJiFMrt8a89LoaEPHC76QcfAxQdFys3nFGCmDKAmLbdE4ByyQ54kh42XgECCyZfVKe3m41Kk35nzrBKYbk6s9K7EjyLJcGGPkA7N15tDNBQJaY7cHD4RRaTwF6qXpmD.d.ts +0 -18
- package/build/modules/vc/__tests__/dids/did_zUC72to2eJiFMrt8a89LoaEPHC76QcfAxQdFys3nFGCmDKAmLbdE4ByyQ54kh42XgECCyZfVKe3m41Kk35nzrBKYbk6s9K7EjyLJcGGPkA7N15tDNBQJaY7cHD4RRaTwF6qXpmD.js +0 -32
- package/build/modules/vc/__tests__/dids/did_zUC72to2eJiFMrt8a89LoaEPHC76QcfAxQdFys3nFGCmDKAmLbdE4ByyQ54kh42XgECCyZfVKe3m41Kk35nzrBKYbk6s9K7EjyLJcGGPkA7N15tDNBQJaY7cHD4RRaTwF6qXpmD.js.map +0 -1
- package/build/modules/vc/__tests__/dids/did_zUC73JKGpX1WG4CWbFM15ni3faANPet6m8WJ6vaF5xyFsM3MeoBVNgQ6jjVPCcUnTAnJy6RVKqsUXa4AvdRKwV5hhQhwhMWFT9so9jrPekKmqpikTjYBXa3RYWqRpCWHY4u4hxh.d.ts +0 -18
- package/build/modules/vc/__tests__/dids/did_zUC73JKGpX1WG4CWbFM15ni3faANPet6m8WJ6vaF5xyFsM3MeoBVNgQ6jjVPCcUnTAnJy6RVKqsUXa4AvdRKwV5hhQhwhMWFT9so9jrPekKmqpikTjYBXa3RYWqRpCWHY4u4hxh.js +0 -32
- package/build/modules/vc/__tests__/dids/did_zUC73JKGpX1WG4CWbFM15ni3faANPet6m8WJ6vaF5xyFsM3MeoBVNgQ6jjVPCcUnTAnJy6RVKqsUXa4AvdRKwV5hhQhwhMWFT9so9jrPekKmqpikTjYBXa3RYWqRpCWHY4u4hxh.js.map +0 -1
- package/build/modules/vc/__tests__/dids/did_zUC73YqdRJ3t8bZsFUoxYFPNVruHzn4o7u78GSrMXVSkcb3xAYtUxRD2kSt2bDcmQpRjKfygwLJ1HEGfkosSN7gr4acjGkXLbLRXREueknFN4AU19m8BxEgWnLM84CAvsw6bhYn.d.ts +0 -18
- package/build/modules/vc/__tests__/dids/did_zUC73YqdRJ3t8bZsFUoxYFPNVruHzn4o7u78GSrMXVSkcb3xAYtUxRD2kSt2bDcmQpRjKfygwLJ1HEGfkosSN7gr4acjGkXLbLRXREueknFN4AU19m8BxEgWnLM84CAvsw6bhYn.js +0 -32
- package/build/modules/vc/__tests__/dids/did_zUC73YqdRJ3t8bZsFUoxYFPNVruHzn4o7u78GSrMXVSkcb3xAYtUxRD2kSt2bDcmQpRjKfygwLJ1HEGfkosSN7gr4acjGkXLbLRXREueknFN4AU19m8BxEgWnLM84CAvsw6bhYn.js.map +0 -1
- package/build/modules/vc/__tests__/dids/did_zUC74VEqqhEHQcgv4zagSPkqFJxuNWuoBPKjJuHETEUeHLoSqWt92viSsmaWjy82y2cgguc8e9hsGBifnVK67pQ4gve3m6iSboDkmJjxVEb1d6mRAx5fpMAejooNzNqqbTMVeUN.d.ts +0 -14
- package/build/modules/vc/__tests__/dids/did_zUC74VEqqhEHQcgv4zagSPkqFJxuNWuoBPKjJuHETEUeHLoSqWt92viSsmaWjy82y2cgguc8e9hsGBifnVK67pQ4gve3m6iSboDkmJjxVEb1d6mRAx5fpMAejooNzNqqbTMVeUN.js +0 -28
- package/build/modules/vc/__tests__/dids/did_zUC74VEqqhEHQcgv4zagSPkqFJxuNWuoBPKjJuHETEUeHLoSqWt92viSsmaWjy82y2cgguc8e9hsGBifnVK67pQ4gve3m6iSboDkmJjxVEb1d6mRAx5fpMAejooNzNqqbTMVeUN.js.map +0 -1
- package/build/modules/vc/__tests__/dids/did_zUC76qMTDAaupy19pEk8JKH5LJwPwmscNQn24SYpqrgqEoYWPFgCSm4CnTfupADRfbB6CxdwYhVaTFjT4fmPvMh7gWY87LauhaLmNpPamCv4LAepcRfBDndSdtCpZKSTELMjzGJ.d.ts +0 -18
- package/build/modules/vc/__tests__/dids/did_zUC76qMTDAaupy19pEk8JKH5LJwPwmscNQn24SYpqrgqEoYWPFgCSm4CnTfupADRfbB6CxdwYhVaTFjT4fmPvMh7gWY87LauhaLmNpPamCv4LAepcRfBDndSdtCpZKSTELMjzGJ.js +0 -32
- package/build/modules/vc/__tests__/dids/did_zUC76qMTDAaupy19pEk8JKH5LJwPwmscNQn24SYpqrgqEoYWPFgCSm4CnTfupADRfbB6CxdwYhVaTFjT4fmPvMh7gWY87LauhaLmNpPamCv4LAepcRfBDndSdtCpZKSTELMjzGJ.js.map +0 -1
- package/build/modules/vc/__tests__/dids/did_zUC7DMETzdZM6woUjvs2fieEyFTbHABXwBvLYPBs4NDWKut4H41h8V3KTqGNRUziXLYqa1sFYYw9Zjpt6pFUf7hra4Q1zXMA9JjXcXxDpxuDNpUKEpiDPSYYUztVchUJHQJJhox.d.ts +0 -18
- package/build/modules/vc/__tests__/dids/did_zUC7DMETzdZM6woUjvs2fieEyFTbHABXwBvLYPBs4NDWKut4H41h8V3KTqGNRUziXLYqa1sFYYw9Zjpt6pFUf7hra4Q1zXMA9JjXcXxDpxuDNpUKEpiDPSYYUztVchUJHQJJhox.js +0 -32
- package/build/modules/vc/__tests__/dids/did_zUC7DMETzdZM6woUjvs2fieEyFTbHABXwBvLYPBs4NDWKut4H41h8V3KTqGNRUziXLYqa1sFYYw9Zjpt6pFUf7hra4Q1zXMA9JjXcXxDpxuDNpUKEpiDPSYYUztVchUJHQJJhox.js.map +0 -1
- package/build/modules/vc/__tests__/dids/did_zUC7F9Jt6YzVW9fGhwYjVrjdS8Xzg7oQc2CeDcVNgEcEAaJXAtPz3eXu2sewq4xtwRK3DAhQRYwwoYiT3nNzLCPsrKoP72UGZKhh4cNuZD7RkmwzAa1Bye4C5a9DcyYBGKZrE5F.d.ts +0 -18
- package/build/modules/vc/__tests__/dids/did_zUC7F9Jt6YzVW9fGhwYjVrjdS8Xzg7oQc2CeDcVNgEcEAaJXAtPz3eXu2sewq4xtwRK3DAhQRYwwoYiT3nNzLCPsrKoP72UGZKhh4cNuZD7RkmwzAa1Bye4C5a9DcyYBGKZrE5F.js +0 -32
- package/build/modules/vc/__tests__/dids/did_zUC7F9Jt6YzVW9fGhwYjVrjdS8Xzg7oQc2CeDcVNgEcEAaJXAtPz3eXu2sewq4xtwRK3DAhQRYwwoYiT3nNzLCPsrKoP72UGZKhh4cNuZD7RkmwzAa1Bye4C5a9DcyYBGKZrE5F.js.map +0 -1
- package/build/modules/vc/__tests__/dids/did_zUC7H7TxvhWmvfptpu2zSwo5EZ1kr3MPNsjovaD2ipbuzj6zi1vk4FHTiunCJrFvUYV77Mk3QcWUUAHojPZdU8oG476cvMK2ozP1gVq63x5ovj6e4oQ9qg9eF4YjPhWJs6FPuT4.d.ts +0 -18
- package/build/modules/vc/__tests__/dids/did_zUC7H7TxvhWmvfptpu2zSwo5EZ1kr3MPNsjovaD2ipbuzj6zi1vk4FHTiunCJrFvUYV77Mk3QcWUUAHojPZdU8oG476cvMK2ozP1gVq63x5ovj6e4oQ9qg9eF4YjPhWJs6FPuT4.js +0 -32
- package/build/modules/vc/__tests__/dids/did_zUC7H7TxvhWmvfptpu2zSwo5EZ1kr3MPNsjovaD2ipbuzj6zi1vk4FHTiunCJrFvUYV77Mk3QcWUUAHojPZdU8oG476cvMK2ozP1gVq63x5ovj6e4oQ9qg9eF4YjPhWJs6FPuT4.js.map +0 -1
- package/build/modules/vc/constants.d.ts +0 -16
- package/build/modules/vc/constants.js +0 -20
- package/build/modules/vc/constants.js.map +0 -1
- package/build/modules/vc/data-integrity/SignatureSuiteRegistry.d.ts +0 -22
- package/build/modules/vc/data-integrity/SignatureSuiteRegistry.js +0 -58
- package/build/modules/vc/data-integrity/SignatureSuiteRegistry.js.map +0 -1
- package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.d.ts +0 -48
- package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.js +0 -311
- package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.js.map +0 -1
- package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v1.d.ts +0 -57
- package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v1.js +0 -49
- package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v1.js.map +0 -1
- package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v2.d.ts +0 -57
- package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v2.js +0 -49
- package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v2.js.map +0 -1
- package/build/modules/vc/data-integrity/__tests__/contexts/examples_v1.d.ts +0 -98
- package/build/modules/vc/data-integrity/__tests__/contexts/examples_v1.js +0 -50
- package/build/modules/vc/data-integrity/__tests__/contexts/examples_v1.js.map +0 -1
- package/build/modules/vc/data-integrity/__tests__/contexts/index.d.ts +0 -5
- package/build/modules/vc/data-integrity/__tests__/contexts/index.js +0 -22
- package/build/modules/vc/data-integrity/__tests__/contexts/index.js.map +0 -1
- package/build/modules/vc/data-integrity/__tests__/contexts/mattr_vc_extension_v1.d.ts +0 -17
- package/build/modules/vc/data-integrity/__tests__/contexts/mattr_vc_extension_v1.js +0 -21
- package/build/modules/vc/data-integrity/__tests__/contexts/mattr_vc_extension_v1.js.map +0 -1
- package/build/modules/vc/data-integrity/__tests__/contexts/security_v3_unstable.d.ts +0 -701
- package/build/modules/vc/data-integrity/__tests__/contexts/security_v3_unstable.js +0 -684
- package/build/modules/vc/data-integrity/__tests__/contexts/security_v3_unstable.js.map +0 -1
- package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v1.d.ts +0 -88
- package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v1.js +0 -92
- package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v1.js.map +0 -1
- package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v2.d.ts +0 -88
- package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v2.js +0 -92
- package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v2.js.map +0 -1
- package/build/modules/vc/data-integrity/deriveProof.d.ts +0 -17
- package/build/modules/vc/data-integrity/deriveProof.js +0 -112
- package/build/modules/vc/data-integrity/deriveProof.js.map +0 -1
- package/build/modules/vc/data-integrity/index.d.ts +0 -7
- package/build/modules/vc/data-integrity/index.js +0 -26
- package/build/modules/vc/data-integrity/index.js.map +0 -1
- package/build/modules/vc/data-integrity/jsonldUtil.d.ts +0 -46
- package/build/modules/vc/data-integrity/jsonldUtil.js +0 -103
- package/build/modules/vc/data-integrity/jsonldUtil.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/X25519_v1.d.ts +0 -26
- package/build/modules/vc/data-integrity/libraries/contexts/X25519_v1.js +0 -30
- package/build/modules/vc/data-integrity/libraries/contexts/X25519_v1.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/bbs_v1.d.ts +0 -128
- package/build/modules/vc/data-integrity/libraries/contexts/bbs_v1.js +0 -132
- package/build/modules/vc/data-integrity/libraries/contexts/bbs_v1.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/credentials_v1.d.ts +0 -315
- package/build/modules/vc/data-integrity/libraries/contexts/credentials_v1.js +0 -254
- package/build/modules/vc/data-integrity/libraries/contexts/credentials_v1.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/dataIntegrity_v2.d.ts +0 -81
- package/build/modules/vc/data-integrity/libraries/contexts/dataIntegrity_v2.js +0 -85
- package/build/modules/vc/data-integrity/libraries/contexts/dataIntegrity_v2.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/defaultContexts.d.ts +0 -10323
- package/build/modules/vc/data-integrity/libraries/contexts/defaultContexts.js +0 -37
- package/build/modules/vc/data-integrity/libraries/contexts/defaultContexts.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/did_v1.d.ts +0 -56
- package/build/modules/vc/data-integrity/libraries/contexts/did_v1.js +0 -60
- package/build/modules/vc/data-integrity/libraries/contexts/did_v1.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/ed25519_v1.d.ts +0 -91
- package/build/modules/vc/data-integrity/libraries/contexts/ed25519_v1.js +0 -95
- package/build/modules/vc/data-integrity/libraries/contexts/ed25519_v1.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/index.d.ts +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/index.js +0 -6
- package/build/modules/vc/data-integrity/libraries/contexts/index.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/odrl.d.ts +0 -301
- package/build/modules/vc/data-integrity/libraries/contexts/odrl.js +0 -185
- package/build/modules/vc/data-integrity/libraries/contexts/odrl.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/purl_ob_v3po.d.ts +0 -438
- package/build/modules/vc/data-integrity/libraries/contexts/purl_ob_v3po.js +0 -442
- package/build/modules/vc/data-integrity/libraries/contexts/purl_ob_v3po.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/schema_org.d.ts +0 -8242
- package/build/modules/vc/data-integrity/libraries/contexts/schema_org.js +0 -2842
- package/build/modules/vc/data-integrity/libraries/contexts/schema_org.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/secp256k1_v1.d.ts +0 -102
- package/build/modules/vc/data-integrity/libraries/contexts/secp256k1_v1.js +0 -106
- package/build/modules/vc/data-integrity/libraries/contexts/secp256k1_v1.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/security_v1.d.ts +0 -74
- package/build/modules/vc/data-integrity/libraries/contexts/security_v1.js +0 -51
- package/build/modules/vc/data-integrity/libraries/contexts/security_v1.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/security_v2.d.ts +0 -175
- package/build/modules/vc/data-integrity/libraries/contexts/security_v2.js +0 -94
- package/build/modules/vc/data-integrity/libraries/contexts/security_v2.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/submission.d.ts +0 -15
- package/build/modules/vc/data-integrity/libraries/contexts/submission.js +0 -19
- package/build/modules/vc/data-integrity/libraries/contexts/submission.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/contexts/vc_revocation_list_2020.d.ts +0 -37
- package/build/modules/vc/data-integrity/libraries/contexts/vc_revocation_list_2020.js +0 -41
- package/build/modules/vc/data-integrity/libraries/contexts/vc_revocation_list_2020.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/documentLoader.d.ts +0 -4
- package/build/modules/vc/data-integrity/libraries/documentLoader.js +0 -58
- package/build/modules/vc/data-integrity/libraries/documentLoader.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/index.d.ts +0 -24
- package/build/modules/vc/data-integrity/libraries/index.js +0 -40
- package/build/modules/vc/data-integrity/libraries/index.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/jsonld-signatures.d.ts +0 -12
- package/build/modules/vc/data-integrity/libraries/jsonld-signatures.js +0 -9
- package/build/modules/vc/data-integrity/libraries/jsonld-signatures.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/jsonld.d.ts +0 -17
- package/build/modules/vc/data-integrity/libraries/jsonld.js +0 -12
- package/build/modules/vc/data-integrity/libraries/jsonld.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.d.ts +0 -2
- package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.js +0 -9
- package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.d.ts +0 -2
- package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.js +0 -9
- package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.js.map +0 -1
- package/build/modules/vc/data-integrity/libraries/vc.d.ts +0 -28
- package/build/modules/vc/data-integrity/libraries/vc.js +0 -12
- package/build/modules/vc/data-integrity/libraries/vc.js.map +0 -1
- package/build/modules/vc/data-integrity/models/DataIntegrityProof.d.ts +0 -33
- package/build/modules/vc/data-integrity/models/DataIntegrityProof.js +0 -91
- package/build/modules/vc/data-integrity/models/DataIntegrityProof.js.map +0 -1
- package/build/modules/vc/data-integrity/models/GetProofsOptions.d.ts +0 -23
- package/build/modules/vc/data-integrity/models/GetProofsOptions.js +0 -15
- package/build/modules/vc/data-integrity/models/GetProofsOptions.js.map +0 -1
- package/build/modules/vc/data-integrity/models/GetProofsResult.d.ts +0 -14
- package/build/modules/vc/data-integrity/models/GetProofsResult.js +0 -15
- package/build/modules/vc/data-integrity/models/GetProofsResult.js.map +0 -1
- package/build/modules/vc/data-integrity/models/GetTypeOptions.d.ts +0 -10
- package/build/modules/vc/data-integrity/models/GetTypeOptions.js +0 -15
- package/build/modules/vc/data-integrity/models/GetTypeOptions.js.map +0 -1
- package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.d.ts +0 -29
- package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.js +0 -6
- package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.js.map +0 -1
- package/build/modules/vc/data-integrity/models/LdKeyPair.d.ts +0 -31
- package/build/modules/vc/data-integrity/models/LdKeyPair.js +0 -29
- package/build/modules/vc/data-integrity/models/LdKeyPair.js.map +0 -1
- package/build/modules/vc/data-integrity/models/LinkedDataProof.d.ts +0 -30
- package/build/modules/vc/data-integrity/models/LinkedDataProof.js +0 -78
- package/build/modules/vc/data-integrity/models/LinkedDataProof.js.map +0 -1
- package/build/modules/vc/data-integrity/models/ProofTransformer.d.ts +0 -1
- package/build/modules/vc/data-integrity/models/ProofTransformer.js +0 -31
- package/build/modules/vc/data-integrity/models/ProofTransformer.js.map +0 -1
- package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.d.ts +0 -30
- package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.js +0 -74
- package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.js.map +0 -1
- package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.d.ts +0 -27
- package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.js +0 -64
- package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.js.map +0 -1
- package/build/modules/vc/data-integrity/models/index.d.ts +0 -5
- package/build/modules/vc/data-integrity/models/index.js +0 -22
- package/build/modules/vc/data-integrity/models/index.js.map +0 -1
- package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.d.ts +0 -56
- package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.js +0 -74
- package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.js.map +0 -1
- package/build/modules/vc/data-integrity/proof-purposes/ProofPurpose.d.ts +0 -1
- package/build/modules/vc/data-integrity/proof-purposes/ProofPurpose.js +0 -3
- package/build/modules/vc/data-integrity/proof-purposes/ProofPurpose.js.map +0 -1
- package/build/modules/vc/data-integrity/proof-purposes/index.d.ts +0 -2
- package/build/modules/vc/data-integrity/proof-purposes/index.js +0 -19
- package/build/modules/vc/data-integrity/proof-purposes/index.js.map +0 -1
- package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.d.ts +0 -98
- package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.js +0 -209
- package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.js.map +0 -1
- package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.d.ts +0 -80
- package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.js +0 -190
- package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.js.map +0 -1
- package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2020.d.ts +0 -106
- package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2020.js +0 -196
- package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2020.js.map +0 -1
- package/build/modules/vc/data-integrity/signature-suites/ed25519/constants.d.ts +0 -2
- package/build/modules/vc/data-integrity/signature-suites/ed25519/constants.js +0 -6
- package/build/modules/vc/data-integrity/signature-suites/ed25519/constants.js.map +0 -1
- package/build/modules/vc/data-integrity/signature-suites/ed25519/context.d.ts +0 -93
- package/build/modules/vc/data-integrity/signature-suites/ed25519/context.js +0 -99
- package/build/modules/vc/data-integrity/signature-suites/ed25519/context.js.map +0 -1
- package/build/modules/vc/data-integrity/signature-suites/ed25519/context2020.d.ts +0 -95
- package/build/modules/vc/data-integrity/signature-suites/ed25519/context2020.js +0 -101
- package/build/modules/vc/data-integrity/signature-suites/ed25519/context2020.js.map +0 -1
- package/build/modules/vc/data-integrity/signature-suites/index.d.ts +0 -3
- package/build/modules/vc/data-integrity/signature-suites/index.js +0 -20
- package/build/modules/vc/data-integrity/signature-suites/index.js.map +0 -1
- package/build/modules/vc/index.d.ts +0 -11
- package/build/modules/vc/index.js +0 -30
- package/build/modules/vc/index.js.map +0 -1
- package/build/modules/vc/jwt-vc/W3cJwtCredentialService.d.ts +0 -63
- package/build/modules/vc/jwt-vc/W3cJwtCredentialService.js +0 -438
- package/build/modules/vc/jwt-vc/W3cJwtCredentialService.js.map +0 -1
- package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.d.ts +0 -46
- package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.js +0 -97
- package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.js.map +0 -1
- package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.d.ts +0 -37
- package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.js +0 -76
- package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.js.map +0 -1
- package/build/modules/vc/jwt-vc/__tests__/fixtures/credo-jwt-vc.d.ts +0 -38
- package/build/modules/vc/jwt-vc/__tests__/fixtures/credo-jwt-vc.js +0 -43
- package/build/modules/vc/jwt-vc/__tests__/fixtures/credo-jwt-vc.js.map +0 -1
- package/build/modules/vc/jwt-vc/__tests__/fixtures/jwt-vc-presentation-profile.d.ts +0 -1
- package/build/modules/vc/jwt-vc/__tests__/fixtures/jwt-vc-presentation-profile.js +0 -5
- package/build/modules/vc/jwt-vc/__tests__/fixtures/jwt-vc-presentation-profile.js.map +0 -1
- package/build/modules/vc/jwt-vc/__tests__/fixtures/transmute-verifiable-data.d.ts +0 -10
- package/build/modules/vc/jwt-vc/__tests__/fixtures/transmute-verifiable-data.js +0 -15
- package/build/modules/vc/jwt-vc/__tests__/fixtures/transmute-verifiable-data.js.map +0 -1
- package/build/modules/vc/jwt-vc/credentialTransformer.d.ts +0 -4
- package/build/modules/vc/jwt-vc/credentialTransformer.js +0 -131
- package/build/modules/vc/jwt-vc/credentialTransformer.js.map +0 -1
- package/build/modules/vc/jwt-vc/index.d.ts +0 -3
- package/build/modules/vc/jwt-vc/index.js +0 -20
- package/build/modules/vc/jwt-vc/index.js.map +0 -1
- package/build/modules/vc/jwt-vc/presentationTransformer.d.ts +0 -4
- package/build/modules/vc/jwt-vc/presentationTransformer.js +0 -54
- package/build/modules/vc/jwt-vc/presentationTransformer.js.map +0 -1
- package/build/modules/vc/models/ClaimFormat.d.ts +0 -17
- package/build/modules/vc/models/ClaimFormat.js +0 -22
- package/build/modules/vc/models/ClaimFormat.js.map +0 -1
- package/build/modules/vc/models/W3cVerifyResult.d.ts +0 -109
- package/build/modules/vc/models/W3cVerifyResult.js +0 -3
- package/build/modules/vc/models/W3cVerifyResult.js.map +0 -1
- package/build/modules/vc/models/credential/W3cCredential.d.ts +0 -37
- package/build/modules/vc/models/credential/W3cCredential.js +0 -135
- package/build/modules/vc/models/credential/W3cCredential.js.map +0 -1
- package/build/modules/vc/models/credential/W3cCredentialSchema.d.ts +0 -9
- package/build/modules/vc/models/credential/W3cCredentialSchema.js +0 -32
- package/build/modules/vc/models/credential/W3cCredentialSchema.js.map +0 -1
- package/build/modules/vc/models/credential/W3cCredentialStatus.d.ts +0 -9
- package/build/modules/vc/models/credential/W3cCredentialStatus.js +0 -32
- package/build/modules/vc/models/credential/W3cCredentialStatus.js.map +0 -1
- package/build/modules/vc/models/credential/W3cCredentialSubject.d.ts +0 -15
- package/build/modules/vc/models/credential/W3cCredentialSubject.js +0 -90
- package/build/modules/vc/models/credential/W3cCredentialSubject.js.map +0 -1
- package/build/modules/vc/models/credential/W3cIssuer.d.ts +0 -14
- package/build/modules/vc/models/credential/W3cIssuer.js +0 -65
- package/build/modules/vc/models/credential/W3cIssuer.js.map +0 -1
- package/build/modules/vc/models/credential/W3cJsonCredential.d.ts +0 -14
- package/build/modules/vc/models/credential/W3cJsonCredential.js +0 -3
- package/build/modules/vc/models/credential/W3cJsonCredential.js.map +0 -1
- package/build/modules/vc/models/credential/W3cVerifiableCredential.d.ts +0 -5
- package/build/modules/vc/models/credential/W3cVerifiableCredential.js +0 -38
- package/build/modules/vc/models/credential/W3cVerifiableCredential.js.map +0 -1
- package/build/modules/vc/models/credential/index.d.ts +0 -5
- package/build/modules/vc/models/credential/index.js +0 -22
- package/build/modules/vc/models/credential/index.js.map +0 -1
- package/build/modules/vc/models/index.d.ts +0 -4
- package/build/modules/vc/models/index.js +0 -21
- package/build/modules/vc/models/index.js.map +0 -1
- package/build/modules/vc/models/presentation/W3cHolder.d.ts +0 -13
- package/build/modules/vc/models/presentation/W3cHolder.js +0 -65
- package/build/modules/vc/models/presentation/W3cHolder.js.map +0 -1
- package/build/modules/vc/models/presentation/W3cJsonPresentation.d.ts +0 -14
- package/build/modules/vc/models/presentation/W3cJsonPresentation.js +0 -3
- package/build/modules/vc/models/presentation/W3cJsonPresentation.js.map +0 -1
- package/build/modules/vc/models/presentation/W3cPresentation.d.ts +0 -25
- package/build/modules/vc/models/presentation/W3cPresentation.js +0 -88
- package/build/modules/vc/models/presentation/W3cPresentation.js.map +0 -1
- package/build/modules/vc/models/presentation/W3cVerifiablePresentation.d.ts +0 -4
- package/build/modules/vc/models/presentation/W3cVerifiablePresentation.js +0 -3
- package/build/modules/vc/models/presentation/W3cVerifiablePresentation.js.map +0 -1
- package/build/modules/vc/models/presentation/index.d.ts +0 -2
- package/build/modules/vc/models/presentation/index.js +0 -19
- package/build/modules/vc/models/presentation/index.js.map +0 -1
- package/build/modules/vc/repository/W3cCredentialRecord.d.ts +0 -42
- package/build/modules/vc/repository/W3cCredentialRecord.js +0 -62
- package/build/modules/vc/repository/W3cCredentialRecord.js.map +0 -1
- package/build/modules/vc/repository/W3cCredentialRepository.d.ts +0 -7
- package/build/modules/vc/repository/W3cCredentialRepository.js +0 -32
- package/build/modules/vc/repository/W3cCredentialRepository.js.map +0 -1
- package/build/modules/vc/repository/index.d.ts +0 -2
- package/build/modules/vc/repository/index.js +0 -19
- package/build/modules/vc/repository/index.js.map +0 -1
- package/build/modules/vc/util.d.ts +0 -7
- package/build/modules/vc/util.js +0 -19
- package/build/modules/vc/util.js.map +0 -1
- package/build/modules/vc/validators.d.ts +0 -2
- package/build/modules/vc/validators.js +0 -24
- package/build/modules/vc/validators.js.map +0 -1
- package/build/modules/x509/X509Api.d.ts +0 -37
- package/build/modules/x509/X509Api.js +0 -66
- package/build/modules/x509/X509Api.js.map +0 -1
- package/build/modules/x509/X509Certificate.d.ts +0 -49
- package/build/modules/x509/X509Certificate.js +0 -169
- package/build/modules/x509/X509Certificate.js.map +0 -1
- package/build/modules/x509/X509Error.d.ts +0 -3
- package/build/modules/x509/X509Error.js +0 -8
- package/build/modules/x509/X509Error.js.map +0 -1
- package/build/modules/x509/X509Module.d.ts +0 -16
- package/build/modules/x509/X509Module.js +0 -31
- package/build/modules/x509/X509Module.js.map +0 -1
- package/build/modules/x509/X509ModuleConfig.d.ts +0 -27
- package/build/modules/x509/X509ModuleConfig.js +0 -30
- package/build/modules/x509/X509ModuleConfig.js.map +0 -1
- package/build/modules/x509/X509Service.d.ts +0 -27
- package/build/modules/x509/X509Service.js +0 -109
- package/build/modules/x509/X509Service.js.map +0 -1
- package/build/modules/x509/X509ServiceOptions.d.ts +0 -29
- package/build/modules/x509/X509ServiceOptions.js +0 -3
- package/build/modules/x509/X509ServiceOptions.js.map +0 -1
- package/build/modules/x509/index.d.ts +0 -7
- package/build/modules/x509/index.js +0 -24
- package/build/modules/x509/index.js.map +0 -1
- package/build/plugins/DependencyManager.d.ts +0 -36
- package/build/plugins/DependencyManager.js +0 -85
- package/build/plugins/DependencyManager.js.map +0 -1
- package/build/plugins/Module.d.ts +0 -17
- package/build/plugins/Module.js +0 -3
- package/build/plugins/Module.js.map +0 -1
- package/build/plugins/index.d.ts +0 -4
- package/build/plugins/index.js +0 -25
- package/build/plugins/index.js.map +0 -1
- package/build/plugins/utils.d.ts +0 -7
- package/build/plugins/utils.js +0 -20
- package/build/plugins/utils.js.map +0 -1
- package/build/storage/BaseRecord.d.ts +0 -54
- package/build/storage/BaseRecord.js +0 -85
- package/build/storage/BaseRecord.js.map +0 -1
- package/build/storage/FileSystem.d.ts +0 -19
- package/build/storage/FileSystem.js +0 -3
- package/build/storage/FileSystem.js.map +0 -1
- package/build/storage/Metadata.d.ts +0 -58
- package/build/storage/Metadata.js +0 -70
- package/build/storage/Metadata.js.map +0 -1
- package/build/storage/Repository.d.ts +0 -49
- package/build/storage/Repository.js +0 -123
- package/build/storage/Repository.js.map +0 -1
- package/build/storage/RepositoryEvents.d.ts +0 -28
- package/build/storage/RepositoryEvents.js +0 -10
- package/build/storage/RepositoryEvents.js.map +0 -1
- package/build/storage/StorageService.d.ts +0 -72
- package/build/storage/StorageService.js +0 -3
- package/build/storage/StorageService.js.map +0 -1
- package/build/storage/didcomm/DidCommMessageRecord.d.ts +0 -48
- package/build/storage/didcomm/DidCommMessageRecord.js +0 -49
- package/build/storage/didcomm/DidCommMessageRecord.js.map +0 -1
- package/build/storage/didcomm/DidCommMessageRepository.d.ts +0 -24
- package/build/storage/didcomm/DidCommMessageRepository.js +0 -78
- package/build/storage/didcomm/DidCommMessageRepository.js.map +0 -1
- package/build/storage/didcomm/DidCommMessageRole.d.ts +0 -4
- package/build/storage/didcomm/DidCommMessageRole.js +0 -9
- package/build/storage/didcomm/DidCommMessageRole.js.map +0 -1
- package/build/storage/didcomm/index.d.ts +0 -3
- package/build/storage/didcomm/index.js +0 -20
- package/build/storage/didcomm/index.js.map +0 -1
- package/build/storage/index.d.ts +0 -2
- package/build/storage/index.js +0 -19
- package/build/storage/index.js.map +0 -1
- package/build/storage/migration/StorageUpdateService.d.ts +0 -22
- package/build/storage/migration/StorageUpdateService.js +0 -77
- package/build/storage/migration/StorageUpdateService.js.map +0 -1
- package/build/storage/migration/UpdateAssistant.d.ts +0 -42
- package/build/storage/migration/UpdateAssistant.js +0 -211
- package/build/storage/migration/UpdateAssistant.js.map +0 -1
- package/build/storage/migration/error/StorageUpdateError.d.ts +0 -6
- package/build/storage/migration/error/StorageUpdateError.js +0 -11
- package/build/storage/migration/error/StorageUpdateError.js.map +0 -1
- package/build/storage/migration/index.d.ts +0 -6
- package/build/storage/migration/index.js +0 -22
- package/build/storage/migration/index.js.map +0 -1
- package/build/storage/migration/isUpToDate.d.ts +0 -3
- package/build/storage/migration/isUpToDate.js +0 -13
- package/build/storage/migration/isUpToDate.js.map +0 -1
- package/build/storage/migration/repository/StorageVersionRecord.d.ts +0 -14
- package/build/storage/migration/repository/StorageVersionRecord.js +0 -23
- package/build/storage/migration/repository/StorageVersionRecord.js.map +0 -1
- package/build/storage/migration/repository/StorageVersionRepository.d.ts +0 -7
- package/build/storage/migration/repository/StorageVersionRepository.js +0 -32
- package/build/storage/migration/repository/StorageVersionRepository.js.map +0 -1
- package/build/storage/migration/updates/0.1-0.2/connection.d.ts +0 -119
- package/build/storage/migration/updates/0.1-0.2/connection.js +0 -380
- package/build/storage/migration/updates/0.1-0.2/connection.js.map +0 -1
- package/build/storage/migration/updates/0.1-0.2/credential.d.ts +0 -80
- package/build/storage/migration/updates/0.1-0.2/credential.js +0 -215
- package/build/storage/migration/updates/0.1-0.2/credential.js.map +0 -1
- package/build/storage/migration/updates/0.1-0.2/index.d.ts +0 -6
- package/build/storage/migration/updates/0.1-0.2/index.js +0 -12
- package/build/storage/migration/updates/0.1-0.2/index.js.map +0 -1
- package/build/storage/migration/updates/0.1-0.2/mediation.d.ts +0 -30
- package/build/storage/migration/updates/0.1-0.2/mediation.js +0 -67
- package/build/storage/migration/updates/0.1-0.2/mediation.js.map +0 -1
- package/build/storage/migration/updates/0.2-0.3/connection.d.ts +0 -14
- package/build/storage/migration/updates/0.2-0.3/connection.js +0 -47
- package/build/storage/migration/updates/0.2-0.3/connection.js.map +0 -1
- package/build/storage/migration/updates/0.2-0.3/index.d.ts +0 -2
- package/build/storage/migration/updates/0.2-0.3/index.js +0 -10
- package/build/storage/migration/updates/0.2-0.3/index.js.map +0 -1
- package/build/storage/migration/updates/0.2-0.3/proof.d.ts +0 -42
- package/build/storage/migration/updates/0.2-0.3/proof.js +0 -131
- package/build/storage/migration/updates/0.2-0.3/proof.js.map +0 -1
- package/build/storage/migration/updates/0.3-0.3.1/did.d.ts +0 -10
- package/build/storage/migration/updates/0.3-0.3.1/did.js +0 -34
- package/build/storage/migration/updates/0.3-0.3.1/did.js.map +0 -1
- package/build/storage/migration/updates/0.3-0.3.1/index.d.ts +0 -2
- package/build/storage/migration/updates/0.3-0.3.1/index.js +0 -8
- package/build/storage/migration/updates/0.3-0.3.1/index.js.map +0 -1
- package/build/storage/migration/updates/0.3.1-0.4/cache.d.ts +0 -5
- package/build/storage/migration/updates/0.3.1-0.4/cache.js +0 -30
- package/build/storage/migration/updates/0.3.1-0.4/cache.js.map +0 -1
- package/build/storage/migration/updates/0.3.1-0.4/did.d.ts +0 -12
- package/build/storage/migration/updates/0.3.1-0.4/did.js +0 -39
- package/build/storage/migration/updates/0.3.1-0.4/did.js.map +0 -1
- package/build/storage/migration/updates/0.3.1-0.4/index.d.ts +0 -2
- package/build/storage/migration/updates/0.3.1-0.4/index.js +0 -12
- package/build/storage/migration/updates/0.3.1-0.4/index.js.map +0 -1
- package/build/storage/migration/updates/0.3.1-0.4/w3cCredentialRecord.d.ts +0 -5
- package/build/storage/migration/updates/0.3.1-0.4/w3cCredentialRecord.js +0 -21
- package/build/storage/migration/updates/0.3.1-0.4/w3cCredentialRecord.js.map +0 -1
- package/build/storage/migration/updates/0.4-0.5/credentialExchangeRecord.d.ts +0 -17
- package/build/storage/migration/updates/0.4-0.5/credentialExchangeRecord.js +0 -106
- package/build/storage/migration/updates/0.4-0.5/credentialExchangeRecord.js.map +0 -1
- package/build/storage/migration/updates/0.4-0.5/index.d.ts +0 -2
- package/build/storage/migration/updates/0.4-0.5/index.js +0 -12
- package/build/storage/migration/updates/0.4-0.5/index.js.map +0 -1
- package/build/storage/migration/updates/0.4-0.5/proofExchangeRecord.d.ts +0 -17
- package/build/storage/migration/updates/0.4-0.5/proofExchangeRecord.js +0 -87
- package/build/storage/migration/updates/0.4-0.5/proofExchangeRecord.js.map +0 -1
- package/build/storage/migration/updates/0.4-0.5/w3cCredentialRecord.d.ts +0 -25
- package/build/storage/migration/updates/0.4-0.5/w3cCredentialRecord.js +0 -65
- package/build/storage/migration/updates/0.4-0.5/w3cCredentialRecord.js.map +0 -1
- package/build/storage/migration/updates.d.ts +0 -43
- package/build/storage/migration/updates.js +0 -44
- package/build/storage/migration/updates.js.map +0 -1
- package/build/transport/HttpOutboundTransport.d.ts +0 -15
- package/build/transport/HttpOutboundTransport.js +0 -124
- package/build/transport/HttpOutboundTransport.js.map +0 -1
- package/build/transport/InboundTransport.d.ts +0 -5
- package/build/transport/InboundTransport.js +0 -3
- package/build/transport/InboundTransport.js.map +0 -1
- package/build/transport/OutboundTransport.d.ts +0 -8
- package/build/transport/OutboundTransport.js +0 -3
- package/build/transport/OutboundTransport.js.map +0 -1
- package/build/transport/TransportEventTypes.d.ts +0 -34
- package/build/transport/TransportEventTypes.js +0 -11
- package/build/transport/TransportEventTypes.js.map +0 -1
- package/build/transport/WsOutboundTransport.d.ts +0 -19
- package/build/transport/WsOutboundTransport.js +0 -139
- package/build/transport/WsOutboundTransport.js.map +0 -1
- package/build/transport/index.d.ts +0 -5
- package/build/transport/index.js +0 -22
- package/build/transport/index.js.map +0 -1
- package/build/types.d.ts +0 -128
- package/build/types.js +0 -18
- package/build/types.js.map +0 -1
- package/build/utils/HashlinkEncoder.d.ts +0 -45
- package/build/utils/HashlinkEncoder.js +0 -111
- package/build/utils/HashlinkEncoder.js.map +0 -1
- package/build/utils/JWE.d.ts +0 -2
- package/build/utils/JWE.js +0 -14
- package/build/utils/JWE.js.map +0 -1
- package/build/utils/JsonEncoder.d.ts +0 -45
- package/build/utils/JsonEncoder.js +0 -65
- package/build/utils/JsonEncoder.js.map +0 -1
- package/build/utils/JsonTransformer.d.ts +0 -16
- package/build/utils/JsonTransformer.js +0 -46
- package/build/utils/JsonTransformer.js.map +0 -1
- package/build/utils/LinkedAttachment.d.ts +0 -23
- package/build/utils/LinkedAttachment.js +0 -51
- package/build/utils/LinkedAttachment.js.map +0 -1
- package/build/utils/MessageValidator.d.ts +0 -9
- package/build/utils/MessageValidator.js +0 -33
- package/build/utils/MessageValidator.js.map +0 -1
- package/build/utils/MultiBaseEncoder.d.ts +0 -24
- package/build/utils/MultiBaseEncoder.js +0 -53
- package/build/utils/MultiBaseEncoder.js.map +0 -1
- package/build/utils/MultiHashEncoder.d.ts +0 -35
- package/build/utils/MultiHashEncoder.js +0 -70
- package/build/utils/MultiHashEncoder.js.map +0 -1
- package/build/utils/TypedArrayEncoder.d.ts +0 -60
- package/build/utils/TypedArrayEncoder.js +0 -90
- package/build/utils/TypedArrayEncoder.js.map +0 -1
- package/build/utils/VarintEncoder.d.ts +0 -6
- package/build/utils/VarintEncoder.js +0 -21
- package/build/utils/VarintEncoder.js.map +0 -1
- package/build/utils/array.d.ts +0 -5
- package/build/utils/array.js +0 -18
- package/build/utils/array.js.map +0 -1
- package/build/utils/attachment.d.ts +0 -19
- package/build/utils/attachment.js +0 -39
- package/build/utils/attachment.js.map +0 -1
- package/build/utils/base58.d.ts +0 -2
- package/build/utils/base58.js +0 -17
- package/build/utils/base58.js.map +0 -1
- package/build/utils/base64.d.ts +0 -1
- package/build/utils/base64.js +0 -7
- package/build/utils/base64.js.map +0 -1
- package/build/utils/buffer.d.ts +0 -2
- package/build/utils/buffer.js +0 -6
- package/build/utils/buffer.js.map +0 -1
- package/build/utils/deepEquality.d.ts +0 -5
- package/build/utils/deepEquality.js +0 -57
- package/build/utils/deepEquality.js.map +0 -1
- package/build/utils/did.d.ts +0 -9
- package/build/utils/did.js +0 -21
- package/build/utils/did.js.map +0 -1
- package/build/utils/domain.d.ts +0 -1
- package/build/utils/domain.js +0 -12
- package/build/utils/domain.js.map +0 -1
- package/build/utils/error.d.ts +0 -1
- package/build/utils/error.js +0 -6
- package/build/utils/error.js.map +0 -1
- package/build/utils/fetch.d.ts +0 -7
- package/build/utils/fetch.js +0 -17
- package/build/utils/fetch.js.map +0 -1
- package/build/utils/index.d.ts +0 -17
- package/build/utils/index.js +0 -36
- package/build/utils/index.js.map +0 -1
- package/build/utils/messageType.d.ts +0 -138
- package/build/utils/messageType.js +0 -179
- package/build/utils/messageType.js.map +0 -1
- package/build/utils/mixins.d.ts +0 -17
- package/build/utils/mixins.js +0 -20
- package/build/utils/mixins.js.map +0 -1
- package/build/utils/objectEquality.d.ts +0 -1
- package/build/utils/objectEquality.js +0 -27
- package/build/utils/objectEquality.js.map +0 -1
- package/build/utils/parseInvitation.d.ts +0 -30
- package/build/utils/parseInvitation.js +0 -174
- package/build/utils/parseInvitation.js.map +0 -1
- package/build/utils/path.d.ts +0 -14
- package/build/utils/path.js +0 -38
- package/build/utils/path.js.map +0 -1
- package/build/utils/promises.d.ts +0 -11
- package/build/utils/promises.js +0 -26
- package/build/utils/promises.js.map +0 -1
- package/build/utils/sleep.d.ts +0 -1
- package/build/utils/sleep.js +0 -7
- package/build/utils/sleep.js.map +0 -1
- package/build/utils/thread.d.ts +0 -2
- package/build/utils/thread.js +0 -8
- package/build/utils/thread.js.map +0 -1
- package/build/utils/timestamp.d.ts +0 -5
- package/build/utils/timestamp.js +0 -23
- package/build/utils/timestamp.js.map +0 -1
- package/build/utils/transformers.d.ts +0 -15
- package/build/utils/transformers.js +0 -85
- package/build/utils/transformers.js.map +0 -1
- package/build/utils/type.d.ts +0 -4
- package/build/utils/type.js +0 -8
- package/build/utils/type.js.map +0 -1
- package/build/utils/uri.d.ts +0 -1
- package/build/utils/uri.js +0 -8
- package/build/utils/uri.js.map +0 -1
- package/build/utils/uuid.d.ts +0 -2
- package/build/utils/uuid.js +0 -12
- package/build/utils/uuid.js.map +0 -1
- package/build/utils/validators.d.ts +0 -20
- package/build/utils/validators.js +0 -71
- package/build/utils/validators.js.map +0 -1
- package/build/utils/version.d.ts +0 -8
- package/build/utils/version.js +0 -18
- package/build/utils/version.js.map +0 -1
- package/build/wallet/Wallet.d.ts +0 -98
- package/build/wallet/Wallet.js +0 -3
- package/build/wallet/Wallet.js.map +0 -1
- package/build/wallet/WalletApi.d.ts +0 -40
- package/build/wallet/WalletApi.js +0 -118
- package/build/wallet/WalletApi.js.map +0 -1
- package/build/wallet/WalletModule.d.ts +0 -9
- package/build/wallet/WalletModule.js +0 -19
- package/build/wallet/WalletModule.js.map +0 -1
- package/build/wallet/error/WalletDuplicateError.d.ts +0 -7
- package/build/wallet/error/WalletDuplicateError.js +0 -11
- package/build/wallet/error/WalletDuplicateError.js.map +0 -1
- package/build/wallet/error/WalletError.d.ts +0 -6
- package/build/wallet/error/WalletError.js +0 -11
- package/build/wallet/error/WalletError.js.map +0 -1
- package/build/wallet/error/WalletExportPathExistsError.d.ts +0 -6
- package/build/wallet/error/WalletExportPathExistsError.js +0 -11
- package/build/wallet/error/WalletExportPathExistsError.js.map +0 -1
- package/build/wallet/error/WalletExportUnsupportedError.d.ts +0 -6
- package/build/wallet/error/WalletExportUnsupportedError.js +0 -11
- package/build/wallet/error/WalletExportUnsupportedError.js.map +0 -1
- package/build/wallet/error/WalletImportPathExistsError.d.ts +0 -6
- package/build/wallet/error/WalletImportPathExistsError.js +0 -11
- package/build/wallet/error/WalletImportPathExistsError.js.map +0 -1
- package/build/wallet/error/WalletInvalidKeyError.d.ts +0 -7
- package/build/wallet/error/WalletInvalidKeyError.js +0 -11
- package/build/wallet/error/WalletInvalidKeyError.js.map +0 -1
- package/build/wallet/error/WalletKeyExistsError.d.ts +0 -6
- package/build/wallet/error/WalletKeyExistsError.js +0 -11
- package/build/wallet/error/WalletKeyExistsError.js.map +0 -1
- package/build/wallet/error/WalletNotFoundError.d.ts +0 -7
- package/build/wallet/error/WalletNotFoundError.js +0 -11
- package/build/wallet/error/WalletNotFoundError.js.map +0 -1
- package/build/wallet/error/index.d.ts +0 -8
- package/build/wallet/error/index.js +0 -20
- package/build/wallet/error/index.js.map +0 -1
- package/build/wallet/index.d.ts +0 -3
- package/build/wallet/index.js +0 -20
- package/build/wallet/index.js.map +0 -1
|
@@ -0,0 +1,3065 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
//#region src/modules/vc/data-integrity/libraries/contexts/schema_org.ts
|
|
4
|
+
const SCHEMA_ORG = { "@context": {
|
|
5
|
+
type: "@type",
|
|
6
|
+
id: "@id",
|
|
7
|
+
HTML: { "@id": "rdf:HTML" },
|
|
8
|
+
"@vocab": "http://schema.org/",
|
|
9
|
+
rdf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
|
|
10
|
+
rdfs: "http://www.w3.org/2000/01/rdf-schema#",
|
|
11
|
+
xsd: "http://www.w3.org/2001/XMLSchema#",
|
|
12
|
+
schema: "http://schema.org/",
|
|
13
|
+
owl: "http://www.w3.org/2002/07/owl#",
|
|
14
|
+
dc: "http://purl.org/dc/elements/1.1/",
|
|
15
|
+
dct: "http://purl.org/dc/terms/",
|
|
16
|
+
dctype: "http://purl.org/dc/dcmitype/",
|
|
17
|
+
void: "http://rdfs.org/ns/void#",
|
|
18
|
+
dcat: "http://www.w3.org/ns/dcat#",
|
|
19
|
+
"3DModel": { "@id": "schema:3DModel" },
|
|
20
|
+
AMRadioChannel: { "@id": "schema:AMRadioChannel" },
|
|
21
|
+
APIReference: { "@id": "schema:APIReference" },
|
|
22
|
+
Abdomen: { "@id": "schema:Abdomen" },
|
|
23
|
+
AboutPage: { "@id": "schema:AboutPage" },
|
|
24
|
+
AcceptAction: { "@id": "schema:AcceptAction" },
|
|
25
|
+
Accommodation: { "@id": "schema:Accommodation" },
|
|
26
|
+
AccountingService: { "@id": "schema:AccountingService" },
|
|
27
|
+
AchieveAction: { "@id": "schema:AchieveAction" },
|
|
28
|
+
Action: { "@id": "schema:Action" },
|
|
29
|
+
ActionAccessSpecification: { "@id": "schema:ActionAccessSpecification" },
|
|
30
|
+
ActionStatusType: { "@id": "schema:ActionStatusType" },
|
|
31
|
+
ActivateAction: { "@id": "schema:ActivateAction" },
|
|
32
|
+
ActivationFee: { "@id": "schema:ActivationFee" },
|
|
33
|
+
ActiveActionStatus: { "@id": "schema:ActiveActionStatus" },
|
|
34
|
+
ActiveNotRecruiting: { "@id": "schema:ActiveNotRecruiting" },
|
|
35
|
+
AddAction: { "@id": "schema:AddAction" },
|
|
36
|
+
AdministrativeArea: { "@id": "schema:AdministrativeArea" },
|
|
37
|
+
AdultEntertainment: { "@id": "schema:AdultEntertainment" },
|
|
38
|
+
AdvertiserContentArticle: { "@id": "schema:AdvertiserContentArticle" },
|
|
39
|
+
AerobicActivity: { "@id": "schema:AerobicActivity" },
|
|
40
|
+
AggregateOffer: { "@id": "schema:AggregateOffer" },
|
|
41
|
+
AggregateRating: { "@id": "schema:AggregateRating" },
|
|
42
|
+
AgreeAction: { "@id": "schema:AgreeAction" },
|
|
43
|
+
Airline: { "@id": "schema:Airline" },
|
|
44
|
+
Airport: { "@id": "schema:Airport" },
|
|
45
|
+
AlbumRelease: { "@id": "schema:AlbumRelease" },
|
|
46
|
+
AlignmentObject: { "@id": "schema:AlignmentObject" },
|
|
47
|
+
AllWheelDriveConfiguration: { "@id": "schema:AllWheelDriveConfiguration" },
|
|
48
|
+
AllergiesHealthAspect: { "@id": "schema:AllergiesHealthAspect" },
|
|
49
|
+
AllocateAction: { "@id": "schema:AllocateAction" },
|
|
50
|
+
AmpStory: { "@id": "schema:AmpStory" },
|
|
51
|
+
AmusementPark: { "@id": "schema:AmusementPark" },
|
|
52
|
+
AnaerobicActivity: { "@id": "schema:AnaerobicActivity" },
|
|
53
|
+
AnalysisNewsArticle: { "@id": "schema:AnalysisNewsArticle" },
|
|
54
|
+
AnatomicalStructure: { "@id": "schema:AnatomicalStructure" },
|
|
55
|
+
AnatomicalSystem: { "@id": "schema:AnatomicalSystem" },
|
|
56
|
+
Anesthesia: { "@id": "schema:Anesthesia" },
|
|
57
|
+
AnimalShelter: { "@id": "schema:AnimalShelter" },
|
|
58
|
+
Answer: { "@id": "schema:Answer" },
|
|
59
|
+
Apartment: { "@id": "schema:Apartment" },
|
|
60
|
+
ApartmentComplex: { "@id": "schema:ApartmentComplex" },
|
|
61
|
+
Appearance: { "@id": "schema:Appearance" },
|
|
62
|
+
AppendAction: { "@id": "schema:AppendAction" },
|
|
63
|
+
ApplyAction: { "@id": "schema:ApplyAction" },
|
|
64
|
+
ApprovedIndication: { "@id": "schema:ApprovedIndication" },
|
|
65
|
+
Aquarium: { "@id": "schema:Aquarium" },
|
|
66
|
+
ArchiveComponent: { "@id": "schema:ArchiveComponent" },
|
|
67
|
+
ArchiveOrganization: { "@id": "schema:ArchiveOrganization" },
|
|
68
|
+
ArriveAction: { "@id": "schema:ArriveAction" },
|
|
69
|
+
ArtGallery: { "@id": "schema:ArtGallery" },
|
|
70
|
+
Artery: { "@id": "schema:Artery" },
|
|
71
|
+
Article: { "@id": "schema:Article" },
|
|
72
|
+
AskAction: { "@id": "schema:AskAction" },
|
|
73
|
+
AskPublicNewsArticle: { "@id": "schema:AskPublicNewsArticle" },
|
|
74
|
+
AssessAction: { "@id": "schema:AssessAction" },
|
|
75
|
+
AssignAction: { "@id": "schema:AssignAction" },
|
|
76
|
+
Atlas: { "@id": "schema:Atlas" },
|
|
77
|
+
Attorney: { "@id": "schema:Attorney" },
|
|
78
|
+
Audience: { "@id": "schema:Audience" },
|
|
79
|
+
AudioObject: { "@id": "schema:AudioObject" },
|
|
80
|
+
Audiobook: { "@id": "schema:Audiobook" },
|
|
81
|
+
AudiobookFormat: { "@id": "schema:AudiobookFormat" },
|
|
82
|
+
AuthoritativeLegalValue: { "@id": "schema:AuthoritativeLegalValue" },
|
|
83
|
+
AuthorizeAction: { "@id": "schema:AuthorizeAction" },
|
|
84
|
+
AutoBodyShop: { "@id": "schema:AutoBodyShop" },
|
|
85
|
+
AutoDealer: { "@id": "schema:AutoDealer" },
|
|
86
|
+
AutoPartsStore: { "@id": "schema:AutoPartsStore" },
|
|
87
|
+
AutoRental: { "@id": "schema:AutoRental" },
|
|
88
|
+
AutoRepair: { "@id": "schema:AutoRepair" },
|
|
89
|
+
AutoWash: { "@id": "schema:AutoWash" },
|
|
90
|
+
AutomatedTeller: { "@id": "schema:AutomatedTeller" },
|
|
91
|
+
AutomotiveBusiness: { "@id": "schema:AutomotiveBusiness" },
|
|
92
|
+
Ayurvedic: { "@id": "schema:Ayurvedic" },
|
|
93
|
+
BackOrder: { "@id": "schema:BackOrder" },
|
|
94
|
+
BackgroundNewsArticle: { "@id": "schema:BackgroundNewsArticle" },
|
|
95
|
+
Bacteria: { "@id": "schema:Bacteria" },
|
|
96
|
+
Bakery: { "@id": "schema:Bakery" },
|
|
97
|
+
Balance: { "@id": "schema:Balance" },
|
|
98
|
+
BankAccount: { "@id": "schema:BankAccount" },
|
|
99
|
+
BankOrCreditUnion: { "@id": "schema:BankOrCreditUnion" },
|
|
100
|
+
BarOrPub: { "@id": "schema:BarOrPub" },
|
|
101
|
+
Barcode: { "@id": "schema:Barcode" },
|
|
102
|
+
BasicIncome: { "@id": "schema:BasicIncome" },
|
|
103
|
+
Beach: { "@id": "schema:Beach" },
|
|
104
|
+
BeautySalon: { "@id": "schema:BeautySalon" },
|
|
105
|
+
BedAndBreakfast: { "@id": "schema:BedAndBreakfast" },
|
|
106
|
+
BedDetails: { "@id": "schema:BedDetails" },
|
|
107
|
+
BedType: { "@id": "schema:BedType" },
|
|
108
|
+
BefriendAction: { "@id": "schema:BefriendAction" },
|
|
109
|
+
BenefitsHealthAspect: { "@id": "schema:BenefitsHealthAspect" },
|
|
110
|
+
BikeStore: { "@id": "schema:BikeStore" },
|
|
111
|
+
Blog: { "@id": "schema:Blog" },
|
|
112
|
+
BlogPosting: { "@id": "schema:BlogPosting" },
|
|
113
|
+
BloodTest: { "@id": "schema:BloodTest" },
|
|
114
|
+
BoardingPolicyType: { "@id": "schema:BoardingPolicyType" },
|
|
115
|
+
BoatReservation: { "@id": "schema:BoatReservation" },
|
|
116
|
+
BoatTerminal: { "@id": "schema:BoatTerminal" },
|
|
117
|
+
BoatTrip: { "@id": "schema:BoatTrip" },
|
|
118
|
+
BodyMeasurementArm: { "@id": "schema:BodyMeasurementArm" },
|
|
119
|
+
BodyMeasurementBust: { "@id": "schema:BodyMeasurementBust" },
|
|
120
|
+
BodyMeasurementChest: { "@id": "schema:BodyMeasurementChest" },
|
|
121
|
+
BodyMeasurementFoot: { "@id": "schema:BodyMeasurementFoot" },
|
|
122
|
+
BodyMeasurementHand: { "@id": "schema:BodyMeasurementHand" },
|
|
123
|
+
BodyMeasurementHead: { "@id": "schema:BodyMeasurementHead" },
|
|
124
|
+
BodyMeasurementHeight: { "@id": "schema:BodyMeasurementHeight" },
|
|
125
|
+
BodyMeasurementHips: { "@id": "schema:BodyMeasurementHips" },
|
|
126
|
+
BodyMeasurementInsideLeg: { "@id": "schema:BodyMeasurementInsideLeg" },
|
|
127
|
+
BodyMeasurementNeck: { "@id": "schema:BodyMeasurementNeck" },
|
|
128
|
+
BodyMeasurementTypeEnumeration: { "@id": "schema:BodyMeasurementTypeEnumeration" },
|
|
129
|
+
BodyMeasurementUnderbust: { "@id": "schema:BodyMeasurementUnderbust" },
|
|
130
|
+
BodyMeasurementWaist: { "@id": "schema:BodyMeasurementWaist" },
|
|
131
|
+
BodyMeasurementWeight: { "@id": "schema:BodyMeasurementWeight" },
|
|
132
|
+
BodyOfWater: { "@id": "schema:BodyOfWater" },
|
|
133
|
+
Bone: { "@id": "schema:Bone" },
|
|
134
|
+
Book: { "@id": "schema:Book" },
|
|
135
|
+
BookFormatType: { "@id": "schema:BookFormatType" },
|
|
136
|
+
BookSeries: { "@id": "schema:BookSeries" },
|
|
137
|
+
BookStore: { "@id": "schema:BookStore" },
|
|
138
|
+
BookmarkAction: { "@id": "schema:BookmarkAction" },
|
|
139
|
+
Boolean: { "@id": "schema:Boolean" },
|
|
140
|
+
BorrowAction: { "@id": "schema:BorrowAction" },
|
|
141
|
+
BowlingAlley: { "@id": "schema:BowlingAlley" },
|
|
142
|
+
BrainStructure: { "@id": "schema:BrainStructure" },
|
|
143
|
+
Brand: { "@id": "schema:Brand" },
|
|
144
|
+
BreadcrumbList: { "@id": "schema:BreadcrumbList" },
|
|
145
|
+
Brewery: { "@id": "schema:Brewery" },
|
|
146
|
+
Bridge: { "@id": "schema:Bridge" },
|
|
147
|
+
BroadcastChannel: { "@id": "schema:BroadcastChannel" },
|
|
148
|
+
BroadcastEvent: { "@id": "schema:BroadcastEvent" },
|
|
149
|
+
BroadcastFrequencySpecification: { "@id": "schema:BroadcastFrequencySpecification" },
|
|
150
|
+
BroadcastRelease: { "@id": "schema:BroadcastRelease" },
|
|
151
|
+
BroadcastService: { "@id": "schema:BroadcastService" },
|
|
152
|
+
BrokerageAccount: { "@id": "schema:BrokerageAccount" },
|
|
153
|
+
BuddhistTemple: { "@id": "schema:BuddhistTemple" },
|
|
154
|
+
BusOrCoach: { "@id": "schema:BusOrCoach" },
|
|
155
|
+
BusReservation: { "@id": "schema:BusReservation" },
|
|
156
|
+
BusStation: { "@id": "schema:BusStation" },
|
|
157
|
+
BusStop: { "@id": "schema:BusStop" },
|
|
158
|
+
BusTrip: { "@id": "schema:BusTrip" },
|
|
159
|
+
BusinessAudience: { "@id": "schema:BusinessAudience" },
|
|
160
|
+
BusinessEntityType: { "@id": "schema:BusinessEntityType" },
|
|
161
|
+
BusinessEvent: { "@id": "schema:BusinessEvent" },
|
|
162
|
+
BusinessFunction: { "@id": "schema:BusinessFunction" },
|
|
163
|
+
BusinessSupport: { "@id": "schema:BusinessSupport" },
|
|
164
|
+
BuyAction: { "@id": "schema:BuyAction" },
|
|
165
|
+
CDCPMDRecord: { "@id": "schema:CDCPMDRecord" },
|
|
166
|
+
CDFormat: { "@id": "schema:CDFormat" },
|
|
167
|
+
CT: { "@id": "schema:CT" },
|
|
168
|
+
CableOrSatelliteService: { "@id": "schema:CableOrSatelliteService" },
|
|
169
|
+
CafeOrCoffeeShop: { "@id": "schema:CafeOrCoffeeShop" },
|
|
170
|
+
Campground: { "@id": "schema:Campground" },
|
|
171
|
+
CampingPitch: { "@id": "schema:CampingPitch" },
|
|
172
|
+
Canal: { "@id": "schema:Canal" },
|
|
173
|
+
CancelAction: { "@id": "schema:CancelAction" },
|
|
174
|
+
Car: { "@id": "schema:Car" },
|
|
175
|
+
CarUsageType: { "@id": "schema:CarUsageType" },
|
|
176
|
+
Cardiovascular: { "@id": "schema:Cardiovascular" },
|
|
177
|
+
CardiovascularExam: { "@id": "schema:CardiovascularExam" },
|
|
178
|
+
CaseSeries: { "@id": "schema:CaseSeries" },
|
|
179
|
+
Casino: { "@id": "schema:Casino" },
|
|
180
|
+
CassetteFormat: { "@id": "schema:CassetteFormat" },
|
|
181
|
+
CategoryCode: { "@id": "schema:CategoryCode" },
|
|
182
|
+
CategoryCodeSet: { "@id": "schema:CategoryCodeSet" },
|
|
183
|
+
CatholicChurch: { "@id": "schema:CatholicChurch" },
|
|
184
|
+
CausesHealthAspect: { "@id": "schema:CausesHealthAspect" },
|
|
185
|
+
Cemetery: { "@id": "schema:Cemetery" },
|
|
186
|
+
Chapter: { "@id": "schema:Chapter" },
|
|
187
|
+
CharitableIncorporatedOrganization: { "@id": "schema:CharitableIncorporatedOrganization" },
|
|
188
|
+
CheckAction: { "@id": "schema:CheckAction" },
|
|
189
|
+
CheckInAction: { "@id": "schema:CheckInAction" },
|
|
190
|
+
CheckOutAction: { "@id": "schema:CheckOutAction" },
|
|
191
|
+
CheckoutPage: { "@id": "schema:CheckoutPage" },
|
|
192
|
+
ChildCare: { "@id": "schema:ChildCare" },
|
|
193
|
+
ChildrensEvent: { "@id": "schema:ChildrensEvent" },
|
|
194
|
+
Chiropractic: { "@id": "schema:Chiropractic" },
|
|
195
|
+
ChooseAction: { "@id": "schema:ChooseAction" },
|
|
196
|
+
Church: { "@id": "schema:Church" },
|
|
197
|
+
City: { "@id": "schema:City" },
|
|
198
|
+
CityHall: { "@id": "schema:CityHall" },
|
|
199
|
+
CivicStructure: { "@id": "schema:CivicStructure" },
|
|
200
|
+
Claim: { "@id": "schema:Claim" },
|
|
201
|
+
ClaimReview: { "@id": "schema:ClaimReview" },
|
|
202
|
+
Class: { "@id": "schema:Class" },
|
|
203
|
+
CleaningFee: { "@id": "schema:CleaningFee" },
|
|
204
|
+
Clinician: { "@id": "schema:Clinician" },
|
|
205
|
+
Clip: { "@id": "schema:Clip" },
|
|
206
|
+
ClothingStore: { "@id": "schema:ClothingStore" },
|
|
207
|
+
CoOp: { "@id": "schema:CoOp" },
|
|
208
|
+
Code: { "@id": "schema:Code" },
|
|
209
|
+
CohortStudy: { "@id": "schema:CohortStudy" },
|
|
210
|
+
Collection: { "@id": "schema:Collection" },
|
|
211
|
+
CollectionPage: { "@id": "schema:CollectionPage" },
|
|
212
|
+
CollegeOrUniversity: { "@id": "schema:CollegeOrUniversity" },
|
|
213
|
+
ComedyClub: { "@id": "schema:ComedyClub" },
|
|
214
|
+
ComedyEvent: { "@id": "schema:ComedyEvent" },
|
|
215
|
+
ComicCoverArt: { "@id": "schema:ComicCoverArt" },
|
|
216
|
+
ComicIssue: { "@id": "schema:ComicIssue" },
|
|
217
|
+
ComicSeries: { "@id": "schema:ComicSeries" },
|
|
218
|
+
ComicStory: { "@id": "schema:ComicStory" },
|
|
219
|
+
Comment: { "@id": "schema:Comment" },
|
|
220
|
+
CommentAction: { "@id": "schema:CommentAction" },
|
|
221
|
+
CommentPermission: { "@id": "schema:CommentPermission" },
|
|
222
|
+
CommunicateAction: { "@id": "schema:CommunicateAction" },
|
|
223
|
+
CommunityHealth: { "@id": "schema:CommunityHealth" },
|
|
224
|
+
CompilationAlbum: { "@id": "schema:CompilationAlbum" },
|
|
225
|
+
CompleteDataFeed: { "@id": "schema:CompleteDataFeed" },
|
|
226
|
+
Completed: { "@id": "schema:Completed" },
|
|
227
|
+
CompletedActionStatus: { "@id": "schema:CompletedActionStatus" },
|
|
228
|
+
CompoundPriceSpecification: { "@id": "schema:CompoundPriceSpecification" },
|
|
229
|
+
ComputerLanguage: { "@id": "schema:ComputerLanguage" },
|
|
230
|
+
ComputerStore: { "@id": "schema:ComputerStore" },
|
|
231
|
+
ConfirmAction: { "@id": "schema:ConfirmAction" },
|
|
232
|
+
Consortium: { "@id": "schema:Consortium" },
|
|
233
|
+
ConsumeAction: { "@id": "schema:ConsumeAction" },
|
|
234
|
+
ContactPage: { "@id": "schema:ContactPage" },
|
|
235
|
+
ContactPoint: { "@id": "schema:ContactPoint" },
|
|
236
|
+
ContactPointOption: { "@id": "schema:ContactPointOption" },
|
|
237
|
+
ContagiousnessHealthAspect: { "@id": "schema:ContagiousnessHealthAspect" },
|
|
238
|
+
Continent: { "@id": "schema:Continent" },
|
|
239
|
+
ControlAction: { "@id": "schema:ControlAction" },
|
|
240
|
+
ConvenienceStore: { "@id": "schema:ConvenienceStore" },
|
|
241
|
+
Conversation: { "@id": "schema:Conversation" },
|
|
242
|
+
CookAction: { "@id": "schema:CookAction" },
|
|
243
|
+
Corporation: { "@id": "schema:Corporation" },
|
|
244
|
+
CorrectionComment: { "@id": "schema:CorrectionComment" },
|
|
245
|
+
Country: { "@id": "schema:Country" },
|
|
246
|
+
Course: { "@id": "schema:Course" },
|
|
247
|
+
CourseInstance: { "@id": "schema:CourseInstance" },
|
|
248
|
+
Courthouse: { "@id": "schema:Courthouse" },
|
|
249
|
+
CoverArt: { "@id": "schema:CoverArt" },
|
|
250
|
+
CovidTestingFacility: { "@id": "schema:CovidTestingFacility" },
|
|
251
|
+
CreateAction: { "@id": "schema:CreateAction" },
|
|
252
|
+
CreativeWork: { "@id": "schema:CreativeWork" },
|
|
253
|
+
CreativeWorkSeason: { "@id": "schema:CreativeWorkSeason" },
|
|
254
|
+
CreativeWorkSeries: { "@id": "schema:CreativeWorkSeries" },
|
|
255
|
+
CreditCard: { "@id": "schema:CreditCard" },
|
|
256
|
+
Crematorium: { "@id": "schema:Crematorium" },
|
|
257
|
+
CriticReview: { "@id": "schema:CriticReview" },
|
|
258
|
+
CrossSectional: { "@id": "schema:CrossSectional" },
|
|
259
|
+
CssSelectorType: { "@id": "schema:CssSelectorType" },
|
|
260
|
+
CurrencyConversionService: { "@id": "schema:CurrencyConversionService" },
|
|
261
|
+
DDxElement: { "@id": "schema:DDxElement" },
|
|
262
|
+
DJMixAlbum: { "@id": "schema:DJMixAlbum" },
|
|
263
|
+
DVDFormat: { "@id": "schema:DVDFormat" },
|
|
264
|
+
DamagedCondition: { "@id": "schema:DamagedCondition" },
|
|
265
|
+
DanceEvent: { "@id": "schema:DanceEvent" },
|
|
266
|
+
DanceGroup: { "@id": "schema:DanceGroup" },
|
|
267
|
+
DataCatalog: { "@id": "schema:DataCatalog" },
|
|
268
|
+
DataDownload: { "@id": "schema:DataDownload" },
|
|
269
|
+
DataFeed: { "@id": "schema:DataFeed" },
|
|
270
|
+
DataFeedItem: { "@id": "schema:DataFeedItem" },
|
|
271
|
+
DataType: { "@id": "schema:DataType" },
|
|
272
|
+
Dataset: { "@id": "schema:Dataset" },
|
|
273
|
+
Date: { "@id": "schema:Date" },
|
|
274
|
+
DateTime: { "@id": "schema:DateTime" },
|
|
275
|
+
DatedMoneySpecification: { "@id": "schema:DatedMoneySpecification" },
|
|
276
|
+
DayOfWeek: { "@id": "schema:DayOfWeek" },
|
|
277
|
+
DaySpa: { "@id": "schema:DaySpa" },
|
|
278
|
+
DeactivateAction: { "@id": "schema:DeactivateAction" },
|
|
279
|
+
DecontextualizedContent: { "@id": "schema:DecontextualizedContent" },
|
|
280
|
+
DefenceEstablishment: { "@id": "schema:DefenceEstablishment" },
|
|
281
|
+
DefinedRegion: { "@id": "schema:DefinedRegion" },
|
|
282
|
+
DefinedTerm: { "@id": "schema:DefinedTerm" },
|
|
283
|
+
DefinedTermSet: { "@id": "schema:DefinedTermSet" },
|
|
284
|
+
DefinitiveLegalValue: { "@id": "schema:DefinitiveLegalValue" },
|
|
285
|
+
DeleteAction: { "@id": "schema:DeleteAction" },
|
|
286
|
+
DeliveryChargeSpecification: { "@id": "schema:DeliveryChargeSpecification" },
|
|
287
|
+
DeliveryEvent: { "@id": "schema:DeliveryEvent" },
|
|
288
|
+
DeliveryMethod: { "@id": "schema:DeliveryMethod" },
|
|
289
|
+
DeliveryTimeSettings: { "@id": "schema:DeliveryTimeSettings" },
|
|
290
|
+
Demand: { "@id": "schema:Demand" },
|
|
291
|
+
DemoAlbum: { "@id": "schema:DemoAlbum" },
|
|
292
|
+
Dentist: { "@id": "schema:Dentist" },
|
|
293
|
+
Dentistry: { "@id": "schema:Dentistry" },
|
|
294
|
+
DepartAction: { "@id": "schema:DepartAction" },
|
|
295
|
+
DepartmentStore: { "@id": "schema:DepartmentStore" },
|
|
296
|
+
DepositAccount: { "@id": "schema:DepositAccount" },
|
|
297
|
+
Dermatologic: { "@id": "schema:Dermatologic" },
|
|
298
|
+
Dermatology: { "@id": "schema:Dermatology" },
|
|
299
|
+
DiabeticDiet: { "@id": "schema:DiabeticDiet" },
|
|
300
|
+
Diagnostic: { "@id": "schema:Diagnostic" },
|
|
301
|
+
DiagnosticLab: { "@id": "schema:DiagnosticLab" },
|
|
302
|
+
DiagnosticProcedure: { "@id": "schema:DiagnosticProcedure" },
|
|
303
|
+
Diet: { "@id": "schema:Diet" },
|
|
304
|
+
DietNutrition: { "@id": "schema:DietNutrition" },
|
|
305
|
+
DietarySupplement: { "@id": "schema:DietarySupplement" },
|
|
306
|
+
DigitalAudioTapeFormat: { "@id": "schema:DigitalAudioTapeFormat" },
|
|
307
|
+
DigitalDocument: { "@id": "schema:DigitalDocument" },
|
|
308
|
+
DigitalDocumentPermission: { "@id": "schema:DigitalDocumentPermission" },
|
|
309
|
+
DigitalDocumentPermissionType: { "@id": "schema:DigitalDocumentPermissionType" },
|
|
310
|
+
DigitalFormat: { "@id": "schema:DigitalFormat" },
|
|
311
|
+
DisabilitySupport: { "@id": "schema:DisabilitySupport" },
|
|
312
|
+
DisagreeAction: { "@id": "schema:DisagreeAction" },
|
|
313
|
+
Discontinued: { "@id": "schema:Discontinued" },
|
|
314
|
+
DiscoverAction: { "@id": "schema:DiscoverAction" },
|
|
315
|
+
DiscussionForumPosting: { "@id": "schema:DiscussionForumPosting" },
|
|
316
|
+
DislikeAction: { "@id": "schema:DislikeAction" },
|
|
317
|
+
Distance: { "@id": "schema:Distance" },
|
|
318
|
+
DistanceFee: { "@id": "schema:DistanceFee" },
|
|
319
|
+
Distillery: { "@id": "schema:Distillery" },
|
|
320
|
+
DonateAction: { "@id": "schema:DonateAction" },
|
|
321
|
+
DoseSchedule: { "@id": "schema:DoseSchedule" },
|
|
322
|
+
DoubleBlindedTrial: { "@id": "schema:DoubleBlindedTrial" },
|
|
323
|
+
DownloadAction: { "@id": "schema:DownloadAction" },
|
|
324
|
+
Downpayment: { "@id": "schema:Downpayment" },
|
|
325
|
+
DrawAction: { "@id": "schema:DrawAction" },
|
|
326
|
+
Drawing: { "@id": "schema:Drawing" },
|
|
327
|
+
DrinkAction: { "@id": "schema:DrinkAction" },
|
|
328
|
+
DriveWheelConfigurationValue: { "@id": "schema:DriveWheelConfigurationValue" },
|
|
329
|
+
DrivingSchoolVehicleUsage: { "@id": "schema:DrivingSchoolVehicleUsage" },
|
|
330
|
+
Drug: { "@id": "schema:Drug" },
|
|
331
|
+
DrugClass: { "@id": "schema:DrugClass" },
|
|
332
|
+
DrugCost: { "@id": "schema:DrugCost" },
|
|
333
|
+
DrugCostCategory: { "@id": "schema:DrugCostCategory" },
|
|
334
|
+
DrugLegalStatus: { "@id": "schema:DrugLegalStatus" },
|
|
335
|
+
DrugPregnancyCategory: { "@id": "schema:DrugPregnancyCategory" },
|
|
336
|
+
DrugPrescriptionStatus: { "@id": "schema:DrugPrescriptionStatus" },
|
|
337
|
+
DrugStrength: { "@id": "schema:DrugStrength" },
|
|
338
|
+
DryCleaningOrLaundry: { "@id": "schema:DryCleaningOrLaundry" },
|
|
339
|
+
Duration: { "@id": "schema:Duration" },
|
|
340
|
+
EBook: { "@id": "schema:EBook" },
|
|
341
|
+
EPRelease: { "@id": "schema:EPRelease" },
|
|
342
|
+
EUEnergyEfficiencyCategoryA: { "@id": "schema:EUEnergyEfficiencyCategoryA" },
|
|
343
|
+
EUEnergyEfficiencyCategoryA1Plus: { "@id": "schema:EUEnergyEfficiencyCategoryA1Plus" },
|
|
344
|
+
EUEnergyEfficiencyCategoryA2Plus: { "@id": "schema:EUEnergyEfficiencyCategoryA2Plus" },
|
|
345
|
+
EUEnergyEfficiencyCategoryA3Plus: { "@id": "schema:EUEnergyEfficiencyCategoryA3Plus" },
|
|
346
|
+
EUEnergyEfficiencyCategoryB: { "@id": "schema:EUEnergyEfficiencyCategoryB" },
|
|
347
|
+
EUEnergyEfficiencyCategoryC: { "@id": "schema:EUEnergyEfficiencyCategoryC" },
|
|
348
|
+
EUEnergyEfficiencyCategoryD: { "@id": "schema:EUEnergyEfficiencyCategoryD" },
|
|
349
|
+
EUEnergyEfficiencyCategoryE: { "@id": "schema:EUEnergyEfficiencyCategoryE" },
|
|
350
|
+
EUEnergyEfficiencyCategoryF: { "@id": "schema:EUEnergyEfficiencyCategoryF" },
|
|
351
|
+
EUEnergyEfficiencyCategoryG: { "@id": "schema:EUEnergyEfficiencyCategoryG" },
|
|
352
|
+
EUEnergyEfficiencyEnumeration: { "@id": "schema:EUEnergyEfficiencyEnumeration" },
|
|
353
|
+
Ear: { "@id": "schema:Ear" },
|
|
354
|
+
EatAction: { "@id": "schema:EatAction" },
|
|
355
|
+
EditedOrCroppedContent: { "@id": "schema:EditedOrCroppedContent" },
|
|
356
|
+
EducationEvent: { "@id": "schema:EducationEvent" },
|
|
357
|
+
EducationalAudience: { "@id": "schema:EducationalAudience" },
|
|
358
|
+
EducationalOccupationalCredential: { "@id": "schema:EducationalOccupationalCredential" },
|
|
359
|
+
EducationalOccupationalProgram: { "@id": "schema:EducationalOccupationalProgram" },
|
|
360
|
+
EducationalOrganization: { "@id": "schema:EducationalOrganization" },
|
|
361
|
+
EffectivenessHealthAspect: { "@id": "schema:EffectivenessHealthAspect" },
|
|
362
|
+
Electrician: { "@id": "schema:Electrician" },
|
|
363
|
+
ElectronicsStore: { "@id": "schema:ElectronicsStore" },
|
|
364
|
+
ElementarySchool: { "@id": "schema:ElementarySchool" },
|
|
365
|
+
EmailMessage: { "@id": "schema:EmailMessage" },
|
|
366
|
+
Embassy: { "@id": "schema:Embassy" },
|
|
367
|
+
Emergency: { "@id": "schema:Emergency" },
|
|
368
|
+
EmergencyService: { "@id": "schema:EmergencyService" },
|
|
369
|
+
EmployeeRole: { "@id": "schema:EmployeeRole" },
|
|
370
|
+
EmployerAggregateRating: { "@id": "schema:EmployerAggregateRating" },
|
|
371
|
+
EmployerReview: { "@id": "schema:EmployerReview" },
|
|
372
|
+
EmploymentAgency: { "@id": "schema:EmploymentAgency" },
|
|
373
|
+
Endocrine: { "@id": "schema:Endocrine" },
|
|
374
|
+
EndorseAction: { "@id": "schema:EndorseAction" },
|
|
375
|
+
EndorsementRating: { "@id": "schema:EndorsementRating" },
|
|
376
|
+
Energy: { "@id": "schema:Energy" },
|
|
377
|
+
EnergyConsumptionDetails: { "@id": "schema:EnergyConsumptionDetails" },
|
|
378
|
+
EnergyEfficiencyEnumeration: { "@id": "schema:EnergyEfficiencyEnumeration" },
|
|
379
|
+
EnergyStarCertified: { "@id": "schema:EnergyStarCertified" },
|
|
380
|
+
EnergyStarEnergyEfficiencyEnumeration: { "@id": "schema:EnergyStarEnergyEfficiencyEnumeration" },
|
|
381
|
+
EngineSpecification: { "@id": "schema:EngineSpecification" },
|
|
382
|
+
EnrollingByInvitation: { "@id": "schema:EnrollingByInvitation" },
|
|
383
|
+
EntertainmentBusiness: { "@id": "schema:EntertainmentBusiness" },
|
|
384
|
+
EntryPoint: { "@id": "schema:EntryPoint" },
|
|
385
|
+
Enumeration: { "@id": "schema:Enumeration" },
|
|
386
|
+
Episode: { "@id": "schema:Episode" },
|
|
387
|
+
Event: { "@id": "schema:Event" },
|
|
388
|
+
EventAttendanceModeEnumeration: { "@id": "schema:EventAttendanceModeEnumeration" },
|
|
389
|
+
EventCancelled: { "@id": "schema:EventCancelled" },
|
|
390
|
+
EventMovedOnline: { "@id": "schema:EventMovedOnline" },
|
|
391
|
+
EventPostponed: { "@id": "schema:EventPostponed" },
|
|
392
|
+
EventRescheduled: { "@id": "schema:EventRescheduled" },
|
|
393
|
+
EventReservation: { "@id": "schema:EventReservation" },
|
|
394
|
+
EventScheduled: { "@id": "schema:EventScheduled" },
|
|
395
|
+
EventSeries: { "@id": "schema:EventSeries" },
|
|
396
|
+
EventStatusType: { "@id": "schema:EventStatusType" },
|
|
397
|
+
EventVenue: { "@id": "schema:EventVenue" },
|
|
398
|
+
EvidenceLevelA: { "@id": "schema:EvidenceLevelA" },
|
|
399
|
+
EvidenceLevelB: { "@id": "schema:EvidenceLevelB" },
|
|
400
|
+
EvidenceLevelC: { "@id": "schema:EvidenceLevelC" },
|
|
401
|
+
ExchangeRateSpecification: { "@id": "schema:ExchangeRateSpecification" },
|
|
402
|
+
ExchangeRefund: { "@id": "schema:ExchangeRefund" },
|
|
403
|
+
ExerciseAction: { "@id": "schema:ExerciseAction" },
|
|
404
|
+
ExerciseGym: { "@id": "schema:ExerciseGym" },
|
|
405
|
+
ExercisePlan: { "@id": "schema:ExercisePlan" },
|
|
406
|
+
ExhibitionEvent: { "@id": "schema:ExhibitionEvent" },
|
|
407
|
+
Eye: { "@id": "schema:Eye" },
|
|
408
|
+
FAQPage: { "@id": "schema:FAQPage" },
|
|
409
|
+
FDAcategoryA: { "@id": "schema:FDAcategoryA" },
|
|
410
|
+
FDAcategoryB: { "@id": "schema:FDAcategoryB" },
|
|
411
|
+
FDAcategoryC: { "@id": "schema:FDAcategoryC" },
|
|
412
|
+
FDAcategoryD: { "@id": "schema:FDAcategoryD" },
|
|
413
|
+
FDAcategoryX: { "@id": "schema:FDAcategoryX" },
|
|
414
|
+
FDAnotEvaluated: { "@id": "schema:FDAnotEvaluated" },
|
|
415
|
+
FMRadioChannel: { "@id": "schema:FMRadioChannel" },
|
|
416
|
+
FailedActionStatus: { "@id": "schema:FailedActionStatus" },
|
|
417
|
+
False: { "@id": "schema:False" },
|
|
418
|
+
FastFoodRestaurant: { "@id": "schema:FastFoodRestaurant" },
|
|
419
|
+
Female: { "@id": "schema:Female" },
|
|
420
|
+
Festival: { "@id": "schema:Festival" },
|
|
421
|
+
FilmAction: { "@id": "schema:FilmAction" },
|
|
422
|
+
FinancialProduct: { "@id": "schema:FinancialProduct" },
|
|
423
|
+
FinancialService: { "@id": "schema:FinancialService" },
|
|
424
|
+
FindAction: { "@id": "schema:FindAction" },
|
|
425
|
+
FireStation: { "@id": "schema:FireStation" },
|
|
426
|
+
Flexibility: { "@id": "schema:Flexibility" },
|
|
427
|
+
Flight: { "@id": "schema:Flight" },
|
|
428
|
+
FlightReservation: { "@id": "schema:FlightReservation" },
|
|
429
|
+
Float: { "@id": "schema:Float" },
|
|
430
|
+
FloorPlan: { "@id": "schema:FloorPlan" },
|
|
431
|
+
Florist: { "@id": "schema:Florist" },
|
|
432
|
+
FollowAction: { "@id": "schema:FollowAction" },
|
|
433
|
+
FoodEstablishment: { "@id": "schema:FoodEstablishment" },
|
|
434
|
+
FoodEstablishmentReservation: { "@id": "schema:FoodEstablishmentReservation" },
|
|
435
|
+
FoodEvent: { "@id": "schema:FoodEvent" },
|
|
436
|
+
FoodService: { "@id": "schema:FoodService" },
|
|
437
|
+
FourWheelDriveConfiguration: { "@id": "schema:FourWheelDriveConfiguration" },
|
|
438
|
+
Friday: { "@id": "schema:Friday" },
|
|
439
|
+
FrontWheelDriveConfiguration: { "@id": "schema:FrontWheelDriveConfiguration" },
|
|
440
|
+
FullRefund: { "@id": "schema:FullRefund" },
|
|
441
|
+
FundingAgency: { "@id": "schema:FundingAgency" },
|
|
442
|
+
FundingScheme: { "@id": "schema:FundingScheme" },
|
|
443
|
+
Fungus: { "@id": "schema:Fungus" },
|
|
444
|
+
FurnitureStore: { "@id": "schema:FurnitureStore" },
|
|
445
|
+
Game: { "@id": "schema:Game" },
|
|
446
|
+
GamePlayMode: { "@id": "schema:GamePlayMode" },
|
|
447
|
+
GameServer: { "@id": "schema:GameServer" },
|
|
448
|
+
GameServerStatus: { "@id": "schema:GameServerStatus" },
|
|
449
|
+
GardenStore: { "@id": "schema:GardenStore" },
|
|
450
|
+
GasStation: { "@id": "schema:GasStation" },
|
|
451
|
+
Gastroenterologic: { "@id": "schema:Gastroenterologic" },
|
|
452
|
+
GatedResidenceCommunity: { "@id": "schema:GatedResidenceCommunity" },
|
|
453
|
+
GenderType: { "@id": "schema:GenderType" },
|
|
454
|
+
GeneralContractor: { "@id": "schema:GeneralContractor" },
|
|
455
|
+
Genetic: { "@id": "schema:Genetic" },
|
|
456
|
+
Genitourinary: { "@id": "schema:Genitourinary" },
|
|
457
|
+
GeoCircle: { "@id": "schema:GeoCircle" },
|
|
458
|
+
GeoCoordinates: { "@id": "schema:GeoCoordinates" },
|
|
459
|
+
GeoShape: { "@id": "schema:GeoShape" },
|
|
460
|
+
GeospatialGeometry: { "@id": "schema:GeospatialGeometry" },
|
|
461
|
+
Geriatric: { "@id": "schema:Geriatric" },
|
|
462
|
+
GettingAccessHealthAspect: { "@id": "schema:GettingAccessHealthAspect" },
|
|
463
|
+
GiveAction: { "@id": "schema:GiveAction" },
|
|
464
|
+
GlutenFreeDiet: { "@id": "schema:GlutenFreeDiet" },
|
|
465
|
+
GolfCourse: { "@id": "schema:GolfCourse" },
|
|
466
|
+
GovernmentBenefitsType: { "@id": "schema:GovernmentBenefitsType" },
|
|
467
|
+
GovernmentBuilding: { "@id": "schema:GovernmentBuilding" },
|
|
468
|
+
GovernmentOffice: { "@id": "schema:GovernmentOffice" },
|
|
469
|
+
GovernmentOrganization: { "@id": "schema:GovernmentOrganization" },
|
|
470
|
+
GovernmentPermit: { "@id": "schema:GovernmentPermit" },
|
|
471
|
+
GovernmentService: { "@id": "schema:GovernmentService" },
|
|
472
|
+
Grant: { "@id": "schema:Grant" },
|
|
473
|
+
GraphicNovel: { "@id": "schema:GraphicNovel" },
|
|
474
|
+
GroceryStore: { "@id": "schema:GroceryStore" },
|
|
475
|
+
GroupBoardingPolicy: { "@id": "schema:GroupBoardingPolicy" },
|
|
476
|
+
Guide: { "@id": "schema:Guide" },
|
|
477
|
+
Gynecologic: { "@id": "schema:Gynecologic" },
|
|
478
|
+
HVACBusiness: { "@id": "schema:HVACBusiness" },
|
|
479
|
+
Hackathon: { "@id": "schema:Hackathon" },
|
|
480
|
+
HairSalon: { "@id": "schema:HairSalon" },
|
|
481
|
+
HalalDiet: { "@id": "schema:HalalDiet" },
|
|
482
|
+
Hardcover: { "@id": "schema:Hardcover" },
|
|
483
|
+
HardwareStore: { "@id": "schema:HardwareStore" },
|
|
484
|
+
Head: { "@id": "schema:Head" },
|
|
485
|
+
HealthAndBeautyBusiness: { "@id": "schema:HealthAndBeautyBusiness" },
|
|
486
|
+
HealthAspectEnumeration: { "@id": "schema:HealthAspectEnumeration" },
|
|
487
|
+
HealthCare: { "@id": "schema:HealthCare" },
|
|
488
|
+
HealthClub: { "@id": "schema:HealthClub" },
|
|
489
|
+
HealthInsurancePlan: { "@id": "schema:HealthInsurancePlan" },
|
|
490
|
+
HealthPlanCostSharingSpecification: { "@id": "schema:HealthPlanCostSharingSpecification" },
|
|
491
|
+
HealthPlanFormulary: { "@id": "schema:HealthPlanFormulary" },
|
|
492
|
+
HealthPlanNetwork: { "@id": "schema:HealthPlanNetwork" },
|
|
493
|
+
HealthTopicContent: { "@id": "schema:HealthTopicContent" },
|
|
494
|
+
HearingImpairedSupported: { "@id": "schema:HearingImpairedSupported" },
|
|
495
|
+
Hematologic: { "@id": "schema:Hematologic" },
|
|
496
|
+
HighSchool: { "@id": "schema:HighSchool" },
|
|
497
|
+
HinduDiet: { "@id": "schema:HinduDiet" },
|
|
498
|
+
HinduTemple: { "@id": "schema:HinduTemple" },
|
|
499
|
+
HobbyShop: { "@id": "schema:HobbyShop" },
|
|
500
|
+
HomeAndConstructionBusiness: { "@id": "schema:HomeAndConstructionBusiness" },
|
|
501
|
+
HomeGoodsStore: { "@id": "schema:HomeGoodsStore" },
|
|
502
|
+
Homeopathic: { "@id": "schema:Homeopathic" },
|
|
503
|
+
Hospital: { "@id": "schema:Hospital" },
|
|
504
|
+
Hostel: { "@id": "schema:Hostel" },
|
|
505
|
+
Hotel: { "@id": "schema:Hotel" },
|
|
506
|
+
HotelRoom: { "@id": "schema:HotelRoom" },
|
|
507
|
+
House: { "@id": "schema:House" },
|
|
508
|
+
HousePainter: { "@id": "schema:HousePainter" },
|
|
509
|
+
HowItWorksHealthAspect: { "@id": "schema:HowItWorksHealthAspect" },
|
|
510
|
+
HowOrWhereHealthAspect: { "@id": "schema:HowOrWhereHealthAspect" },
|
|
511
|
+
HowTo: { "@id": "schema:HowTo" },
|
|
512
|
+
HowToDirection: { "@id": "schema:HowToDirection" },
|
|
513
|
+
HowToItem: { "@id": "schema:HowToItem" },
|
|
514
|
+
HowToSection: { "@id": "schema:HowToSection" },
|
|
515
|
+
HowToStep: { "@id": "schema:HowToStep" },
|
|
516
|
+
HowToSupply: { "@id": "schema:HowToSupply" },
|
|
517
|
+
HowToTip: { "@id": "schema:HowToTip" },
|
|
518
|
+
HowToTool: { "@id": "schema:HowToTool" },
|
|
519
|
+
HyperToc: { "@id": "schema:HyperToc" },
|
|
520
|
+
HyperTocEntry: { "@id": "schema:HyperTocEntry" },
|
|
521
|
+
IceCreamShop: { "@id": "schema:IceCreamShop" },
|
|
522
|
+
IgnoreAction: { "@id": "schema:IgnoreAction" },
|
|
523
|
+
ImageGallery: { "@id": "schema:ImageGallery" },
|
|
524
|
+
ImageObject: { "@id": "schema:ImageObject" },
|
|
525
|
+
ImagingTest: { "@id": "schema:ImagingTest" },
|
|
526
|
+
InForce: { "@id": "schema:InForce" },
|
|
527
|
+
InStock: { "@id": "schema:InStock" },
|
|
528
|
+
InStoreOnly: { "@id": "schema:InStoreOnly" },
|
|
529
|
+
IndividualProduct: { "@id": "schema:IndividualProduct" },
|
|
530
|
+
Infectious: { "@id": "schema:Infectious" },
|
|
531
|
+
InfectiousAgentClass: { "@id": "schema:InfectiousAgentClass" },
|
|
532
|
+
InfectiousDisease: { "@id": "schema:InfectiousDisease" },
|
|
533
|
+
InformAction: { "@id": "schema:InformAction" },
|
|
534
|
+
IngredientsHealthAspect: { "@id": "schema:IngredientsHealthAspect" },
|
|
535
|
+
InsertAction: { "@id": "schema:InsertAction" },
|
|
536
|
+
InstallAction: { "@id": "schema:InstallAction" },
|
|
537
|
+
Installment: { "@id": "schema:Installment" },
|
|
538
|
+
InsuranceAgency: { "@id": "schema:InsuranceAgency" },
|
|
539
|
+
Intangible: { "@id": "schema:Intangible" },
|
|
540
|
+
Integer: { "@id": "schema:Integer" },
|
|
541
|
+
InteractAction: { "@id": "schema:InteractAction" },
|
|
542
|
+
InteractionCounter: { "@id": "schema:InteractionCounter" },
|
|
543
|
+
InternationalTrial: { "@id": "schema:InternationalTrial" },
|
|
544
|
+
InternetCafe: { "@id": "schema:InternetCafe" },
|
|
545
|
+
InvestmentFund: { "@id": "schema:InvestmentFund" },
|
|
546
|
+
InvestmentOrDeposit: { "@id": "schema:InvestmentOrDeposit" },
|
|
547
|
+
InviteAction: { "@id": "schema:InviteAction" },
|
|
548
|
+
Invoice: { "@id": "schema:Invoice" },
|
|
549
|
+
InvoicePrice: { "@id": "schema:InvoicePrice" },
|
|
550
|
+
ItemAvailability: { "@id": "schema:ItemAvailability" },
|
|
551
|
+
ItemList: { "@id": "schema:ItemList" },
|
|
552
|
+
ItemListOrderAscending: { "@id": "schema:ItemListOrderAscending" },
|
|
553
|
+
ItemListOrderDescending: { "@id": "schema:ItemListOrderDescending" },
|
|
554
|
+
ItemListOrderType: { "@id": "schema:ItemListOrderType" },
|
|
555
|
+
ItemListUnordered: { "@id": "schema:ItemListUnordered" },
|
|
556
|
+
ItemPage: { "@id": "schema:ItemPage" },
|
|
557
|
+
JewelryStore: { "@id": "schema:JewelryStore" },
|
|
558
|
+
JobPosting: { "@id": "schema:JobPosting" },
|
|
559
|
+
JoinAction: { "@id": "schema:JoinAction" },
|
|
560
|
+
Joint: { "@id": "schema:Joint" },
|
|
561
|
+
KosherDiet: { "@id": "schema:KosherDiet" },
|
|
562
|
+
LaboratoryScience: { "@id": "schema:LaboratoryScience" },
|
|
563
|
+
LakeBodyOfWater: { "@id": "schema:LakeBodyOfWater" },
|
|
564
|
+
Landform: { "@id": "schema:Landform" },
|
|
565
|
+
LandmarksOrHistoricalBuildings: { "@id": "schema:LandmarksOrHistoricalBuildings" },
|
|
566
|
+
Language: { "@id": "schema:Language" },
|
|
567
|
+
LaserDiscFormat: { "@id": "schema:LaserDiscFormat" },
|
|
568
|
+
LearningResource: { "@id": "schema:LearningResource" },
|
|
569
|
+
LeaveAction: { "@id": "schema:LeaveAction" },
|
|
570
|
+
LeftHandDriving: { "@id": "schema:LeftHandDriving" },
|
|
571
|
+
LegalForceStatus: { "@id": "schema:LegalForceStatus" },
|
|
572
|
+
LegalService: { "@id": "schema:LegalService" },
|
|
573
|
+
LegalValueLevel: { "@id": "schema:LegalValueLevel" },
|
|
574
|
+
Legislation: { "@id": "schema:Legislation" },
|
|
575
|
+
LegislationObject: { "@id": "schema:LegislationObject" },
|
|
576
|
+
LegislativeBuilding: { "@id": "schema:LegislativeBuilding" },
|
|
577
|
+
LeisureTimeActivity: { "@id": "schema:LeisureTimeActivity" },
|
|
578
|
+
LendAction: { "@id": "schema:LendAction" },
|
|
579
|
+
Library: { "@id": "schema:Library" },
|
|
580
|
+
LibrarySystem: { "@id": "schema:LibrarySystem" },
|
|
581
|
+
LifestyleModification: { "@id": "schema:LifestyleModification" },
|
|
582
|
+
Ligament: { "@id": "schema:Ligament" },
|
|
583
|
+
LikeAction: { "@id": "schema:LikeAction" },
|
|
584
|
+
LimitedAvailability: { "@id": "schema:LimitedAvailability" },
|
|
585
|
+
LimitedByGuaranteeCharity: { "@id": "schema:LimitedByGuaranteeCharity" },
|
|
586
|
+
LinkRole: { "@id": "schema:LinkRole" },
|
|
587
|
+
LiquorStore: { "@id": "schema:LiquorStore" },
|
|
588
|
+
ListItem: { "@id": "schema:ListItem" },
|
|
589
|
+
ListPrice: { "@id": "schema:ListPrice" },
|
|
590
|
+
ListenAction: { "@id": "schema:ListenAction" },
|
|
591
|
+
LiteraryEvent: { "@id": "schema:LiteraryEvent" },
|
|
592
|
+
LiveAlbum: { "@id": "schema:LiveAlbum" },
|
|
593
|
+
LiveBlogPosting: { "@id": "schema:LiveBlogPosting" },
|
|
594
|
+
LivingWithHealthAspect: { "@id": "schema:LivingWithHealthAspect" },
|
|
595
|
+
LoanOrCredit: { "@id": "schema:LoanOrCredit" },
|
|
596
|
+
LocalBusiness: { "@id": "schema:LocalBusiness" },
|
|
597
|
+
LocationFeatureSpecification: { "@id": "schema:LocationFeatureSpecification" },
|
|
598
|
+
LockerDelivery: { "@id": "schema:LockerDelivery" },
|
|
599
|
+
Locksmith: { "@id": "schema:Locksmith" },
|
|
600
|
+
LodgingBusiness: { "@id": "schema:LodgingBusiness" },
|
|
601
|
+
LodgingReservation: { "@id": "schema:LodgingReservation" },
|
|
602
|
+
Longitudinal: { "@id": "schema:Longitudinal" },
|
|
603
|
+
LoseAction: { "@id": "schema:LoseAction" },
|
|
604
|
+
LowCalorieDiet: { "@id": "schema:LowCalorieDiet" },
|
|
605
|
+
LowFatDiet: { "@id": "schema:LowFatDiet" },
|
|
606
|
+
LowLactoseDiet: { "@id": "schema:LowLactoseDiet" },
|
|
607
|
+
LowSaltDiet: { "@id": "schema:LowSaltDiet" },
|
|
608
|
+
Lung: { "@id": "schema:Lung" },
|
|
609
|
+
LymphaticVessel: { "@id": "schema:LymphaticVessel" },
|
|
610
|
+
MRI: { "@id": "schema:MRI" },
|
|
611
|
+
MSRP: { "@id": "schema:MSRP" },
|
|
612
|
+
Male: { "@id": "schema:Male" },
|
|
613
|
+
Manuscript: { "@id": "schema:Manuscript" },
|
|
614
|
+
Map: { "@id": "schema:Map" },
|
|
615
|
+
MapCategoryType: { "@id": "schema:MapCategoryType" },
|
|
616
|
+
MarryAction: { "@id": "schema:MarryAction" },
|
|
617
|
+
Mass: { "@id": "schema:Mass" },
|
|
618
|
+
MathSolver: { "@id": "schema:MathSolver" },
|
|
619
|
+
MaximumDoseSchedule: { "@id": "schema:MaximumDoseSchedule" },
|
|
620
|
+
MayTreatHealthAspect: { "@id": "schema:MayTreatHealthAspect" },
|
|
621
|
+
MeasurementTypeEnumeration: { "@id": "schema:MeasurementTypeEnumeration" },
|
|
622
|
+
MediaGallery: { "@id": "schema:MediaGallery" },
|
|
623
|
+
MediaManipulationRatingEnumeration: { "@id": "schema:MediaManipulationRatingEnumeration" },
|
|
624
|
+
MediaObject: { "@id": "schema:MediaObject" },
|
|
625
|
+
MediaReview: { "@id": "schema:MediaReview" },
|
|
626
|
+
MediaSubscription: { "@id": "schema:MediaSubscription" },
|
|
627
|
+
MedicalAudience: { "@id": "schema:MedicalAudience" },
|
|
628
|
+
MedicalAudienceType: { "@id": "schema:MedicalAudienceType" },
|
|
629
|
+
MedicalBusiness: { "@id": "schema:MedicalBusiness" },
|
|
630
|
+
MedicalCause: { "@id": "schema:MedicalCause" },
|
|
631
|
+
MedicalClinic: { "@id": "schema:MedicalClinic" },
|
|
632
|
+
MedicalCode: { "@id": "schema:MedicalCode" },
|
|
633
|
+
MedicalCondition: { "@id": "schema:MedicalCondition" },
|
|
634
|
+
MedicalConditionStage: { "@id": "schema:MedicalConditionStage" },
|
|
635
|
+
MedicalContraindication: { "@id": "schema:MedicalContraindication" },
|
|
636
|
+
MedicalDevice: { "@id": "schema:MedicalDevice" },
|
|
637
|
+
MedicalDevicePurpose: { "@id": "schema:MedicalDevicePurpose" },
|
|
638
|
+
MedicalEntity: { "@id": "schema:MedicalEntity" },
|
|
639
|
+
MedicalEnumeration: { "@id": "schema:MedicalEnumeration" },
|
|
640
|
+
MedicalEvidenceLevel: { "@id": "schema:MedicalEvidenceLevel" },
|
|
641
|
+
MedicalGuideline: { "@id": "schema:MedicalGuideline" },
|
|
642
|
+
MedicalGuidelineContraindication: { "@id": "schema:MedicalGuidelineContraindication" },
|
|
643
|
+
MedicalGuidelineRecommendation: { "@id": "schema:MedicalGuidelineRecommendation" },
|
|
644
|
+
MedicalImagingTechnique: { "@id": "schema:MedicalImagingTechnique" },
|
|
645
|
+
MedicalIndication: { "@id": "schema:MedicalIndication" },
|
|
646
|
+
MedicalIntangible: { "@id": "schema:MedicalIntangible" },
|
|
647
|
+
MedicalObservationalStudy: { "@id": "schema:MedicalObservationalStudy" },
|
|
648
|
+
MedicalObservationalStudyDesign: { "@id": "schema:MedicalObservationalStudyDesign" },
|
|
649
|
+
MedicalOrganization: { "@id": "schema:MedicalOrganization" },
|
|
650
|
+
MedicalProcedure: { "@id": "schema:MedicalProcedure" },
|
|
651
|
+
MedicalProcedureType: { "@id": "schema:MedicalProcedureType" },
|
|
652
|
+
MedicalResearcher: { "@id": "schema:MedicalResearcher" },
|
|
653
|
+
MedicalRiskCalculator: { "@id": "schema:MedicalRiskCalculator" },
|
|
654
|
+
MedicalRiskEstimator: { "@id": "schema:MedicalRiskEstimator" },
|
|
655
|
+
MedicalRiskFactor: { "@id": "schema:MedicalRiskFactor" },
|
|
656
|
+
MedicalRiskScore: { "@id": "schema:MedicalRiskScore" },
|
|
657
|
+
MedicalScholarlyArticle: { "@id": "schema:MedicalScholarlyArticle" },
|
|
658
|
+
MedicalSign: { "@id": "schema:MedicalSign" },
|
|
659
|
+
MedicalSignOrSymptom: { "@id": "schema:MedicalSignOrSymptom" },
|
|
660
|
+
MedicalSpecialty: { "@id": "schema:MedicalSpecialty" },
|
|
661
|
+
MedicalStudy: { "@id": "schema:MedicalStudy" },
|
|
662
|
+
MedicalStudyStatus: { "@id": "schema:MedicalStudyStatus" },
|
|
663
|
+
MedicalSymptom: { "@id": "schema:MedicalSymptom" },
|
|
664
|
+
MedicalTest: { "@id": "schema:MedicalTest" },
|
|
665
|
+
MedicalTestPanel: { "@id": "schema:MedicalTestPanel" },
|
|
666
|
+
MedicalTherapy: { "@id": "schema:MedicalTherapy" },
|
|
667
|
+
MedicalTrial: { "@id": "schema:MedicalTrial" },
|
|
668
|
+
MedicalTrialDesign: { "@id": "schema:MedicalTrialDesign" },
|
|
669
|
+
MedicalWebPage: { "@id": "schema:MedicalWebPage" },
|
|
670
|
+
MedicineSystem: { "@id": "schema:MedicineSystem" },
|
|
671
|
+
MeetingRoom: { "@id": "schema:MeetingRoom" },
|
|
672
|
+
MensClothingStore: { "@id": "schema:MensClothingStore" },
|
|
673
|
+
Menu: { "@id": "schema:Menu" },
|
|
674
|
+
MenuItem: { "@id": "schema:MenuItem" },
|
|
675
|
+
MenuSection: { "@id": "schema:MenuSection" },
|
|
676
|
+
MerchantReturnEnumeration: { "@id": "schema:MerchantReturnEnumeration" },
|
|
677
|
+
MerchantReturnFiniteReturnWindow: { "@id": "schema:MerchantReturnFiniteReturnWindow" },
|
|
678
|
+
MerchantReturnNotPermitted: { "@id": "schema:MerchantReturnNotPermitted" },
|
|
679
|
+
MerchantReturnPolicy: { "@id": "schema:MerchantReturnPolicy" },
|
|
680
|
+
MerchantReturnUnlimitedWindow: { "@id": "schema:MerchantReturnUnlimitedWindow" },
|
|
681
|
+
MerchantReturnUnspecified: { "@id": "schema:MerchantReturnUnspecified" },
|
|
682
|
+
Message: { "@id": "schema:Message" },
|
|
683
|
+
MiddleSchool: { "@id": "schema:MiddleSchool" },
|
|
684
|
+
Midwifery: { "@id": "schema:Midwifery" },
|
|
685
|
+
MinimumAdvertisedPrice: { "@id": "schema:MinimumAdvertisedPrice" },
|
|
686
|
+
MisconceptionsHealthAspect: { "@id": "schema:MisconceptionsHealthAspect" },
|
|
687
|
+
MixedEventAttendanceMode: { "@id": "schema:MixedEventAttendanceMode" },
|
|
688
|
+
MixtapeAlbum: { "@id": "schema:MixtapeAlbum" },
|
|
689
|
+
MobileApplication: { "@id": "schema:MobileApplication" },
|
|
690
|
+
MobilePhoneStore: { "@id": "schema:MobilePhoneStore" },
|
|
691
|
+
Monday: { "@id": "schema:Monday" },
|
|
692
|
+
MonetaryAmount: { "@id": "schema:MonetaryAmount" },
|
|
693
|
+
MonetaryAmountDistribution: { "@id": "schema:MonetaryAmountDistribution" },
|
|
694
|
+
MonetaryGrant: { "@id": "schema:MonetaryGrant" },
|
|
695
|
+
MoneyTransfer: { "@id": "schema:MoneyTransfer" },
|
|
696
|
+
MortgageLoan: { "@id": "schema:MortgageLoan" },
|
|
697
|
+
Mosque: { "@id": "schema:Mosque" },
|
|
698
|
+
Motel: { "@id": "schema:Motel" },
|
|
699
|
+
Motorcycle: { "@id": "schema:Motorcycle" },
|
|
700
|
+
MotorcycleDealer: { "@id": "schema:MotorcycleDealer" },
|
|
701
|
+
MotorcycleRepair: { "@id": "schema:MotorcycleRepair" },
|
|
702
|
+
MotorizedBicycle: { "@id": "schema:MotorizedBicycle" },
|
|
703
|
+
Mountain: { "@id": "schema:Mountain" },
|
|
704
|
+
MoveAction: { "@id": "schema:MoveAction" },
|
|
705
|
+
Movie: { "@id": "schema:Movie" },
|
|
706
|
+
MovieClip: { "@id": "schema:MovieClip" },
|
|
707
|
+
MovieRentalStore: { "@id": "schema:MovieRentalStore" },
|
|
708
|
+
MovieSeries: { "@id": "schema:MovieSeries" },
|
|
709
|
+
MovieTheater: { "@id": "schema:MovieTheater" },
|
|
710
|
+
MovingCompany: { "@id": "schema:MovingCompany" },
|
|
711
|
+
MultiCenterTrial: { "@id": "schema:MultiCenterTrial" },
|
|
712
|
+
MultiPlayer: { "@id": "schema:MultiPlayer" },
|
|
713
|
+
MulticellularParasite: { "@id": "schema:MulticellularParasite" },
|
|
714
|
+
Muscle: { "@id": "schema:Muscle" },
|
|
715
|
+
Musculoskeletal: { "@id": "schema:Musculoskeletal" },
|
|
716
|
+
MusculoskeletalExam: { "@id": "schema:MusculoskeletalExam" },
|
|
717
|
+
Museum: { "@id": "schema:Museum" },
|
|
718
|
+
MusicAlbum: { "@id": "schema:MusicAlbum" },
|
|
719
|
+
MusicAlbumProductionType: { "@id": "schema:MusicAlbumProductionType" },
|
|
720
|
+
MusicAlbumReleaseType: { "@id": "schema:MusicAlbumReleaseType" },
|
|
721
|
+
MusicComposition: { "@id": "schema:MusicComposition" },
|
|
722
|
+
MusicEvent: { "@id": "schema:MusicEvent" },
|
|
723
|
+
MusicGroup: { "@id": "schema:MusicGroup" },
|
|
724
|
+
MusicPlaylist: { "@id": "schema:MusicPlaylist" },
|
|
725
|
+
MusicRecording: { "@id": "schema:MusicRecording" },
|
|
726
|
+
MusicRelease: { "@id": "schema:MusicRelease" },
|
|
727
|
+
MusicReleaseFormatType: { "@id": "schema:MusicReleaseFormatType" },
|
|
728
|
+
MusicStore: { "@id": "schema:MusicStore" },
|
|
729
|
+
MusicVenue: { "@id": "schema:MusicVenue" },
|
|
730
|
+
MusicVideoObject: { "@id": "schema:MusicVideoObject" },
|
|
731
|
+
NGO: { "@id": "schema:NGO" },
|
|
732
|
+
NLNonprofitType: { "@id": "schema:NLNonprofitType" },
|
|
733
|
+
NailSalon: { "@id": "schema:NailSalon" },
|
|
734
|
+
Neck: { "@id": "schema:Neck" },
|
|
735
|
+
Nerve: { "@id": "schema:Nerve" },
|
|
736
|
+
Neuro: { "@id": "schema:Neuro" },
|
|
737
|
+
Neurologic: { "@id": "schema:Neurologic" },
|
|
738
|
+
NewCondition: { "@id": "schema:NewCondition" },
|
|
739
|
+
NewsArticle: { "@id": "schema:NewsArticle" },
|
|
740
|
+
NewsMediaOrganization: { "@id": "schema:NewsMediaOrganization" },
|
|
741
|
+
Newspaper: { "@id": "schema:Newspaper" },
|
|
742
|
+
NightClub: { "@id": "schema:NightClub" },
|
|
743
|
+
NoninvasiveProcedure: { "@id": "schema:NoninvasiveProcedure" },
|
|
744
|
+
Nonprofit501a: { "@id": "schema:Nonprofit501a" },
|
|
745
|
+
Nonprofit501c1: { "@id": "schema:Nonprofit501c1" },
|
|
746
|
+
Nonprofit501c10: { "@id": "schema:Nonprofit501c10" },
|
|
747
|
+
Nonprofit501c11: { "@id": "schema:Nonprofit501c11" },
|
|
748
|
+
Nonprofit501c12: { "@id": "schema:Nonprofit501c12" },
|
|
749
|
+
Nonprofit501c13: { "@id": "schema:Nonprofit501c13" },
|
|
750
|
+
Nonprofit501c14: { "@id": "schema:Nonprofit501c14" },
|
|
751
|
+
Nonprofit501c15: { "@id": "schema:Nonprofit501c15" },
|
|
752
|
+
Nonprofit501c16: { "@id": "schema:Nonprofit501c16" },
|
|
753
|
+
Nonprofit501c17: { "@id": "schema:Nonprofit501c17" },
|
|
754
|
+
Nonprofit501c18: { "@id": "schema:Nonprofit501c18" },
|
|
755
|
+
Nonprofit501c19: { "@id": "schema:Nonprofit501c19" },
|
|
756
|
+
Nonprofit501c2: { "@id": "schema:Nonprofit501c2" },
|
|
757
|
+
Nonprofit501c20: { "@id": "schema:Nonprofit501c20" },
|
|
758
|
+
Nonprofit501c21: { "@id": "schema:Nonprofit501c21" },
|
|
759
|
+
Nonprofit501c22: { "@id": "schema:Nonprofit501c22" },
|
|
760
|
+
Nonprofit501c23: { "@id": "schema:Nonprofit501c23" },
|
|
761
|
+
Nonprofit501c24: { "@id": "schema:Nonprofit501c24" },
|
|
762
|
+
Nonprofit501c25: { "@id": "schema:Nonprofit501c25" },
|
|
763
|
+
Nonprofit501c26: { "@id": "schema:Nonprofit501c26" },
|
|
764
|
+
Nonprofit501c27: { "@id": "schema:Nonprofit501c27" },
|
|
765
|
+
Nonprofit501c28: { "@id": "schema:Nonprofit501c28" },
|
|
766
|
+
Nonprofit501c3: { "@id": "schema:Nonprofit501c3" },
|
|
767
|
+
Nonprofit501c4: { "@id": "schema:Nonprofit501c4" },
|
|
768
|
+
Nonprofit501c5: { "@id": "schema:Nonprofit501c5" },
|
|
769
|
+
Nonprofit501c6: { "@id": "schema:Nonprofit501c6" },
|
|
770
|
+
Nonprofit501c7: { "@id": "schema:Nonprofit501c7" },
|
|
771
|
+
Nonprofit501c8: { "@id": "schema:Nonprofit501c8" },
|
|
772
|
+
Nonprofit501c9: { "@id": "schema:Nonprofit501c9" },
|
|
773
|
+
Nonprofit501d: { "@id": "schema:Nonprofit501d" },
|
|
774
|
+
Nonprofit501e: { "@id": "schema:Nonprofit501e" },
|
|
775
|
+
Nonprofit501f: { "@id": "schema:Nonprofit501f" },
|
|
776
|
+
Nonprofit501k: { "@id": "schema:Nonprofit501k" },
|
|
777
|
+
Nonprofit501n: { "@id": "schema:Nonprofit501n" },
|
|
778
|
+
Nonprofit501q: { "@id": "schema:Nonprofit501q" },
|
|
779
|
+
Nonprofit527: { "@id": "schema:Nonprofit527" },
|
|
780
|
+
NonprofitANBI: { "@id": "schema:NonprofitANBI" },
|
|
781
|
+
NonprofitSBBI: { "@id": "schema:NonprofitSBBI" },
|
|
782
|
+
NonprofitType: { "@id": "schema:NonprofitType" },
|
|
783
|
+
Nose: { "@id": "schema:Nose" },
|
|
784
|
+
NotInForce: { "@id": "schema:NotInForce" },
|
|
785
|
+
NotYetRecruiting: { "@id": "schema:NotYetRecruiting" },
|
|
786
|
+
Notary: { "@id": "schema:Notary" },
|
|
787
|
+
NoteDigitalDocument: { "@id": "schema:NoteDigitalDocument" },
|
|
788
|
+
Number: { "@id": "schema:Number" },
|
|
789
|
+
Nursing: { "@id": "schema:Nursing" },
|
|
790
|
+
NutritionInformation: { "@id": "schema:NutritionInformation" },
|
|
791
|
+
OTC: { "@id": "schema:OTC" },
|
|
792
|
+
Observation: { "@id": "schema:Observation" },
|
|
793
|
+
Observational: { "@id": "schema:Observational" },
|
|
794
|
+
Obstetric: { "@id": "schema:Obstetric" },
|
|
795
|
+
Occupation: { "@id": "schema:Occupation" },
|
|
796
|
+
OccupationalActivity: { "@id": "schema:OccupationalActivity" },
|
|
797
|
+
OccupationalExperienceRequirements: { "@id": "schema:OccupationalExperienceRequirements" },
|
|
798
|
+
OccupationalTherapy: { "@id": "schema:OccupationalTherapy" },
|
|
799
|
+
OceanBodyOfWater: { "@id": "schema:OceanBodyOfWater" },
|
|
800
|
+
Offer: { "@id": "schema:Offer" },
|
|
801
|
+
OfferCatalog: { "@id": "schema:OfferCatalog" },
|
|
802
|
+
OfferForLease: { "@id": "schema:OfferForLease" },
|
|
803
|
+
OfferForPurchase: { "@id": "schema:OfferForPurchase" },
|
|
804
|
+
OfferItemCondition: { "@id": "schema:OfferItemCondition" },
|
|
805
|
+
OfferShippingDetails: { "@id": "schema:OfferShippingDetails" },
|
|
806
|
+
OfficeEquipmentStore: { "@id": "schema:OfficeEquipmentStore" },
|
|
807
|
+
OfficialLegalValue: { "@id": "schema:OfficialLegalValue" },
|
|
808
|
+
OfflineEventAttendanceMode: { "@id": "schema:OfflineEventAttendanceMode" },
|
|
809
|
+
OfflinePermanently: { "@id": "schema:OfflinePermanently" },
|
|
810
|
+
OfflineTemporarily: { "@id": "schema:OfflineTemporarily" },
|
|
811
|
+
OnDemandEvent: { "@id": "schema:OnDemandEvent" },
|
|
812
|
+
OnSitePickup: { "@id": "schema:OnSitePickup" },
|
|
813
|
+
Oncologic: { "@id": "schema:Oncologic" },
|
|
814
|
+
OneTimePayments: { "@id": "schema:OneTimePayments" },
|
|
815
|
+
Online: { "@id": "schema:Online" },
|
|
816
|
+
OnlineEventAttendanceMode: { "@id": "schema:OnlineEventAttendanceMode" },
|
|
817
|
+
OnlineFull: { "@id": "schema:OnlineFull" },
|
|
818
|
+
OnlineOnly: { "@id": "schema:OnlineOnly" },
|
|
819
|
+
OpenTrial: { "@id": "schema:OpenTrial" },
|
|
820
|
+
OpeningHoursSpecification: { "@id": "schema:OpeningHoursSpecification" },
|
|
821
|
+
OpinionNewsArticle: { "@id": "schema:OpinionNewsArticle" },
|
|
822
|
+
Optician: { "@id": "schema:Optician" },
|
|
823
|
+
Optometric: { "@id": "schema:Optometric" },
|
|
824
|
+
Order: { "@id": "schema:Order" },
|
|
825
|
+
OrderAction: { "@id": "schema:OrderAction" },
|
|
826
|
+
OrderCancelled: { "@id": "schema:OrderCancelled" },
|
|
827
|
+
OrderDelivered: { "@id": "schema:OrderDelivered" },
|
|
828
|
+
OrderInTransit: { "@id": "schema:OrderInTransit" },
|
|
829
|
+
OrderItem: { "@id": "schema:OrderItem" },
|
|
830
|
+
OrderPaymentDue: { "@id": "schema:OrderPaymentDue" },
|
|
831
|
+
OrderPickupAvailable: { "@id": "schema:OrderPickupAvailable" },
|
|
832
|
+
OrderProblem: { "@id": "schema:OrderProblem" },
|
|
833
|
+
OrderProcessing: { "@id": "schema:OrderProcessing" },
|
|
834
|
+
OrderReturned: { "@id": "schema:OrderReturned" },
|
|
835
|
+
OrderStatus: { "@id": "schema:OrderStatus" },
|
|
836
|
+
Organization: { "@id": "schema:Organization" },
|
|
837
|
+
OrganizationRole: { "@id": "schema:OrganizationRole" },
|
|
838
|
+
OrganizeAction: { "@id": "schema:OrganizeAction" },
|
|
839
|
+
OriginalMediaContent: { "@id": "schema:OriginalMediaContent" },
|
|
840
|
+
OriginalShippingFees: { "@id": "schema:OriginalShippingFees" },
|
|
841
|
+
Osteopathic: { "@id": "schema:Osteopathic" },
|
|
842
|
+
Otolaryngologic: { "@id": "schema:Otolaryngologic" },
|
|
843
|
+
OutOfStock: { "@id": "schema:OutOfStock" },
|
|
844
|
+
OutletStore: { "@id": "schema:OutletStore" },
|
|
845
|
+
OverviewHealthAspect: { "@id": "schema:OverviewHealthAspect" },
|
|
846
|
+
OwnershipInfo: { "@id": "schema:OwnershipInfo" },
|
|
847
|
+
PET: { "@id": "schema:PET" },
|
|
848
|
+
PaidLeave: { "@id": "schema:PaidLeave" },
|
|
849
|
+
PaintAction: { "@id": "schema:PaintAction" },
|
|
850
|
+
Painting: { "@id": "schema:Painting" },
|
|
851
|
+
PalliativeProcedure: { "@id": "schema:PalliativeProcedure" },
|
|
852
|
+
Paperback: { "@id": "schema:Paperback" },
|
|
853
|
+
ParcelDelivery: { "@id": "schema:ParcelDelivery" },
|
|
854
|
+
ParcelService: { "@id": "schema:ParcelService" },
|
|
855
|
+
ParentAudience: { "@id": "schema:ParentAudience" },
|
|
856
|
+
ParentalSupport: { "@id": "schema:ParentalSupport" },
|
|
857
|
+
Park: { "@id": "schema:Park" },
|
|
858
|
+
ParkingFacility: { "@id": "schema:ParkingFacility" },
|
|
859
|
+
ParkingMap: { "@id": "schema:ParkingMap" },
|
|
860
|
+
PartiallyInForce: { "@id": "schema:PartiallyInForce" },
|
|
861
|
+
Pathology: { "@id": "schema:Pathology" },
|
|
862
|
+
PathologyTest: { "@id": "schema:PathologyTest" },
|
|
863
|
+
Patient: { "@id": "schema:Patient" },
|
|
864
|
+
PatientExperienceHealthAspect: { "@id": "schema:PatientExperienceHealthAspect" },
|
|
865
|
+
PawnShop: { "@id": "schema:PawnShop" },
|
|
866
|
+
PayAction: { "@id": "schema:PayAction" },
|
|
867
|
+
PaymentAutomaticallyApplied: { "@id": "schema:PaymentAutomaticallyApplied" },
|
|
868
|
+
PaymentCard: { "@id": "schema:PaymentCard" },
|
|
869
|
+
PaymentChargeSpecification: { "@id": "schema:PaymentChargeSpecification" },
|
|
870
|
+
PaymentComplete: { "@id": "schema:PaymentComplete" },
|
|
871
|
+
PaymentDeclined: { "@id": "schema:PaymentDeclined" },
|
|
872
|
+
PaymentDue: { "@id": "schema:PaymentDue" },
|
|
873
|
+
PaymentMethod: { "@id": "schema:PaymentMethod" },
|
|
874
|
+
PaymentPastDue: { "@id": "schema:PaymentPastDue" },
|
|
875
|
+
PaymentService: { "@id": "schema:PaymentService" },
|
|
876
|
+
PaymentStatusType: { "@id": "schema:PaymentStatusType" },
|
|
877
|
+
Pediatric: { "@id": "schema:Pediatric" },
|
|
878
|
+
PeopleAudience: { "@id": "schema:PeopleAudience" },
|
|
879
|
+
PercutaneousProcedure: { "@id": "schema:PercutaneousProcedure" },
|
|
880
|
+
PerformAction: { "@id": "schema:PerformAction" },
|
|
881
|
+
PerformanceRole: { "@id": "schema:PerformanceRole" },
|
|
882
|
+
PerformingArtsTheater: { "@id": "schema:PerformingArtsTheater" },
|
|
883
|
+
PerformingGroup: { "@id": "schema:PerformingGroup" },
|
|
884
|
+
Periodical: { "@id": "schema:Periodical" },
|
|
885
|
+
Permit: { "@id": "schema:Permit" },
|
|
886
|
+
Person: { "@id": "schema:Person" },
|
|
887
|
+
PetStore: { "@id": "schema:PetStore" },
|
|
888
|
+
Pharmacy: { "@id": "schema:Pharmacy" },
|
|
889
|
+
PharmacySpecialty: { "@id": "schema:PharmacySpecialty" },
|
|
890
|
+
Photograph: { "@id": "schema:Photograph" },
|
|
891
|
+
PhotographAction: { "@id": "schema:PhotographAction" },
|
|
892
|
+
PhysicalActivity: { "@id": "schema:PhysicalActivity" },
|
|
893
|
+
PhysicalActivityCategory: { "@id": "schema:PhysicalActivityCategory" },
|
|
894
|
+
PhysicalExam: { "@id": "schema:PhysicalExam" },
|
|
895
|
+
PhysicalTherapy: { "@id": "schema:PhysicalTherapy" },
|
|
896
|
+
Physician: { "@id": "schema:Physician" },
|
|
897
|
+
Physiotherapy: { "@id": "schema:Physiotherapy" },
|
|
898
|
+
Place: { "@id": "schema:Place" },
|
|
899
|
+
PlaceOfWorship: { "@id": "schema:PlaceOfWorship" },
|
|
900
|
+
PlaceboControlledTrial: { "@id": "schema:PlaceboControlledTrial" },
|
|
901
|
+
PlanAction: { "@id": "schema:PlanAction" },
|
|
902
|
+
PlasticSurgery: { "@id": "schema:PlasticSurgery" },
|
|
903
|
+
Play: { "@id": "schema:Play" },
|
|
904
|
+
PlayAction: { "@id": "schema:PlayAction" },
|
|
905
|
+
Playground: { "@id": "schema:Playground" },
|
|
906
|
+
Plumber: { "@id": "schema:Plumber" },
|
|
907
|
+
PodcastEpisode: { "@id": "schema:PodcastEpisode" },
|
|
908
|
+
PodcastSeason: { "@id": "schema:PodcastSeason" },
|
|
909
|
+
PodcastSeries: { "@id": "schema:PodcastSeries" },
|
|
910
|
+
Podiatric: { "@id": "schema:Podiatric" },
|
|
911
|
+
PoliceStation: { "@id": "schema:PoliceStation" },
|
|
912
|
+
Pond: { "@id": "schema:Pond" },
|
|
913
|
+
PostOffice: { "@id": "schema:PostOffice" },
|
|
914
|
+
PostalAddress: { "@id": "schema:PostalAddress" },
|
|
915
|
+
PostalCodeRangeSpecification: { "@id": "schema:PostalCodeRangeSpecification" },
|
|
916
|
+
Poster: { "@id": "schema:Poster" },
|
|
917
|
+
PotentialActionStatus: { "@id": "schema:PotentialActionStatus" },
|
|
918
|
+
PreOrder: { "@id": "schema:PreOrder" },
|
|
919
|
+
PreOrderAction: { "@id": "schema:PreOrderAction" },
|
|
920
|
+
PreSale: { "@id": "schema:PreSale" },
|
|
921
|
+
PregnancyHealthAspect: { "@id": "schema:PregnancyHealthAspect" },
|
|
922
|
+
PrependAction: { "@id": "schema:PrependAction" },
|
|
923
|
+
Preschool: { "@id": "schema:Preschool" },
|
|
924
|
+
PrescriptionOnly: { "@id": "schema:PrescriptionOnly" },
|
|
925
|
+
PresentationDigitalDocument: { "@id": "schema:PresentationDigitalDocument" },
|
|
926
|
+
PreventionHealthAspect: { "@id": "schema:PreventionHealthAspect" },
|
|
927
|
+
PreventionIndication: { "@id": "schema:PreventionIndication" },
|
|
928
|
+
PriceComponentTypeEnumeration: { "@id": "schema:PriceComponentTypeEnumeration" },
|
|
929
|
+
PriceSpecification: { "@id": "schema:PriceSpecification" },
|
|
930
|
+
PriceTypeEnumeration: { "@id": "schema:PriceTypeEnumeration" },
|
|
931
|
+
PrimaryCare: { "@id": "schema:PrimaryCare" },
|
|
932
|
+
Prion: { "@id": "schema:Prion" },
|
|
933
|
+
Product: { "@id": "schema:Product" },
|
|
934
|
+
ProductCollection: { "@id": "schema:ProductCollection" },
|
|
935
|
+
ProductGroup: { "@id": "schema:ProductGroup" },
|
|
936
|
+
ProductModel: { "@id": "schema:ProductModel" },
|
|
937
|
+
ProductReturnEnumeration: { "@id": "schema:ProductReturnEnumeration" },
|
|
938
|
+
ProductReturnFiniteReturnWindow: { "@id": "schema:ProductReturnFiniteReturnWindow" },
|
|
939
|
+
ProductReturnNotPermitted: { "@id": "schema:ProductReturnNotPermitted" },
|
|
940
|
+
ProductReturnPolicy: { "@id": "schema:ProductReturnPolicy" },
|
|
941
|
+
ProductReturnUnlimitedWindow: { "@id": "schema:ProductReturnUnlimitedWindow" },
|
|
942
|
+
ProductReturnUnspecified: { "@id": "schema:ProductReturnUnspecified" },
|
|
943
|
+
ProfessionalService: { "@id": "schema:ProfessionalService" },
|
|
944
|
+
ProfilePage: { "@id": "schema:ProfilePage" },
|
|
945
|
+
PrognosisHealthAspect: { "@id": "schema:PrognosisHealthAspect" },
|
|
946
|
+
ProgramMembership: { "@id": "schema:ProgramMembership" },
|
|
947
|
+
Project: { "@id": "schema:Project" },
|
|
948
|
+
PronounceableText: { "@id": "schema:PronounceableText" },
|
|
949
|
+
Property: { "@id": "schema:Property" },
|
|
950
|
+
PropertyValue: { "@id": "schema:PropertyValue" },
|
|
951
|
+
PropertyValueSpecification: { "@id": "schema:PropertyValueSpecification" },
|
|
952
|
+
Protozoa: { "@id": "schema:Protozoa" },
|
|
953
|
+
Psychiatric: { "@id": "schema:Psychiatric" },
|
|
954
|
+
PsychologicalTreatment: { "@id": "schema:PsychologicalTreatment" },
|
|
955
|
+
PublicHealth: { "@id": "schema:PublicHealth" },
|
|
956
|
+
PublicHolidays: { "@id": "schema:PublicHolidays" },
|
|
957
|
+
PublicSwimmingPool: { "@id": "schema:PublicSwimmingPool" },
|
|
958
|
+
PublicToilet: { "@id": "schema:PublicToilet" },
|
|
959
|
+
PublicationEvent: { "@id": "schema:PublicationEvent" },
|
|
960
|
+
PublicationIssue: { "@id": "schema:PublicationIssue" },
|
|
961
|
+
PublicationVolume: { "@id": "schema:PublicationVolume" },
|
|
962
|
+
Pulmonary: { "@id": "schema:Pulmonary" },
|
|
963
|
+
QAPage: { "@id": "schema:QAPage" },
|
|
964
|
+
QualitativeValue: { "@id": "schema:QualitativeValue" },
|
|
965
|
+
QuantitativeValue: { "@id": "schema:QuantitativeValue" },
|
|
966
|
+
QuantitativeValueDistribution: { "@id": "schema:QuantitativeValueDistribution" },
|
|
967
|
+
Quantity: { "@id": "schema:Quantity" },
|
|
968
|
+
Question: { "@id": "schema:Question" },
|
|
969
|
+
Quiz: { "@id": "schema:Quiz" },
|
|
970
|
+
Quotation: { "@id": "schema:Quotation" },
|
|
971
|
+
QuoteAction: { "@id": "schema:QuoteAction" },
|
|
972
|
+
RVPark: { "@id": "schema:RVPark" },
|
|
973
|
+
RadiationTherapy: { "@id": "schema:RadiationTherapy" },
|
|
974
|
+
RadioBroadcastService: { "@id": "schema:RadioBroadcastService" },
|
|
975
|
+
RadioChannel: { "@id": "schema:RadioChannel" },
|
|
976
|
+
RadioClip: { "@id": "schema:RadioClip" },
|
|
977
|
+
RadioEpisode: { "@id": "schema:RadioEpisode" },
|
|
978
|
+
RadioSeason: { "@id": "schema:RadioSeason" },
|
|
979
|
+
RadioSeries: { "@id": "schema:RadioSeries" },
|
|
980
|
+
RadioStation: { "@id": "schema:RadioStation" },
|
|
981
|
+
Radiography: { "@id": "schema:Radiography" },
|
|
982
|
+
RandomizedTrial: { "@id": "schema:RandomizedTrial" },
|
|
983
|
+
Rating: { "@id": "schema:Rating" },
|
|
984
|
+
ReactAction: { "@id": "schema:ReactAction" },
|
|
985
|
+
ReadAction: { "@id": "schema:ReadAction" },
|
|
986
|
+
ReadPermission: { "@id": "schema:ReadPermission" },
|
|
987
|
+
RealEstateAgent: { "@id": "schema:RealEstateAgent" },
|
|
988
|
+
RealEstateListing: { "@id": "schema:RealEstateListing" },
|
|
989
|
+
RearWheelDriveConfiguration: { "@id": "schema:RearWheelDriveConfiguration" },
|
|
990
|
+
ReceiveAction: { "@id": "schema:ReceiveAction" },
|
|
991
|
+
Recipe: { "@id": "schema:Recipe" },
|
|
992
|
+
Recommendation: { "@id": "schema:Recommendation" },
|
|
993
|
+
RecommendedDoseSchedule: { "@id": "schema:RecommendedDoseSchedule" },
|
|
994
|
+
Recruiting: { "@id": "schema:Recruiting" },
|
|
995
|
+
RecyclingCenter: { "@id": "schema:RecyclingCenter" },
|
|
996
|
+
RefundTypeEnumeration: { "@id": "schema:RefundTypeEnumeration" },
|
|
997
|
+
RefurbishedCondition: { "@id": "schema:RefurbishedCondition" },
|
|
998
|
+
RegisterAction: { "@id": "schema:RegisterAction" },
|
|
999
|
+
Registry: { "@id": "schema:Registry" },
|
|
1000
|
+
ReimbursementCap: { "@id": "schema:ReimbursementCap" },
|
|
1001
|
+
RejectAction: { "@id": "schema:RejectAction" },
|
|
1002
|
+
RelatedTopicsHealthAspect: { "@id": "schema:RelatedTopicsHealthAspect" },
|
|
1003
|
+
RemixAlbum: { "@id": "schema:RemixAlbum" },
|
|
1004
|
+
Renal: { "@id": "schema:Renal" },
|
|
1005
|
+
RentAction: { "@id": "schema:RentAction" },
|
|
1006
|
+
RentalCarReservation: { "@id": "schema:RentalCarReservation" },
|
|
1007
|
+
RentalVehicleUsage: { "@id": "schema:RentalVehicleUsage" },
|
|
1008
|
+
RepaymentSpecification: { "@id": "schema:RepaymentSpecification" },
|
|
1009
|
+
ReplaceAction: { "@id": "schema:ReplaceAction" },
|
|
1010
|
+
ReplyAction: { "@id": "schema:ReplyAction" },
|
|
1011
|
+
Report: { "@id": "schema:Report" },
|
|
1012
|
+
ReportageNewsArticle: { "@id": "schema:ReportageNewsArticle" },
|
|
1013
|
+
ReportedDoseSchedule: { "@id": "schema:ReportedDoseSchedule" },
|
|
1014
|
+
ResearchProject: { "@id": "schema:ResearchProject" },
|
|
1015
|
+
Researcher: { "@id": "schema:Researcher" },
|
|
1016
|
+
Reservation: { "@id": "schema:Reservation" },
|
|
1017
|
+
ReservationCancelled: { "@id": "schema:ReservationCancelled" },
|
|
1018
|
+
ReservationConfirmed: { "@id": "schema:ReservationConfirmed" },
|
|
1019
|
+
ReservationHold: { "@id": "schema:ReservationHold" },
|
|
1020
|
+
ReservationPackage: { "@id": "schema:ReservationPackage" },
|
|
1021
|
+
ReservationPending: { "@id": "schema:ReservationPending" },
|
|
1022
|
+
ReservationStatusType: { "@id": "schema:ReservationStatusType" },
|
|
1023
|
+
ReserveAction: { "@id": "schema:ReserveAction" },
|
|
1024
|
+
Reservoir: { "@id": "schema:Reservoir" },
|
|
1025
|
+
Residence: { "@id": "schema:Residence" },
|
|
1026
|
+
Resort: { "@id": "schema:Resort" },
|
|
1027
|
+
RespiratoryTherapy: { "@id": "schema:RespiratoryTherapy" },
|
|
1028
|
+
Restaurant: { "@id": "schema:Restaurant" },
|
|
1029
|
+
RestockingFees: { "@id": "schema:RestockingFees" },
|
|
1030
|
+
RestrictedDiet: { "@id": "schema:RestrictedDiet" },
|
|
1031
|
+
ResultsAvailable: { "@id": "schema:ResultsAvailable" },
|
|
1032
|
+
ResultsNotAvailable: { "@id": "schema:ResultsNotAvailable" },
|
|
1033
|
+
ResumeAction: { "@id": "schema:ResumeAction" },
|
|
1034
|
+
Retail: { "@id": "schema:Retail" },
|
|
1035
|
+
ReturnAction: { "@id": "schema:ReturnAction" },
|
|
1036
|
+
ReturnFeesEnumeration: { "@id": "schema:ReturnFeesEnumeration" },
|
|
1037
|
+
ReturnShippingFees: { "@id": "schema:ReturnShippingFees" },
|
|
1038
|
+
Review: { "@id": "schema:Review" },
|
|
1039
|
+
ReviewAction: { "@id": "schema:ReviewAction" },
|
|
1040
|
+
ReviewNewsArticle: { "@id": "schema:ReviewNewsArticle" },
|
|
1041
|
+
Rheumatologic: { "@id": "schema:Rheumatologic" },
|
|
1042
|
+
RightHandDriving: { "@id": "schema:RightHandDriving" },
|
|
1043
|
+
RisksOrComplicationsHealthAspect: { "@id": "schema:RisksOrComplicationsHealthAspect" },
|
|
1044
|
+
RiverBodyOfWater: { "@id": "schema:RiverBodyOfWater" },
|
|
1045
|
+
Role: { "@id": "schema:Role" },
|
|
1046
|
+
RoofingContractor: { "@id": "schema:RoofingContractor" },
|
|
1047
|
+
Room: { "@id": "schema:Room" },
|
|
1048
|
+
RsvpAction: { "@id": "schema:RsvpAction" },
|
|
1049
|
+
RsvpResponseMaybe: { "@id": "schema:RsvpResponseMaybe" },
|
|
1050
|
+
RsvpResponseNo: { "@id": "schema:RsvpResponseNo" },
|
|
1051
|
+
RsvpResponseType: { "@id": "schema:RsvpResponseType" },
|
|
1052
|
+
RsvpResponseYes: { "@id": "schema:RsvpResponseYes" },
|
|
1053
|
+
SRP: { "@id": "schema:SRP" },
|
|
1054
|
+
SafetyHealthAspect: { "@id": "schema:SafetyHealthAspect" },
|
|
1055
|
+
SaleEvent: { "@id": "schema:SaleEvent" },
|
|
1056
|
+
SalePrice: { "@id": "schema:SalePrice" },
|
|
1057
|
+
SatireOrParodyContent: { "@id": "schema:SatireOrParodyContent" },
|
|
1058
|
+
SatiricalArticle: { "@id": "schema:SatiricalArticle" },
|
|
1059
|
+
Saturday: { "@id": "schema:Saturday" },
|
|
1060
|
+
Schedule: { "@id": "schema:Schedule" },
|
|
1061
|
+
ScheduleAction: { "@id": "schema:ScheduleAction" },
|
|
1062
|
+
ScholarlyArticle: { "@id": "schema:ScholarlyArticle" },
|
|
1063
|
+
School: { "@id": "schema:School" },
|
|
1064
|
+
SchoolDistrict: { "@id": "schema:SchoolDistrict" },
|
|
1065
|
+
ScreeningEvent: { "@id": "schema:ScreeningEvent" },
|
|
1066
|
+
ScreeningHealthAspect: { "@id": "schema:ScreeningHealthAspect" },
|
|
1067
|
+
Sculpture: { "@id": "schema:Sculpture" },
|
|
1068
|
+
SeaBodyOfWater: { "@id": "schema:SeaBodyOfWater" },
|
|
1069
|
+
SearchAction: { "@id": "schema:SearchAction" },
|
|
1070
|
+
SearchResultsPage: { "@id": "schema:SearchResultsPage" },
|
|
1071
|
+
Season: { "@id": "schema:Season" },
|
|
1072
|
+
Seat: { "@id": "schema:Seat" },
|
|
1073
|
+
SeatingMap: { "@id": "schema:SeatingMap" },
|
|
1074
|
+
SeeDoctorHealthAspect: { "@id": "schema:SeeDoctorHealthAspect" },
|
|
1075
|
+
SeekToAction: { "@id": "schema:SeekToAction" },
|
|
1076
|
+
SelfCareHealthAspect: { "@id": "schema:SelfCareHealthAspect" },
|
|
1077
|
+
SelfStorage: { "@id": "schema:SelfStorage" },
|
|
1078
|
+
SellAction: { "@id": "schema:SellAction" },
|
|
1079
|
+
SendAction: { "@id": "schema:SendAction" },
|
|
1080
|
+
Series: { "@id": "schema:Series" },
|
|
1081
|
+
Service: { "@id": "schema:Service" },
|
|
1082
|
+
ServiceChannel: { "@id": "schema:ServiceChannel" },
|
|
1083
|
+
ShareAction: { "@id": "schema:ShareAction" },
|
|
1084
|
+
SheetMusic: { "@id": "schema:SheetMusic" },
|
|
1085
|
+
ShippingDeliveryTime: { "@id": "schema:ShippingDeliveryTime" },
|
|
1086
|
+
ShippingRateSettings: { "@id": "schema:ShippingRateSettings" },
|
|
1087
|
+
ShoeStore: { "@id": "schema:ShoeStore" },
|
|
1088
|
+
ShoppingCenter: { "@id": "schema:ShoppingCenter" },
|
|
1089
|
+
ShortStory: { "@id": "schema:ShortStory" },
|
|
1090
|
+
SideEffectsHealthAspect: { "@id": "schema:SideEffectsHealthAspect" },
|
|
1091
|
+
SingleBlindedTrial: { "@id": "schema:SingleBlindedTrial" },
|
|
1092
|
+
SingleCenterTrial: { "@id": "schema:SingleCenterTrial" },
|
|
1093
|
+
SingleFamilyResidence: { "@id": "schema:SingleFamilyResidence" },
|
|
1094
|
+
SinglePlayer: { "@id": "schema:SinglePlayer" },
|
|
1095
|
+
SingleRelease: { "@id": "schema:SingleRelease" },
|
|
1096
|
+
SiteNavigationElement: { "@id": "schema:SiteNavigationElement" },
|
|
1097
|
+
SizeGroupEnumeration: { "@id": "schema:SizeGroupEnumeration" },
|
|
1098
|
+
SizeSpecification: { "@id": "schema:SizeSpecification" },
|
|
1099
|
+
SizeSystemEnumeration: { "@id": "schema:SizeSystemEnumeration" },
|
|
1100
|
+
SizeSystemImperial: { "@id": "schema:SizeSystemImperial" },
|
|
1101
|
+
SizeSystemMetric: { "@id": "schema:SizeSystemMetric" },
|
|
1102
|
+
SkiResort: { "@id": "schema:SkiResort" },
|
|
1103
|
+
Skin: { "@id": "schema:Skin" },
|
|
1104
|
+
SocialEvent: { "@id": "schema:SocialEvent" },
|
|
1105
|
+
SocialMediaPosting: { "@id": "schema:SocialMediaPosting" },
|
|
1106
|
+
SoftwareApplication: { "@id": "schema:SoftwareApplication" },
|
|
1107
|
+
SoftwareSourceCode: { "@id": "schema:SoftwareSourceCode" },
|
|
1108
|
+
SoldOut: { "@id": "schema:SoldOut" },
|
|
1109
|
+
SolveMathAction: { "@id": "schema:SolveMathAction" },
|
|
1110
|
+
SomeProducts: { "@id": "schema:SomeProducts" },
|
|
1111
|
+
SoundtrackAlbum: { "@id": "schema:SoundtrackAlbum" },
|
|
1112
|
+
SpeakableSpecification: { "@id": "schema:SpeakableSpecification" },
|
|
1113
|
+
SpecialAnnouncement: { "@id": "schema:SpecialAnnouncement" },
|
|
1114
|
+
Specialty: { "@id": "schema:Specialty" },
|
|
1115
|
+
SpeechPathology: { "@id": "schema:SpeechPathology" },
|
|
1116
|
+
SpokenWordAlbum: { "@id": "schema:SpokenWordAlbum" },
|
|
1117
|
+
SportingGoodsStore: { "@id": "schema:SportingGoodsStore" },
|
|
1118
|
+
SportsActivityLocation: { "@id": "schema:SportsActivityLocation" },
|
|
1119
|
+
SportsClub: { "@id": "schema:SportsClub" },
|
|
1120
|
+
SportsEvent: { "@id": "schema:SportsEvent" },
|
|
1121
|
+
SportsOrganization: { "@id": "schema:SportsOrganization" },
|
|
1122
|
+
SportsTeam: { "@id": "schema:SportsTeam" },
|
|
1123
|
+
SpreadsheetDigitalDocument: { "@id": "schema:SpreadsheetDigitalDocument" },
|
|
1124
|
+
StadiumOrArena: { "@id": "schema:StadiumOrArena" },
|
|
1125
|
+
StagedContent: { "@id": "schema:StagedContent" },
|
|
1126
|
+
StagesHealthAspect: { "@id": "schema:StagesHealthAspect" },
|
|
1127
|
+
State: { "@id": "schema:State" },
|
|
1128
|
+
StatisticalPopulation: { "@id": "schema:StatisticalPopulation" },
|
|
1129
|
+
StatusEnumeration: { "@id": "schema:StatusEnumeration" },
|
|
1130
|
+
SteeringPositionValue: { "@id": "schema:SteeringPositionValue" },
|
|
1131
|
+
Store: { "@id": "schema:Store" },
|
|
1132
|
+
StoreCreditRefund: { "@id": "schema:StoreCreditRefund" },
|
|
1133
|
+
StrengthTraining: { "@id": "schema:StrengthTraining" },
|
|
1134
|
+
StructuredValue: { "@id": "schema:StructuredValue" },
|
|
1135
|
+
StudioAlbum: { "@id": "schema:StudioAlbum" },
|
|
1136
|
+
StupidType: { "@id": "schema:StupidType" },
|
|
1137
|
+
SubscribeAction: { "@id": "schema:SubscribeAction" },
|
|
1138
|
+
Subscription: { "@id": "schema:Subscription" },
|
|
1139
|
+
Substance: { "@id": "schema:Substance" },
|
|
1140
|
+
SubwayStation: { "@id": "schema:SubwayStation" },
|
|
1141
|
+
Suite: { "@id": "schema:Suite" },
|
|
1142
|
+
Sunday: { "@id": "schema:Sunday" },
|
|
1143
|
+
SuperficialAnatomy: { "@id": "schema:SuperficialAnatomy" },
|
|
1144
|
+
Surgical: { "@id": "schema:Surgical" },
|
|
1145
|
+
SurgicalProcedure: { "@id": "schema:SurgicalProcedure" },
|
|
1146
|
+
SuspendAction: { "@id": "schema:SuspendAction" },
|
|
1147
|
+
Suspended: { "@id": "schema:Suspended" },
|
|
1148
|
+
SymptomsHealthAspect: { "@id": "schema:SymptomsHealthAspect" },
|
|
1149
|
+
Synagogue: { "@id": "schema:Synagogue" },
|
|
1150
|
+
TVClip: { "@id": "schema:TVClip" },
|
|
1151
|
+
TVEpisode: { "@id": "schema:TVEpisode" },
|
|
1152
|
+
TVSeason: { "@id": "schema:TVSeason" },
|
|
1153
|
+
TVSeries: { "@id": "schema:TVSeries" },
|
|
1154
|
+
Table: { "@id": "schema:Table" },
|
|
1155
|
+
TakeAction: { "@id": "schema:TakeAction" },
|
|
1156
|
+
TattooParlor: { "@id": "schema:TattooParlor" },
|
|
1157
|
+
Taxi: { "@id": "schema:Taxi" },
|
|
1158
|
+
TaxiReservation: { "@id": "schema:TaxiReservation" },
|
|
1159
|
+
TaxiService: { "@id": "schema:TaxiService" },
|
|
1160
|
+
TaxiStand: { "@id": "schema:TaxiStand" },
|
|
1161
|
+
TaxiVehicleUsage: { "@id": "schema:TaxiVehicleUsage" },
|
|
1162
|
+
TechArticle: { "@id": "schema:TechArticle" },
|
|
1163
|
+
TelevisionChannel: { "@id": "schema:TelevisionChannel" },
|
|
1164
|
+
TelevisionStation: { "@id": "schema:TelevisionStation" },
|
|
1165
|
+
TennisComplex: { "@id": "schema:TennisComplex" },
|
|
1166
|
+
Terminated: { "@id": "schema:Terminated" },
|
|
1167
|
+
Text: { "@id": "schema:Text" },
|
|
1168
|
+
TextDigitalDocument: { "@id": "schema:TextDigitalDocument" },
|
|
1169
|
+
TheaterEvent: { "@id": "schema:TheaterEvent" },
|
|
1170
|
+
TheaterGroup: { "@id": "schema:TheaterGroup" },
|
|
1171
|
+
Therapeutic: { "@id": "schema:Therapeutic" },
|
|
1172
|
+
TherapeuticProcedure: { "@id": "schema:TherapeuticProcedure" },
|
|
1173
|
+
Thesis: { "@id": "schema:Thesis" },
|
|
1174
|
+
Thing: { "@id": "schema:Thing" },
|
|
1175
|
+
Throat: { "@id": "schema:Throat" },
|
|
1176
|
+
Thursday: { "@id": "schema:Thursday" },
|
|
1177
|
+
Ticket: { "@id": "schema:Ticket" },
|
|
1178
|
+
TieAction: { "@id": "schema:TieAction" },
|
|
1179
|
+
Time: { "@id": "schema:Time" },
|
|
1180
|
+
TipAction: { "@id": "schema:TipAction" },
|
|
1181
|
+
TireShop: { "@id": "schema:TireShop" },
|
|
1182
|
+
TollFree: { "@id": "schema:TollFree" },
|
|
1183
|
+
TouristAttraction: { "@id": "schema:TouristAttraction" },
|
|
1184
|
+
TouristDestination: { "@id": "schema:TouristDestination" },
|
|
1185
|
+
TouristInformationCenter: { "@id": "schema:TouristInformationCenter" },
|
|
1186
|
+
TouristTrip: { "@id": "schema:TouristTrip" },
|
|
1187
|
+
Toxicologic: { "@id": "schema:Toxicologic" },
|
|
1188
|
+
ToyStore: { "@id": "schema:ToyStore" },
|
|
1189
|
+
TrackAction: { "@id": "schema:TrackAction" },
|
|
1190
|
+
TradeAction: { "@id": "schema:TradeAction" },
|
|
1191
|
+
TraditionalChinese: { "@id": "schema:TraditionalChinese" },
|
|
1192
|
+
TrainReservation: { "@id": "schema:TrainReservation" },
|
|
1193
|
+
TrainStation: { "@id": "schema:TrainStation" },
|
|
1194
|
+
TrainTrip: { "@id": "schema:TrainTrip" },
|
|
1195
|
+
TransferAction: { "@id": "schema:TransferAction" },
|
|
1196
|
+
TransformedContent: { "@id": "schema:TransformedContent" },
|
|
1197
|
+
TransitMap: { "@id": "schema:TransitMap" },
|
|
1198
|
+
TravelAction: { "@id": "schema:TravelAction" },
|
|
1199
|
+
TravelAgency: { "@id": "schema:TravelAgency" },
|
|
1200
|
+
TreatmentIndication: { "@id": "schema:TreatmentIndication" },
|
|
1201
|
+
TreatmentsHealthAspect: { "@id": "schema:TreatmentsHealthAspect" },
|
|
1202
|
+
Trip: { "@id": "schema:Trip" },
|
|
1203
|
+
TripleBlindedTrial: { "@id": "schema:TripleBlindedTrial" },
|
|
1204
|
+
True: { "@id": "schema:True" },
|
|
1205
|
+
Tuesday: { "@id": "schema:Tuesday" },
|
|
1206
|
+
TypeAndQuantityNode: { "@id": "schema:TypeAndQuantityNode" },
|
|
1207
|
+
TypesHealthAspect: { "@id": "schema:TypesHealthAspect" },
|
|
1208
|
+
UKNonprofitType: { "@id": "schema:UKNonprofitType" },
|
|
1209
|
+
UKTrust: { "@id": "schema:UKTrust" },
|
|
1210
|
+
URL: { "@id": "schema:URL" },
|
|
1211
|
+
USNonprofitType: { "@id": "schema:USNonprofitType" },
|
|
1212
|
+
Ultrasound: { "@id": "schema:Ultrasound" },
|
|
1213
|
+
UnRegisterAction: { "@id": "schema:UnRegisterAction" },
|
|
1214
|
+
UnemploymentSupport: { "@id": "schema:UnemploymentSupport" },
|
|
1215
|
+
UnincorporatedAssociationCharity: { "@id": "schema:UnincorporatedAssociationCharity" },
|
|
1216
|
+
UnitPriceSpecification: { "@id": "schema:UnitPriceSpecification" },
|
|
1217
|
+
UnofficialLegalValue: { "@id": "schema:UnofficialLegalValue" },
|
|
1218
|
+
UpdateAction: { "@id": "schema:UpdateAction" },
|
|
1219
|
+
Urologic: { "@id": "schema:Urologic" },
|
|
1220
|
+
UsageOrScheduleHealthAspect: { "@id": "schema:UsageOrScheduleHealthAspect" },
|
|
1221
|
+
UseAction: { "@id": "schema:UseAction" },
|
|
1222
|
+
UsedCondition: { "@id": "schema:UsedCondition" },
|
|
1223
|
+
UserBlocks: { "@id": "schema:UserBlocks" },
|
|
1224
|
+
UserCheckins: { "@id": "schema:UserCheckins" },
|
|
1225
|
+
UserComments: { "@id": "schema:UserComments" },
|
|
1226
|
+
UserDownloads: { "@id": "schema:UserDownloads" },
|
|
1227
|
+
UserInteraction: { "@id": "schema:UserInteraction" },
|
|
1228
|
+
UserLikes: { "@id": "schema:UserLikes" },
|
|
1229
|
+
UserPageVisits: { "@id": "schema:UserPageVisits" },
|
|
1230
|
+
UserPlays: { "@id": "schema:UserPlays" },
|
|
1231
|
+
UserPlusOnes: { "@id": "schema:UserPlusOnes" },
|
|
1232
|
+
UserReview: { "@id": "schema:UserReview" },
|
|
1233
|
+
UserTweets: { "@id": "schema:UserTweets" },
|
|
1234
|
+
VeganDiet: { "@id": "schema:VeganDiet" },
|
|
1235
|
+
VegetarianDiet: { "@id": "schema:VegetarianDiet" },
|
|
1236
|
+
Vehicle: { "@id": "schema:Vehicle" },
|
|
1237
|
+
Vein: { "@id": "schema:Vein" },
|
|
1238
|
+
VenueMap: { "@id": "schema:VenueMap" },
|
|
1239
|
+
Vessel: { "@id": "schema:Vessel" },
|
|
1240
|
+
VeterinaryCare: { "@id": "schema:VeterinaryCare" },
|
|
1241
|
+
VideoGallery: { "@id": "schema:VideoGallery" },
|
|
1242
|
+
VideoGame: { "@id": "schema:VideoGame" },
|
|
1243
|
+
VideoGameClip: { "@id": "schema:VideoGameClip" },
|
|
1244
|
+
VideoGameSeries: { "@id": "schema:VideoGameSeries" },
|
|
1245
|
+
VideoObject: { "@id": "schema:VideoObject" },
|
|
1246
|
+
ViewAction: { "@id": "schema:ViewAction" },
|
|
1247
|
+
VinylFormat: { "@id": "schema:VinylFormat" },
|
|
1248
|
+
VirtualLocation: { "@id": "schema:VirtualLocation" },
|
|
1249
|
+
Virus: { "@id": "schema:Virus" },
|
|
1250
|
+
VisualArtsEvent: { "@id": "schema:VisualArtsEvent" },
|
|
1251
|
+
VisualArtwork: { "@id": "schema:VisualArtwork" },
|
|
1252
|
+
VitalSign: { "@id": "schema:VitalSign" },
|
|
1253
|
+
Volcano: { "@id": "schema:Volcano" },
|
|
1254
|
+
VoteAction: { "@id": "schema:VoteAction" },
|
|
1255
|
+
WPAdBlock: { "@id": "schema:WPAdBlock" },
|
|
1256
|
+
WPFooter: { "@id": "schema:WPFooter" },
|
|
1257
|
+
WPHeader: { "@id": "schema:WPHeader" },
|
|
1258
|
+
WPSideBar: { "@id": "schema:WPSideBar" },
|
|
1259
|
+
WantAction: { "@id": "schema:WantAction" },
|
|
1260
|
+
WarrantyPromise: { "@id": "schema:WarrantyPromise" },
|
|
1261
|
+
WarrantyScope: { "@id": "schema:WarrantyScope" },
|
|
1262
|
+
WatchAction: { "@id": "schema:WatchAction" },
|
|
1263
|
+
Waterfall: { "@id": "schema:Waterfall" },
|
|
1264
|
+
WearAction: { "@id": "schema:WearAction" },
|
|
1265
|
+
WearableMeasurementBack: { "@id": "schema:WearableMeasurementBack" },
|
|
1266
|
+
WearableMeasurementChestOrBust: { "@id": "schema:WearableMeasurementChestOrBust" },
|
|
1267
|
+
WearableMeasurementCollar: { "@id": "schema:WearableMeasurementCollar" },
|
|
1268
|
+
WearableMeasurementCup: { "@id": "schema:WearableMeasurementCup" },
|
|
1269
|
+
WearableMeasurementHeight: { "@id": "schema:WearableMeasurementHeight" },
|
|
1270
|
+
WearableMeasurementHips: { "@id": "schema:WearableMeasurementHips" },
|
|
1271
|
+
WearableMeasurementInseam: { "@id": "schema:WearableMeasurementInseam" },
|
|
1272
|
+
WearableMeasurementLength: { "@id": "schema:WearableMeasurementLength" },
|
|
1273
|
+
WearableMeasurementOutsideLeg: { "@id": "schema:WearableMeasurementOutsideLeg" },
|
|
1274
|
+
WearableMeasurementSleeve: { "@id": "schema:WearableMeasurementSleeve" },
|
|
1275
|
+
WearableMeasurementTypeEnumeration: { "@id": "schema:WearableMeasurementTypeEnumeration" },
|
|
1276
|
+
WearableMeasurementWaist: { "@id": "schema:WearableMeasurementWaist" },
|
|
1277
|
+
WearableMeasurementWidth: { "@id": "schema:WearableMeasurementWidth" },
|
|
1278
|
+
WearableSizeGroupBig: { "@id": "schema:WearableSizeGroupBig" },
|
|
1279
|
+
WearableSizeGroupBoys: { "@id": "schema:WearableSizeGroupBoys" },
|
|
1280
|
+
WearableSizeGroupEnumeration: { "@id": "schema:WearableSizeGroupEnumeration" },
|
|
1281
|
+
WearableSizeGroupExtraShort: { "@id": "schema:WearableSizeGroupExtraShort" },
|
|
1282
|
+
WearableSizeGroupExtraTall: { "@id": "schema:WearableSizeGroupExtraTall" },
|
|
1283
|
+
WearableSizeGroupGirls: { "@id": "schema:WearableSizeGroupGirls" },
|
|
1284
|
+
WearableSizeGroupHusky: { "@id": "schema:WearableSizeGroupHusky" },
|
|
1285
|
+
WearableSizeGroupInfants: { "@id": "schema:WearableSizeGroupInfants" },
|
|
1286
|
+
WearableSizeGroupJuniors: { "@id": "schema:WearableSizeGroupJuniors" },
|
|
1287
|
+
WearableSizeGroupMaternity: { "@id": "schema:WearableSizeGroupMaternity" },
|
|
1288
|
+
WearableSizeGroupMens: { "@id": "schema:WearableSizeGroupMens" },
|
|
1289
|
+
WearableSizeGroupMisses: { "@id": "schema:WearableSizeGroupMisses" },
|
|
1290
|
+
WearableSizeGroupPetite: { "@id": "schema:WearableSizeGroupPetite" },
|
|
1291
|
+
WearableSizeGroupPlus: { "@id": "schema:WearableSizeGroupPlus" },
|
|
1292
|
+
WearableSizeGroupRegular: { "@id": "schema:WearableSizeGroupRegular" },
|
|
1293
|
+
WearableSizeGroupShort: { "@id": "schema:WearableSizeGroupShort" },
|
|
1294
|
+
WearableSizeGroupTall: { "@id": "schema:WearableSizeGroupTall" },
|
|
1295
|
+
WearableSizeGroupWomens: { "@id": "schema:WearableSizeGroupWomens" },
|
|
1296
|
+
WearableSizeSystemAU: { "@id": "schema:WearableSizeSystemAU" },
|
|
1297
|
+
WearableSizeSystemBR: { "@id": "schema:WearableSizeSystemBR" },
|
|
1298
|
+
WearableSizeSystemCN: { "@id": "schema:WearableSizeSystemCN" },
|
|
1299
|
+
WearableSizeSystemContinental: { "@id": "schema:WearableSizeSystemContinental" },
|
|
1300
|
+
WearableSizeSystemDE: { "@id": "schema:WearableSizeSystemDE" },
|
|
1301
|
+
WearableSizeSystemEN13402: { "@id": "schema:WearableSizeSystemEN13402" },
|
|
1302
|
+
WearableSizeSystemEnumeration: { "@id": "schema:WearableSizeSystemEnumeration" },
|
|
1303
|
+
WearableSizeSystemEurope: { "@id": "schema:WearableSizeSystemEurope" },
|
|
1304
|
+
WearableSizeSystemFR: { "@id": "schema:WearableSizeSystemFR" },
|
|
1305
|
+
WearableSizeSystemGS1: { "@id": "schema:WearableSizeSystemGS1" },
|
|
1306
|
+
WearableSizeSystemIT: { "@id": "schema:WearableSizeSystemIT" },
|
|
1307
|
+
WearableSizeSystemJP: { "@id": "schema:WearableSizeSystemJP" },
|
|
1308
|
+
WearableSizeSystemMX: { "@id": "schema:WearableSizeSystemMX" },
|
|
1309
|
+
WearableSizeSystemUK: { "@id": "schema:WearableSizeSystemUK" },
|
|
1310
|
+
WearableSizeSystemUS: { "@id": "schema:WearableSizeSystemUS" },
|
|
1311
|
+
WebAPI: { "@id": "schema:WebAPI" },
|
|
1312
|
+
WebApplication: { "@id": "schema:WebApplication" },
|
|
1313
|
+
WebContent: { "@id": "schema:WebContent" },
|
|
1314
|
+
WebPage: { "@id": "schema:WebPage" },
|
|
1315
|
+
WebPageElement: { "@id": "schema:WebPageElement" },
|
|
1316
|
+
WebSite: { "@id": "schema:WebSite" },
|
|
1317
|
+
Wednesday: { "@id": "schema:Wednesday" },
|
|
1318
|
+
WesternConventional: { "@id": "schema:WesternConventional" },
|
|
1319
|
+
Wholesale: { "@id": "schema:Wholesale" },
|
|
1320
|
+
WholesaleStore: { "@id": "schema:WholesaleStore" },
|
|
1321
|
+
WinAction: { "@id": "schema:WinAction" },
|
|
1322
|
+
Winery: { "@id": "schema:Winery" },
|
|
1323
|
+
Withdrawn: { "@id": "schema:Withdrawn" },
|
|
1324
|
+
WorkBasedProgram: { "@id": "schema:WorkBasedProgram" },
|
|
1325
|
+
WorkersUnion: { "@id": "schema:WorkersUnion" },
|
|
1326
|
+
WriteAction: { "@id": "schema:WriteAction" },
|
|
1327
|
+
WritePermission: { "@id": "schema:WritePermission" },
|
|
1328
|
+
XPathType: { "@id": "schema:XPathType" },
|
|
1329
|
+
XRay: { "@id": "schema:XRay" },
|
|
1330
|
+
ZoneBoardingPolicy: { "@id": "schema:ZoneBoardingPolicy" },
|
|
1331
|
+
Zoo: { "@id": "schema:Zoo" },
|
|
1332
|
+
about: { "@id": "schema:about" },
|
|
1333
|
+
abridged: { "@id": "schema:abridged" },
|
|
1334
|
+
abstract: { "@id": "schema:abstract" },
|
|
1335
|
+
accelerationTime: { "@id": "schema:accelerationTime" },
|
|
1336
|
+
acceptedAnswer: { "@id": "schema:acceptedAnswer" },
|
|
1337
|
+
acceptedOffer: { "@id": "schema:acceptedOffer" },
|
|
1338
|
+
acceptedPaymentMethod: { "@id": "schema:acceptedPaymentMethod" },
|
|
1339
|
+
acceptsReservations: { "@id": "schema:acceptsReservations" },
|
|
1340
|
+
accessCode: { "@id": "schema:accessCode" },
|
|
1341
|
+
accessMode: { "@id": "schema:accessMode" },
|
|
1342
|
+
accessModeSufficient: { "@id": "schema:accessModeSufficient" },
|
|
1343
|
+
accessibilityAPI: { "@id": "schema:accessibilityAPI" },
|
|
1344
|
+
accessibilityControl: { "@id": "schema:accessibilityControl" },
|
|
1345
|
+
accessibilityFeature: { "@id": "schema:accessibilityFeature" },
|
|
1346
|
+
accessibilityHazard: { "@id": "schema:accessibilityHazard" },
|
|
1347
|
+
accessibilitySummary: { "@id": "schema:accessibilitySummary" },
|
|
1348
|
+
accommodationCategory: { "@id": "schema:accommodationCategory" },
|
|
1349
|
+
accommodationFloorPlan: { "@id": "schema:accommodationFloorPlan" },
|
|
1350
|
+
accountId: { "@id": "schema:accountId" },
|
|
1351
|
+
accountMinimumInflow: { "@id": "schema:accountMinimumInflow" },
|
|
1352
|
+
accountOverdraftLimit: { "@id": "schema:accountOverdraftLimit" },
|
|
1353
|
+
accountablePerson: { "@id": "schema:accountablePerson" },
|
|
1354
|
+
acquireLicensePage: {
|
|
1355
|
+
"@id": "schema:acquireLicensePage",
|
|
1356
|
+
"@type": "@id"
|
|
1357
|
+
},
|
|
1358
|
+
acquiredFrom: { "@id": "schema:acquiredFrom" },
|
|
1359
|
+
acrissCode: { "@id": "schema:acrissCode" },
|
|
1360
|
+
actionAccessibilityRequirement: { "@id": "schema:actionAccessibilityRequirement" },
|
|
1361
|
+
actionApplication: { "@id": "schema:actionApplication" },
|
|
1362
|
+
actionOption: { "@id": "schema:actionOption" },
|
|
1363
|
+
actionPlatform: { "@id": "schema:actionPlatform" },
|
|
1364
|
+
actionStatus: { "@id": "schema:actionStatus" },
|
|
1365
|
+
actionableFeedbackPolicy: {
|
|
1366
|
+
"@id": "schema:actionableFeedbackPolicy",
|
|
1367
|
+
"@type": "@id"
|
|
1368
|
+
},
|
|
1369
|
+
activeIngredient: { "@id": "schema:activeIngredient" },
|
|
1370
|
+
activityDuration: { "@id": "schema:activityDuration" },
|
|
1371
|
+
activityFrequency: { "@id": "schema:activityFrequency" },
|
|
1372
|
+
actor: { "@id": "schema:actor" },
|
|
1373
|
+
actors: { "@id": "schema:actors" },
|
|
1374
|
+
addOn: { "@id": "schema:addOn" },
|
|
1375
|
+
additionalName: { "@id": "schema:additionalName" },
|
|
1376
|
+
additionalNumberOfGuests: { "@id": "schema:additionalNumberOfGuests" },
|
|
1377
|
+
additionalProperty: { "@id": "schema:additionalProperty" },
|
|
1378
|
+
additionalType: {
|
|
1379
|
+
"@id": "schema:additionalType",
|
|
1380
|
+
"@type": "@id"
|
|
1381
|
+
},
|
|
1382
|
+
additionalVariable: { "@id": "schema:additionalVariable" },
|
|
1383
|
+
address: { "@id": "schema:address" },
|
|
1384
|
+
addressCountry: { "@id": "schema:addressCountry" },
|
|
1385
|
+
addressLocality: { "@id": "schema:addressLocality" },
|
|
1386
|
+
addressRegion: { "@id": "schema:addressRegion" },
|
|
1387
|
+
administrationRoute: { "@id": "schema:administrationRoute" },
|
|
1388
|
+
advanceBookingRequirement: { "@id": "schema:advanceBookingRequirement" },
|
|
1389
|
+
adverseOutcome: { "@id": "schema:adverseOutcome" },
|
|
1390
|
+
affectedBy: { "@id": "schema:affectedBy" },
|
|
1391
|
+
affiliation: { "@id": "schema:affiliation" },
|
|
1392
|
+
afterMedia: {
|
|
1393
|
+
"@id": "schema:afterMedia",
|
|
1394
|
+
"@type": "@id"
|
|
1395
|
+
},
|
|
1396
|
+
agent: { "@id": "schema:agent" },
|
|
1397
|
+
aggregateRating: { "@id": "schema:aggregateRating" },
|
|
1398
|
+
aircraft: { "@id": "schema:aircraft" },
|
|
1399
|
+
album: { "@id": "schema:album" },
|
|
1400
|
+
albumProductionType: { "@id": "schema:albumProductionType" },
|
|
1401
|
+
albumRelease: { "@id": "schema:albumRelease" },
|
|
1402
|
+
albumReleaseType: { "@id": "schema:albumReleaseType" },
|
|
1403
|
+
albums: { "@id": "schema:albums" },
|
|
1404
|
+
alcoholWarning: { "@id": "schema:alcoholWarning" },
|
|
1405
|
+
algorithm: { "@id": "schema:algorithm" },
|
|
1406
|
+
alignmentType: { "@id": "schema:alignmentType" },
|
|
1407
|
+
alternateName: { "@id": "schema:alternateName" },
|
|
1408
|
+
alternativeHeadline: { "@id": "schema:alternativeHeadline" },
|
|
1409
|
+
alumni: { "@id": "schema:alumni" },
|
|
1410
|
+
alumniOf: { "@id": "schema:alumniOf" },
|
|
1411
|
+
amenityFeature: { "@id": "schema:amenityFeature" },
|
|
1412
|
+
amount: { "@id": "schema:amount" },
|
|
1413
|
+
amountOfThisGood: { "@id": "schema:amountOfThisGood" },
|
|
1414
|
+
announcementLocation: { "@id": "schema:announcementLocation" },
|
|
1415
|
+
annualPercentageRate: { "@id": "schema:annualPercentageRate" },
|
|
1416
|
+
answerCount: { "@id": "schema:answerCount" },
|
|
1417
|
+
answerExplanation: { "@id": "schema:answerExplanation" },
|
|
1418
|
+
antagonist: { "@id": "schema:antagonist" },
|
|
1419
|
+
appearance: { "@id": "schema:appearance" },
|
|
1420
|
+
applicableLocation: { "@id": "schema:applicableLocation" },
|
|
1421
|
+
applicantLocationRequirements: { "@id": "schema:applicantLocationRequirements" },
|
|
1422
|
+
application: { "@id": "schema:application" },
|
|
1423
|
+
applicationCategory: { "@id": "schema:applicationCategory" },
|
|
1424
|
+
applicationContact: { "@id": "schema:applicationContact" },
|
|
1425
|
+
applicationDeadline: {
|
|
1426
|
+
"@id": "schema:applicationDeadline",
|
|
1427
|
+
"@type": "Date"
|
|
1428
|
+
},
|
|
1429
|
+
applicationStartDate: {
|
|
1430
|
+
"@id": "schema:applicationStartDate",
|
|
1431
|
+
"@type": "Date"
|
|
1432
|
+
},
|
|
1433
|
+
applicationSubCategory: { "@id": "schema:applicationSubCategory" },
|
|
1434
|
+
applicationSuite: { "@id": "schema:applicationSuite" },
|
|
1435
|
+
appliesToDeliveryMethod: { "@id": "schema:appliesToDeliveryMethod" },
|
|
1436
|
+
appliesToPaymentMethod: { "@id": "schema:appliesToPaymentMethod" },
|
|
1437
|
+
archiveHeld: { "@id": "schema:archiveHeld" },
|
|
1438
|
+
area: { "@id": "schema:area" },
|
|
1439
|
+
areaServed: { "@id": "schema:areaServed" },
|
|
1440
|
+
arrivalAirport: { "@id": "schema:arrivalAirport" },
|
|
1441
|
+
arrivalBoatTerminal: { "@id": "schema:arrivalBoatTerminal" },
|
|
1442
|
+
arrivalBusStop: { "@id": "schema:arrivalBusStop" },
|
|
1443
|
+
arrivalGate: { "@id": "schema:arrivalGate" },
|
|
1444
|
+
arrivalPlatform: { "@id": "schema:arrivalPlatform" },
|
|
1445
|
+
arrivalStation: { "@id": "schema:arrivalStation" },
|
|
1446
|
+
arrivalTerminal: { "@id": "schema:arrivalTerminal" },
|
|
1447
|
+
arrivalTime: { "@id": "schema:arrivalTime" },
|
|
1448
|
+
artEdition: { "@id": "schema:artEdition" },
|
|
1449
|
+
artMedium: { "@id": "schema:artMedium" },
|
|
1450
|
+
arterialBranch: { "@id": "schema:arterialBranch" },
|
|
1451
|
+
artform: { "@id": "schema:artform" },
|
|
1452
|
+
articleBody: { "@id": "schema:articleBody" },
|
|
1453
|
+
articleSection: { "@id": "schema:articleSection" },
|
|
1454
|
+
artist: { "@id": "schema:artist" },
|
|
1455
|
+
artworkSurface: { "@id": "schema:artworkSurface" },
|
|
1456
|
+
aspect: { "@id": "schema:aspect" },
|
|
1457
|
+
assembly: { "@id": "schema:assembly" },
|
|
1458
|
+
assemblyVersion: { "@id": "schema:assemblyVersion" },
|
|
1459
|
+
assesses: { "@id": "schema:assesses" },
|
|
1460
|
+
associatedAnatomy: { "@id": "schema:associatedAnatomy" },
|
|
1461
|
+
associatedArticle: { "@id": "schema:associatedArticle" },
|
|
1462
|
+
associatedMedia: { "@id": "schema:associatedMedia" },
|
|
1463
|
+
associatedPathophysiology: { "@id": "schema:associatedPathophysiology" },
|
|
1464
|
+
athlete: { "@id": "schema:athlete" },
|
|
1465
|
+
attendee: { "@id": "schema:attendee" },
|
|
1466
|
+
attendees: { "@id": "schema:attendees" },
|
|
1467
|
+
audience: { "@id": "schema:audience" },
|
|
1468
|
+
audienceType: { "@id": "schema:audienceType" },
|
|
1469
|
+
audio: { "@id": "schema:audio" },
|
|
1470
|
+
authenticator: { "@id": "schema:authenticator" },
|
|
1471
|
+
author: { "@id": "schema:author" },
|
|
1472
|
+
availability: { "@id": "schema:availability" },
|
|
1473
|
+
availabilityEnds: {
|
|
1474
|
+
"@id": "schema:availabilityEnds",
|
|
1475
|
+
"@type": "Date"
|
|
1476
|
+
},
|
|
1477
|
+
availabilityStarts: {
|
|
1478
|
+
"@id": "schema:availabilityStarts",
|
|
1479
|
+
"@type": "Date"
|
|
1480
|
+
},
|
|
1481
|
+
availableAtOrFrom: { "@id": "schema:availableAtOrFrom" },
|
|
1482
|
+
availableChannel: { "@id": "schema:availableChannel" },
|
|
1483
|
+
availableDeliveryMethod: { "@id": "schema:availableDeliveryMethod" },
|
|
1484
|
+
availableFrom: { "@id": "schema:availableFrom" },
|
|
1485
|
+
availableIn: { "@id": "schema:availableIn" },
|
|
1486
|
+
availableLanguage: { "@id": "schema:availableLanguage" },
|
|
1487
|
+
availableOnDevice: { "@id": "schema:availableOnDevice" },
|
|
1488
|
+
availableService: { "@id": "schema:availableService" },
|
|
1489
|
+
availableStrength: { "@id": "schema:availableStrength" },
|
|
1490
|
+
availableTest: { "@id": "schema:availableTest" },
|
|
1491
|
+
availableThrough: { "@id": "schema:availableThrough" },
|
|
1492
|
+
award: { "@id": "schema:award" },
|
|
1493
|
+
awards: { "@id": "schema:awards" },
|
|
1494
|
+
awayTeam: { "@id": "schema:awayTeam" },
|
|
1495
|
+
backstory: { "@id": "schema:backstory" },
|
|
1496
|
+
bankAccountType: { "@id": "schema:bankAccountType" },
|
|
1497
|
+
baseSalary: { "@id": "schema:baseSalary" },
|
|
1498
|
+
bccRecipient: { "@id": "schema:bccRecipient" },
|
|
1499
|
+
bed: { "@id": "schema:bed" },
|
|
1500
|
+
beforeMedia: {
|
|
1501
|
+
"@id": "schema:beforeMedia",
|
|
1502
|
+
"@type": "@id"
|
|
1503
|
+
},
|
|
1504
|
+
beneficiaryBank: { "@id": "schema:beneficiaryBank" },
|
|
1505
|
+
benefits: { "@id": "schema:benefits" },
|
|
1506
|
+
benefitsSummaryUrl: {
|
|
1507
|
+
"@id": "schema:benefitsSummaryUrl",
|
|
1508
|
+
"@type": "@id"
|
|
1509
|
+
},
|
|
1510
|
+
bestRating: { "@id": "schema:bestRating" },
|
|
1511
|
+
billingAddress: { "@id": "schema:billingAddress" },
|
|
1512
|
+
billingDuration: { "@id": "schema:billingDuration" },
|
|
1513
|
+
billingIncrement: { "@id": "schema:billingIncrement" },
|
|
1514
|
+
billingPeriod: { "@id": "schema:billingPeriod" },
|
|
1515
|
+
billingStart: { "@id": "schema:billingStart" },
|
|
1516
|
+
biomechnicalClass: { "@id": "schema:biomechnicalClass" },
|
|
1517
|
+
birthDate: {
|
|
1518
|
+
"@id": "schema:birthDate",
|
|
1519
|
+
"@type": "Date"
|
|
1520
|
+
},
|
|
1521
|
+
birthPlace: { "@id": "schema:birthPlace" },
|
|
1522
|
+
bitrate: { "@id": "schema:bitrate" },
|
|
1523
|
+
blogPost: { "@id": "schema:blogPost" },
|
|
1524
|
+
blogPosts: { "@id": "schema:blogPosts" },
|
|
1525
|
+
bloodSupply: { "@id": "schema:bloodSupply" },
|
|
1526
|
+
boardingGroup: { "@id": "schema:boardingGroup" },
|
|
1527
|
+
boardingPolicy: { "@id": "schema:boardingPolicy" },
|
|
1528
|
+
bodyLocation: { "@id": "schema:bodyLocation" },
|
|
1529
|
+
bodyType: { "@id": "schema:bodyType" },
|
|
1530
|
+
bookEdition: { "@id": "schema:bookEdition" },
|
|
1531
|
+
bookFormat: { "@id": "schema:bookFormat" },
|
|
1532
|
+
bookingAgent: { "@id": "schema:bookingAgent" },
|
|
1533
|
+
bookingTime: { "@id": "schema:bookingTime" },
|
|
1534
|
+
borrower: { "@id": "schema:borrower" },
|
|
1535
|
+
box: { "@id": "schema:box" },
|
|
1536
|
+
branch: { "@id": "schema:branch" },
|
|
1537
|
+
branchCode: { "@id": "schema:branchCode" },
|
|
1538
|
+
branchOf: { "@id": "schema:branchOf" },
|
|
1539
|
+
brand: { "@id": "schema:brand" },
|
|
1540
|
+
breadcrumb: { "@id": "schema:breadcrumb" },
|
|
1541
|
+
breastfeedingWarning: { "@id": "schema:breastfeedingWarning" },
|
|
1542
|
+
broadcastAffiliateOf: { "@id": "schema:broadcastAffiliateOf" },
|
|
1543
|
+
broadcastChannelId: { "@id": "schema:broadcastChannelId" },
|
|
1544
|
+
broadcastDisplayName: { "@id": "schema:broadcastDisplayName" },
|
|
1545
|
+
broadcastFrequency: { "@id": "schema:broadcastFrequency" },
|
|
1546
|
+
broadcastFrequencyValue: { "@id": "schema:broadcastFrequencyValue" },
|
|
1547
|
+
broadcastOfEvent: { "@id": "schema:broadcastOfEvent" },
|
|
1548
|
+
broadcastServiceTier: { "@id": "schema:broadcastServiceTier" },
|
|
1549
|
+
broadcastSignalModulation: { "@id": "schema:broadcastSignalModulation" },
|
|
1550
|
+
broadcastSubChannel: { "@id": "schema:broadcastSubChannel" },
|
|
1551
|
+
broadcastTimezone: { "@id": "schema:broadcastTimezone" },
|
|
1552
|
+
broadcaster: { "@id": "schema:broadcaster" },
|
|
1553
|
+
broker: { "@id": "schema:broker" },
|
|
1554
|
+
browserRequirements: { "@id": "schema:browserRequirements" },
|
|
1555
|
+
busName: { "@id": "schema:busName" },
|
|
1556
|
+
busNumber: { "@id": "schema:busNumber" },
|
|
1557
|
+
businessDays: { "@id": "schema:businessDays" },
|
|
1558
|
+
businessFunction: { "@id": "schema:businessFunction" },
|
|
1559
|
+
buyer: { "@id": "schema:buyer" },
|
|
1560
|
+
byArtist: { "@id": "schema:byArtist" },
|
|
1561
|
+
byDay: { "@id": "schema:byDay" },
|
|
1562
|
+
byMonth: { "@id": "schema:byMonth" },
|
|
1563
|
+
byMonthDay: { "@id": "schema:byMonthDay" },
|
|
1564
|
+
byMonthWeek: { "@id": "schema:byMonthWeek" },
|
|
1565
|
+
callSign: { "@id": "schema:callSign" },
|
|
1566
|
+
calories: { "@id": "schema:calories" },
|
|
1567
|
+
candidate: { "@id": "schema:candidate" },
|
|
1568
|
+
caption: { "@id": "schema:caption" },
|
|
1569
|
+
carbohydrateContent: { "@id": "schema:carbohydrateContent" },
|
|
1570
|
+
cargoVolume: { "@id": "schema:cargoVolume" },
|
|
1571
|
+
carrier: { "@id": "schema:carrier" },
|
|
1572
|
+
carrierRequirements: { "@id": "schema:carrierRequirements" },
|
|
1573
|
+
cashBack: { "@id": "schema:cashBack" },
|
|
1574
|
+
catalog: { "@id": "schema:catalog" },
|
|
1575
|
+
catalogNumber: { "@id": "schema:catalogNumber" },
|
|
1576
|
+
category: { "@id": "schema:category" },
|
|
1577
|
+
causeOf: { "@id": "schema:causeOf" },
|
|
1578
|
+
ccRecipient: { "@id": "schema:ccRecipient" },
|
|
1579
|
+
character: { "@id": "schema:character" },
|
|
1580
|
+
characterAttribute: { "@id": "schema:characterAttribute" },
|
|
1581
|
+
characterName: { "@id": "schema:characterName" },
|
|
1582
|
+
cheatCode: { "@id": "schema:cheatCode" },
|
|
1583
|
+
checkinTime: { "@id": "schema:checkinTime" },
|
|
1584
|
+
checkoutTime: { "@id": "schema:checkoutTime" },
|
|
1585
|
+
childMaxAge: { "@id": "schema:childMaxAge" },
|
|
1586
|
+
childMinAge: { "@id": "schema:childMinAge" },
|
|
1587
|
+
children: { "@id": "schema:children" },
|
|
1588
|
+
cholesterolContent: { "@id": "schema:cholesterolContent" },
|
|
1589
|
+
circle: { "@id": "schema:circle" },
|
|
1590
|
+
citation: { "@id": "schema:citation" },
|
|
1591
|
+
claimReviewed: { "@id": "schema:claimReviewed" },
|
|
1592
|
+
clincalPharmacology: { "@id": "schema:clincalPharmacology" },
|
|
1593
|
+
clinicalPharmacology: { "@id": "schema:clinicalPharmacology" },
|
|
1594
|
+
clipNumber: { "@id": "schema:clipNumber" },
|
|
1595
|
+
closes: { "@id": "schema:closes" },
|
|
1596
|
+
coach: { "@id": "schema:coach" },
|
|
1597
|
+
code: { "@id": "schema:code" },
|
|
1598
|
+
codeRepository: {
|
|
1599
|
+
"@id": "schema:codeRepository",
|
|
1600
|
+
"@type": "@id"
|
|
1601
|
+
},
|
|
1602
|
+
codeSampleType: { "@id": "schema:codeSampleType" },
|
|
1603
|
+
codeValue: { "@id": "schema:codeValue" },
|
|
1604
|
+
codingSystem: { "@id": "schema:codingSystem" },
|
|
1605
|
+
colleague: {
|
|
1606
|
+
"@id": "schema:colleague",
|
|
1607
|
+
"@type": "@id"
|
|
1608
|
+
},
|
|
1609
|
+
colleagues: { "@id": "schema:colleagues" },
|
|
1610
|
+
collection: { "@id": "schema:collection" },
|
|
1611
|
+
collectionSize: { "@id": "schema:collectionSize" },
|
|
1612
|
+
color: { "@id": "schema:color" },
|
|
1613
|
+
colorist: { "@id": "schema:colorist" },
|
|
1614
|
+
comment: { "@id": "schema:comment" },
|
|
1615
|
+
commentCount: { "@id": "schema:commentCount" },
|
|
1616
|
+
commentText: { "@id": "schema:commentText" },
|
|
1617
|
+
commentTime: {
|
|
1618
|
+
"@id": "schema:commentTime",
|
|
1619
|
+
"@type": "Date"
|
|
1620
|
+
},
|
|
1621
|
+
competencyRequired: { "@id": "schema:competencyRequired" },
|
|
1622
|
+
competitor: { "@id": "schema:competitor" },
|
|
1623
|
+
composer: { "@id": "schema:composer" },
|
|
1624
|
+
comprisedOf: { "@id": "schema:comprisedOf" },
|
|
1625
|
+
conditionsOfAccess: { "@id": "schema:conditionsOfAccess" },
|
|
1626
|
+
confirmationNumber: { "@id": "schema:confirmationNumber" },
|
|
1627
|
+
connectedTo: { "@id": "schema:connectedTo" },
|
|
1628
|
+
constrainingProperty: { "@id": "schema:constrainingProperty" },
|
|
1629
|
+
contactOption: { "@id": "schema:contactOption" },
|
|
1630
|
+
contactPoint: { "@id": "schema:contactPoint" },
|
|
1631
|
+
contactPoints: { "@id": "schema:contactPoints" },
|
|
1632
|
+
contactType: { "@id": "schema:contactType" },
|
|
1633
|
+
contactlessPayment: { "@id": "schema:contactlessPayment" },
|
|
1634
|
+
containedIn: { "@id": "schema:containedIn" },
|
|
1635
|
+
containedInPlace: { "@id": "schema:containedInPlace" },
|
|
1636
|
+
containsPlace: { "@id": "schema:containsPlace" },
|
|
1637
|
+
containsSeason: { "@id": "schema:containsSeason" },
|
|
1638
|
+
contentLocation: { "@id": "schema:contentLocation" },
|
|
1639
|
+
contentRating: { "@id": "schema:contentRating" },
|
|
1640
|
+
contentReferenceTime: { "@id": "schema:contentReferenceTime" },
|
|
1641
|
+
contentSize: { "@id": "schema:contentSize" },
|
|
1642
|
+
contentType: { "@id": "schema:contentType" },
|
|
1643
|
+
contentUrl: {
|
|
1644
|
+
"@id": "schema:contentUrl",
|
|
1645
|
+
"@type": "@id"
|
|
1646
|
+
},
|
|
1647
|
+
contraindication: { "@id": "schema:contraindication" },
|
|
1648
|
+
contributor: { "@id": "schema:contributor" },
|
|
1649
|
+
cookTime: { "@id": "schema:cookTime" },
|
|
1650
|
+
cookingMethod: { "@id": "schema:cookingMethod" },
|
|
1651
|
+
copyrightHolder: { "@id": "schema:copyrightHolder" },
|
|
1652
|
+
copyrightNotice: { "@id": "schema:copyrightNotice" },
|
|
1653
|
+
copyrightYear: { "@id": "schema:copyrightYear" },
|
|
1654
|
+
correction: { "@id": "schema:correction" },
|
|
1655
|
+
correctionsPolicy: {
|
|
1656
|
+
"@id": "schema:correctionsPolicy",
|
|
1657
|
+
"@type": "@id"
|
|
1658
|
+
},
|
|
1659
|
+
costCategory: { "@id": "schema:costCategory" },
|
|
1660
|
+
costCurrency: { "@id": "schema:costCurrency" },
|
|
1661
|
+
costOrigin: { "@id": "schema:costOrigin" },
|
|
1662
|
+
costPerUnit: { "@id": "schema:costPerUnit" },
|
|
1663
|
+
countriesNotSupported: { "@id": "schema:countriesNotSupported" },
|
|
1664
|
+
countriesSupported: { "@id": "schema:countriesSupported" },
|
|
1665
|
+
countryOfOrigin: { "@id": "schema:countryOfOrigin" },
|
|
1666
|
+
course: { "@id": "schema:course" },
|
|
1667
|
+
courseCode: { "@id": "schema:courseCode" },
|
|
1668
|
+
courseMode: { "@id": "schema:courseMode" },
|
|
1669
|
+
coursePrerequisites: { "@id": "schema:coursePrerequisites" },
|
|
1670
|
+
courseWorkload: { "@id": "schema:courseWorkload" },
|
|
1671
|
+
coverageEndTime: { "@id": "schema:coverageEndTime" },
|
|
1672
|
+
coverageStartTime: { "@id": "schema:coverageStartTime" },
|
|
1673
|
+
creativeWorkStatus: { "@id": "schema:creativeWorkStatus" },
|
|
1674
|
+
creator: { "@id": "schema:creator" },
|
|
1675
|
+
credentialCategory: { "@id": "schema:credentialCategory" },
|
|
1676
|
+
creditText: { "@id": "schema:creditText" },
|
|
1677
|
+
creditedTo: { "@id": "schema:creditedTo" },
|
|
1678
|
+
cssSelector: { "@id": "schema:cssSelector" },
|
|
1679
|
+
currenciesAccepted: { "@id": "schema:currenciesAccepted" },
|
|
1680
|
+
currency: { "@id": "schema:currency" },
|
|
1681
|
+
currentExchangeRate: { "@id": "schema:currentExchangeRate" },
|
|
1682
|
+
customer: { "@id": "schema:customer" },
|
|
1683
|
+
cutoffTime: { "@id": "schema:cutoffTime" },
|
|
1684
|
+
cvdCollectionDate: { "@id": "schema:cvdCollectionDate" },
|
|
1685
|
+
cvdFacilityCounty: { "@id": "schema:cvdFacilityCounty" },
|
|
1686
|
+
cvdFacilityId: { "@id": "schema:cvdFacilityId" },
|
|
1687
|
+
cvdNumBeds: { "@id": "schema:cvdNumBeds" },
|
|
1688
|
+
cvdNumBedsOcc: { "@id": "schema:cvdNumBedsOcc" },
|
|
1689
|
+
cvdNumC19Died: { "@id": "schema:cvdNumC19Died" },
|
|
1690
|
+
cvdNumC19HOPats: { "@id": "schema:cvdNumC19HOPats" },
|
|
1691
|
+
cvdNumC19HospPats: { "@id": "schema:cvdNumC19HospPats" },
|
|
1692
|
+
cvdNumC19MechVentPats: { "@id": "schema:cvdNumC19MechVentPats" },
|
|
1693
|
+
cvdNumC19OFMechVentPats: { "@id": "schema:cvdNumC19OFMechVentPats" },
|
|
1694
|
+
cvdNumC19OverflowPats: { "@id": "schema:cvdNumC19OverflowPats" },
|
|
1695
|
+
cvdNumICUBeds: { "@id": "schema:cvdNumICUBeds" },
|
|
1696
|
+
cvdNumICUBedsOcc: { "@id": "schema:cvdNumICUBedsOcc" },
|
|
1697
|
+
cvdNumTotBeds: { "@id": "schema:cvdNumTotBeds" },
|
|
1698
|
+
cvdNumVent: { "@id": "schema:cvdNumVent" },
|
|
1699
|
+
cvdNumVentUse: { "@id": "schema:cvdNumVentUse" },
|
|
1700
|
+
dataFeedElement: { "@id": "schema:dataFeedElement" },
|
|
1701
|
+
dataset: { "@id": "schema:dataset" },
|
|
1702
|
+
datasetTimeInterval: { "@id": "schema:datasetTimeInterval" },
|
|
1703
|
+
dateCreated: {
|
|
1704
|
+
"@id": "schema:dateCreated",
|
|
1705
|
+
"@type": "Date"
|
|
1706
|
+
},
|
|
1707
|
+
dateDeleted: {
|
|
1708
|
+
"@id": "schema:dateDeleted",
|
|
1709
|
+
"@type": "Date"
|
|
1710
|
+
},
|
|
1711
|
+
dateIssued: {
|
|
1712
|
+
"@id": "schema:dateIssued",
|
|
1713
|
+
"@type": "Date"
|
|
1714
|
+
},
|
|
1715
|
+
dateModified: {
|
|
1716
|
+
"@id": "schema:dateModified",
|
|
1717
|
+
"@type": "Date"
|
|
1718
|
+
},
|
|
1719
|
+
datePosted: {
|
|
1720
|
+
"@id": "schema:datePosted",
|
|
1721
|
+
"@type": "Date"
|
|
1722
|
+
},
|
|
1723
|
+
datePublished: {
|
|
1724
|
+
"@id": "schema:datePublished",
|
|
1725
|
+
"@type": "Date"
|
|
1726
|
+
},
|
|
1727
|
+
dateRead: {
|
|
1728
|
+
"@id": "schema:dateRead",
|
|
1729
|
+
"@type": "Date"
|
|
1730
|
+
},
|
|
1731
|
+
dateReceived: { "@id": "schema:dateReceived" },
|
|
1732
|
+
dateSent: { "@id": "schema:dateSent" },
|
|
1733
|
+
dateVehicleFirstRegistered: {
|
|
1734
|
+
"@id": "schema:dateVehicleFirstRegistered",
|
|
1735
|
+
"@type": "Date"
|
|
1736
|
+
},
|
|
1737
|
+
dateline: { "@id": "schema:dateline" },
|
|
1738
|
+
dayOfWeek: { "@id": "schema:dayOfWeek" },
|
|
1739
|
+
deathDate: {
|
|
1740
|
+
"@id": "schema:deathDate",
|
|
1741
|
+
"@type": "Date"
|
|
1742
|
+
},
|
|
1743
|
+
deathPlace: { "@id": "schema:deathPlace" },
|
|
1744
|
+
defaultValue: { "@id": "schema:defaultValue" },
|
|
1745
|
+
deliveryAddress: { "@id": "schema:deliveryAddress" },
|
|
1746
|
+
deliveryLeadTime: { "@id": "schema:deliveryLeadTime" },
|
|
1747
|
+
deliveryMethod: { "@id": "schema:deliveryMethod" },
|
|
1748
|
+
deliveryStatus: { "@id": "schema:deliveryStatus" },
|
|
1749
|
+
deliveryTime: { "@id": "schema:deliveryTime" },
|
|
1750
|
+
department: { "@id": "schema:department" },
|
|
1751
|
+
departureAirport: { "@id": "schema:departureAirport" },
|
|
1752
|
+
departureBoatTerminal: { "@id": "schema:departureBoatTerminal" },
|
|
1753
|
+
departureBusStop: { "@id": "schema:departureBusStop" },
|
|
1754
|
+
departureGate: { "@id": "schema:departureGate" },
|
|
1755
|
+
departurePlatform: { "@id": "schema:departurePlatform" },
|
|
1756
|
+
departureStation: { "@id": "schema:departureStation" },
|
|
1757
|
+
departureTerminal: { "@id": "schema:departureTerminal" },
|
|
1758
|
+
departureTime: { "@id": "schema:departureTime" },
|
|
1759
|
+
dependencies: { "@id": "schema:dependencies" },
|
|
1760
|
+
depth: { "@id": "schema:depth" },
|
|
1761
|
+
description: { "@id": "schema:description" },
|
|
1762
|
+
device: { "@id": "schema:device" },
|
|
1763
|
+
diagnosis: { "@id": "schema:diagnosis" },
|
|
1764
|
+
diagram: { "@id": "schema:diagram" },
|
|
1765
|
+
diet: { "@id": "schema:diet" },
|
|
1766
|
+
dietFeatures: { "@id": "schema:dietFeatures" },
|
|
1767
|
+
differentialDiagnosis: { "@id": "schema:differentialDiagnosis" },
|
|
1768
|
+
director: { "@id": "schema:director" },
|
|
1769
|
+
directors: { "@id": "schema:directors" },
|
|
1770
|
+
disambiguatingDescription: { "@id": "schema:disambiguatingDescription" },
|
|
1771
|
+
discount: { "@id": "schema:discount" },
|
|
1772
|
+
discountCode: { "@id": "schema:discountCode" },
|
|
1773
|
+
discountCurrency: { "@id": "schema:discountCurrency" },
|
|
1774
|
+
discusses: { "@id": "schema:discusses" },
|
|
1775
|
+
discussionUrl: {
|
|
1776
|
+
"@id": "schema:discussionUrl",
|
|
1777
|
+
"@type": "@id"
|
|
1778
|
+
},
|
|
1779
|
+
diseasePreventionInfo: {
|
|
1780
|
+
"@id": "schema:diseasePreventionInfo",
|
|
1781
|
+
"@type": "@id"
|
|
1782
|
+
},
|
|
1783
|
+
diseaseSpreadStatistics: {
|
|
1784
|
+
"@id": "schema:diseaseSpreadStatistics",
|
|
1785
|
+
"@type": "@id"
|
|
1786
|
+
},
|
|
1787
|
+
dissolutionDate: {
|
|
1788
|
+
"@id": "schema:dissolutionDate",
|
|
1789
|
+
"@type": "Date"
|
|
1790
|
+
},
|
|
1791
|
+
distance: { "@id": "schema:distance" },
|
|
1792
|
+
distinguishingSign: { "@id": "schema:distinguishingSign" },
|
|
1793
|
+
distribution: { "@id": "schema:distribution" },
|
|
1794
|
+
diversityPolicy: {
|
|
1795
|
+
"@id": "schema:diversityPolicy",
|
|
1796
|
+
"@type": "@id"
|
|
1797
|
+
},
|
|
1798
|
+
diversityStaffingReport: {
|
|
1799
|
+
"@id": "schema:diversityStaffingReport",
|
|
1800
|
+
"@type": "@id"
|
|
1801
|
+
},
|
|
1802
|
+
documentation: {
|
|
1803
|
+
"@id": "schema:documentation",
|
|
1804
|
+
"@type": "@id"
|
|
1805
|
+
},
|
|
1806
|
+
doesNotShip: { "@id": "schema:doesNotShip" },
|
|
1807
|
+
domainIncludes: { "@id": "schema:domainIncludes" },
|
|
1808
|
+
domiciledMortgage: { "@id": "schema:domiciledMortgage" },
|
|
1809
|
+
doorTime: { "@id": "schema:doorTime" },
|
|
1810
|
+
dosageForm: { "@id": "schema:dosageForm" },
|
|
1811
|
+
doseSchedule: { "@id": "schema:doseSchedule" },
|
|
1812
|
+
doseUnit: { "@id": "schema:doseUnit" },
|
|
1813
|
+
doseValue: { "@id": "schema:doseValue" },
|
|
1814
|
+
downPayment: { "@id": "schema:downPayment" },
|
|
1815
|
+
downloadUrl: {
|
|
1816
|
+
"@id": "schema:downloadUrl",
|
|
1817
|
+
"@type": "@id"
|
|
1818
|
+
},
|
|
1819
|
+
downvoteCount: { "@id": "schema:downvoteCount" },
|
|
1820
|
+
drainsTo: { "@id": "schema:drainsTo" },
|
|
1821
|
+
driveWheelConfiguration: { "@id": "schema:driveWheelConfiguration" },
|
|
1822
|
+
dropoffLocation: { "@id": "schema:dropoffLocation" },
|
|
1823
|
+
dropoffTime: { "@id": "schema:dropoffTime" },
|
|
1824
|
+
drug: { "@id": "schema:drug" },
|
|
1825
|
+
drugClass: { "@id": "schema:drugClass" },
|
|
1826
|
+
drugUnit: { "@id": "schema:drugUnit" },
|
|
1827
|
+
duns: { "@id": "schema:duns" },
|
|
1828
|
+
duplicateTherapy: { "@id": "schema:duplicateTherapy" },
|
|
1829
|
+
duration: { "@id": "schema:duration" },
|
|
1830
|
+
durationOfWarranty: { "@id": "schema:durationOfWarranty" },
|
|
1831
|
+
duringMedia: {
|
|
1832
|
+
"@id": "schema:duringMedia",
|
|
1833
|
+
"@type": "@id"
|
|
1834
|
+
},
|
|
1835
|
+
earlyPrepaymentPenalty: { "@id": "schema:earlyPrepaymentPenalty" },
|
|
1836
|
+
editEIDR: { "@id": "schema:editEIDR" },
|
|
1837
|
+
editor: { "@id": "schema:editor" },
|
|
1838
|
+
eduQuestionType: { "@id": "schema:eduQuestionType" },
|
|
1839
|
+
educationRequirements: { "@id": "schema:educationRequirements" },
|
|
1840
|
+
educationalAlignment: { "@id": "schema:educationalAlignment" },
|
|
1841
|
+
educationalCredentialAwarded: { "@id": "schema:educationalCredentialAwarded" },
|
|
1842
|
+
educationalFramework: { "@id": "schema:educationalFramework" },
|
|
1843
|
+
educationalLevel: { "@id": "schema:educationalLevel" },
|
|
1844
|
+
educationalProgramMode: { "@id": "schema:educationalProgramMode" },
|
|
1845
|
+
educationalRole: { "@id": "schema:educationalRole" },
|
|
1846
|
+
educationalUse: { "@id": "schema:educationalUse" },
|
|
1847
|
+
elevation: { "@id": "schema:elevation" },
|
|
1848
|
+
eligibilityToWorkRequirement: { "@id": "schema:eligibilityToWorkRequirement" },
|
|
1849
|
+
eligibleCustomerType: { "@id": "schema:eligibleCustomerType" },
|
|
1850
|
+
eligibleDuration: { "@id": "schema:eligibleDuration" },
|
|
1851
|
+
eligibleQuantity: { "@id": "schema:eligibleQuantity" },
|
|
1852
|
+
eligibleRegion: { "@id": "schema:eligibleRegion" },
|
|
1853
|
+
eligibleTransactionVolume: { "@id": "schema:eligibleTransactionVolume" },
|
|
1854
|
+
email: { "@id": "schema:email" },
|
|
1855
|
+
embedUrl: {
|
|
1856
|
+
"@id": "schema:embedUrl",
|
|
1857
|
+
"@type": "@id"
|
|
1858
|
+
},
|
|
1859
|
+
emissionsCO2: { "@id": "schema:emissionsCO2" },
|
|
1860
|
+
employee: { "@id": "schema:employee" },
|
|
1861
|
+
employees: { "@id": "schema:employees" },
|
|
1862
|
+
employerOverview: { "@id": "schema:employerOverview" },
|
|
1863
|
+
employmentType: { "@id": "schema:employmentType" },
|
|
1864
|
+
employmentUnit: { "@id": "schema:employmentUnit" },
|
|
1865
|
+
encodesCreativeWork: { "@id": "schema:encodesCreativeWork" },
|
|
1866
|
+
encoding: { "@id": "schema:encoding" },
|
|
1867
|
+
encodingFormat: { "@id": "schema:encodingFormat" },
|
|
1868
|
+
encodingType: { "@id": "schema:encodingType" },
|
|
1869
|
+
encodings: { "@id": "schema:encodings" },
|
|
1870
|
+
endDate: {
|
|
1871
|
+
"@id": "schema:endDate",
|
|
1872
|
+
"@type": "Date"
|
|
1873
|
+
},
|
|
1874
|
+
endOffset: { "@id": "schema:endOffset" },
|
|
1875
|
+
endTime: { "@id": "schema:endTime" },
|
|
1876
|
+
endorsee: { "@id": "schema:endorsee" },
|
|
1877
|
+
endorsers: { "@id": "schema:endorsers" },
|
|
1878
|
+
energyEfficiencyScaleMax: { "@id": "schema:energyEfficiencyScaleMax" },
|
|
1879
|
+
energyEfficiencyScaleMin: { "@id": "schema:energyEfficiencyScaleMin" },
|
|
1880
|
+
engineDisplacement: { "@id": "schema:engineDisplacement" },
|
|
1881
|
+
enginePower: { "@id": "schema:enginePower" },
|
|
1882
|
+
engineType: { "@id": "schema:engineType" },
|
|
1883
|
+
entertainmentBusiness: { "@id": "schema:entertainmentBusiness" },
|
|
1884
|
+
epidemiology: { "@id": "schema:epidemiology" },
|
|
1885
|
+
episode: { "@id": "schema:episode" },
|
|
1886
|
+
episodeNumber: { "@id": "schema:episodeNumber" },
|
|
1887
|
+
episodes: { "@id": "schema:episodes" },
|
|
1888
|
+
equal: { "@id": "schema:equal" },
|
|
1889
|
+
error: { "@id": "schema:error" },
|
|
1890
|
+
estimatedCost: { "@id": "schema:estimatedCost" },
|
|
1891
|
+
estimatedFlightDuration: { "@id": "schema:estimatedFlightDuration" },
|
|
1892
|
+
estimatedSalary: { "@id": "schema:estimatedSalary" },
|
|
1893
|
+
estimatesRiskOf: { "@id": "schema:estimatesRiskOf" },
|
|
1894
|
+
ethicsPolicy: {
|
|
1895
|
+
"@id": "schema:ethicsPolicy",
|
|
1896
|
+
"@type": "@id"
|
|
1897
|
+
},
|
|
1898
|
+
event: { "@id": "schema:event" },
|
|
1899
|
+
eventAttendanceMode: { "@id": "schema:eventAttendanceMode" },
|
|
1900
|
+
eventSchedule: { "@id": "schema:eventSchedule" },
|
|
1901
|
+
eventStatus: { "@id": "schema:eventStatus" },
|
|
1902
|
+
events: { "@id": "schema:events" },
|
|
1903
|
+
evidenceLevel: { "@id": "schema:evidenceLevel" },
|
|
1904
|
+
evidenceOrigin: { "@id": "schema:evidenceOrigin" },
|
|
1905
|
+
exampleOfWork: { "@id": "schema:exampleOfWork" },
|
|
1906
|
+
exceptDate: {
|
|
1907
|
+
"@id": "schema:exceptDate",
|
|
1908
|
+
"@type": "Date"
|
|
1909
|
+
},
|
|
1910
|
+
exchangeRateSpread: { "@id": "schema:exchangeRateSpread" },
|
|
1911
|
+
executableLibraryName: { "@id": "schema:executableLibraryName" },
|
|
1912
|
+
exerciseCourse: { "@id": "schema:exerciseCourse" },
|
|
1913
|
+
exercisePlan: { "@id": "schema:exercisePlan" },
|
|
1914
|
+
exerciseRelatedDiet: { "@id": "schema:exerciseRelatedDiet" },
|
|
1915
|
+
exerciseType: { "@id": "schema:exerciseType" },
|
|
1916
|
+
exifData: { "@id": "schema:exifData" },
|
|
1917
|
+
expectedArrivalFrom: {
|
|
1918
|
+
"@id": "schema:expectedArrivalFrom",
|
|
1919
|
+
"@type": "Date"
|
|
1920
|
+
},
|
|
1921
|
+
expectedArrivalUntil: {
|
|
1922
|
+
"@id": "schema:expectedArrivalUntil",
|
|
1923
|
+
"@type": "Date"
|
|
1924
|
+
},
|
|
1925
|
+
expectedPrognosis: { "@id": "schema:expectedPrognosis" },
|
|
1926
|
+
expectsAcceptanceOf: { "@id": "schema:expectsAcceptanceOf" },
|
|
1927
|
+
experienceInPlaceOfEducation: { "@id": "schema:experienceInPlaceOfEducation" },
|
|
1928
|
+
experienceRequirements: { "@id": "schema:experienceRequirements" },
|
|
1929
|
+
expertConsiderations: { "@id": "schema:expertConsiderations" },
|
|
1930
|
+
expires: {
|
|
1931
|
+
"@id": "schema:expires",
|
|
1932
|
+
"@type": "Date"
|
|
1933
|
+
},
|
|
1934
|
+
familyName: { "@id": "schema:familyName" },
|
|
1935
|
+
fatContent: { "@id": "schema:fatContent" },
|
|
1936
|
+
faxNumber: { "@id": "schema:faxNumber" },
|
|
1937
|
+
featureList: { "@id": "schema:featureList" },
|
|
1938
|
+
feesAndCommissionsSpecification: { "@id": "schema:feesAndCommissionsSpecification" },
|
|
1939
|
+
fiberContent: { "@id": "schema:fiberContent" },
|
|
1940
|
+
fileFormat: { "@id": "schema:fileFormat" },
|
|
1941
|
+
fileSize: { "@id": "schema:fileSize" },
|
|
1942
|
+
financialAidEligible: { "@id": "schema:financialAidEligible" },
|
|
1943
|
+
firstAppearance: { "@id": "schema:firstAppearance" },
|
|
1944
|
+
firstPerformance: { "@id": "schema:firstPerformance" },
|
|
1945
|
+
flightDistance: { "@id": "schema:flightDistance" },
|
|
1946
|
+
flightNumber: { "@id": "schema:flightNumber" },
|
|
1947
|
+
floorLevel: { "@id": "schema:floorLevel" },
|
|
1948
|
+
floorLimit: { "@id": "schema:floorLimit" },
|
|
1949
|
+
floorSize: { "@id": "schema:floorSize" },
|
|
1950
|
+
followee: { "@id": "schema:followee" },
|
|
1951
|
+
follows: { "@id": "schema:follows" },
|
|
1952
|
+
followup: { "@id": "schema:followup" },
|
|
1953
|
+
foodEstablishment: { "@id": "schema:foodEstablishment" },
|
|
1954
|
+
foodEvent: { "@id": "schema:foodEvent" },
|
|
1955
|
+
foodWarning: { "@id": "schema:foodWarning" },
|
|
1956
|
+
founder: { "@id": "schema:founder" },
|
|
1957
|
+
founders: { "@id": "schema:founders" },
|
|
1958
|
+
foundingDate: {
|
|
1959
|
+
"@id": "schema:foundingDate",
|
|
1960
|
+
"@type": "Date"
|
|
1961
|
+
},
|
|
1962
|
+
foundingLocation: { "@id": "schema:foundingLocation" },
|
|
1963
|
+
free: { "@id": "schema:free" },
|
|
1964
|
+
freeShippingThreshold: { "@id": "schema:freeShippingThreshold" },
|
|
1965
|
+
frequency: { "@id": "schema:frequency" },
|
|
1966
|
+
fromLocation: { "@id": "schema:fromLocation" },
|
|
1967
|
+
fuelCapacity: { "@id": "schema:fuelCapacity" },
|
|
1968
|
+
fuelConsumption: { "@id": "schema:fuelConsumption" },
|
|
1969
|
+
fuelEfficiency: { "@id": "schema:fuelEfficiency" },
|
|
1970
|
+
fuelType: { "@id": "schema:fuelType" },
|
|
1971
|
+
functionalClass: { "@id": "schema:functionalClass" },
|
|
1972
|
+
fundedItem: { "@id": "schema:fundedItem" },
|
|
1973
|
+
funder: { "@id": "schema:funder" },
|
|
1974
|
+
game: { "@id": "schema:game" },
|
|
1975
|
+
gameItem: { "@id": "schema:gameItem" },
|
|
1976
|
+
gameLocation: {
|
|
1977
|
+
"@id": "schema:gameLocation",
|
|
1978
|
+
"@type": "@id"
|
|
1979
|
+
},
|
|
1980
|
+
gamePlatform: { "@id": "schema:gamePlatform" },
|
|
1981
|
+
gameServer: { "@id": "schema:gameServer" },
|
|
1982
|
+
gameTip: { "@id": "schema:gameTip" },
|
|
1983
|
+
gender: { "@id": "schema:gender" },
|
|
1984
|
+
genre: { "@id": "schema:genre" },
|
|
1985
|
+
geo: { "@id": "schema:geo" },
|
|
1986
|
+
geoContains: { "@id": "schema:geoContains" },
|
|
1987
|
+
geoCoveredBy: { "@id": "schema:geoCoveredBy" },
|
|
1988
|
+
geoCovers: { "@id": "schema:geoCovers" },
|
|
1989
|
+
geoCrosses: { "@id": "schema:geoCrosses" },
|
|
1990
|
+
geoDisjoint: { "@id": "schema:geoDisjoint" },
|
|
1991
|
+
geoEquals: { "@id": "schema:geoEquals" },
|
|
1992
|
+
geoIntersects: { "@id": "schema:geoIntersects" },
|
|
1993
|
+
geoMidpoint: { "@id": "schema:geoMidpoint" },
|
|
1994
|
+
geoOverlaps: { "@id": "schema:geoOverlaps" },
|
|
1995
|
+
geoRadius: { "@id": "schema:geoRadius" },
|
|
1996
|
+
geoTouches: { "@id": "schema:geoTouches" },
|
|
1997
|
+
geoWithin: { "@id": "schema:geoWithin" },
|
|
1998
|
+
geographicArea: { "@id": "schema:geographicArea" },
|
|
1999
|
+
gettingTestedInfo: {
|
|
2000
|
+
"@id": "schema:gettingTestedInfo",
|
|
2001
|
+
"@type": "@id"
|
|
2002
|
+
},
|
|
2003
|
+
givenName: { "@id": "schema:givenName" },
|
|
2004
|
+
globalLocationNumber: { "@id": "schema:globalLocationNumber" },
|
|
2005
|
+
governmentBenefitsInfo: { "@id": "schema:governmentBenefitsInfo" },
|
|
2006
|
+
gracePeriod: { "@id": "schema:gracePeriod" },
|
|
2007
|
+
grantee: { "@id": "schema:grantee" },
|
|
2008
|
+
greater: { "@id": "schema:greater" },
|
|
2009
|
+
greaterOrEqual: { "@id": "schema:greaterOrEqual" },
|
|
2010
|
+
gtin: { "@id": "schema:gtin" },
|
|
2011
|
+
gtin12: { "@id": "schema:gtin12" },
|
|
2012
|
+
gtin13: { "@id": "schema:gtin13" },
|
|
2013
|
+
gtin14: { "@id": "schema:gtin14" },
|
|
2014
|
+
gtin8: { "@id": "schema:gtin8" },
|
|
2015
|
+
guideline: { "@id": "schema:guideline" },
|
|
2016
|
+
guidelineDate: {
|
|
2017
|
+
"@id": "schema:guidelineDate",
|
|
2018
|
+
"@type": "Date"
|
|
2019
|
+
},
|
|
2020
|
+
guidelineSubject: { "@id": "schema:guidelineSubject" },
|
|
2021
|
+
handlingTime: { "@id": "schema:handlingTime" },
|
|
2022
|
+
hasBroadcastChannel: { "@id": "schema:hasBroadcastChannel" },
|
|
2023
|
+
hasCategoryCode: { "@id": "schema:hasCategoryCode" },
|
|
2024
|
+
hasCourse: { "@id": "schema:hasCourse" },
|
|
2025
|
+
hasCourseInstance: { "@id": "schema:hasCourseInstance" },
|
|
2026
|
+
hasCredential: { "@id": "schema:hasCredential" },
|
|
2027
|
+
hasDefinedTerm: { "@id": "schema:hasDefinedTerm" },
|
|
2028
|
+
hasDeliveryMethod: { "@id": "schema:hasDeliveryMethod" },
|
|
2029
|
+
hasDigitalDocumentPermission: { "@id": "schema:hasDigitalDocumentPermission" },
|
|
2030
|
+
hasDriveThroughService: { "@id": "schema:hasDriveThroughService" },
|
|
2031
|
+
hasEnergyConsumptionDetails: { "@id": "schema:hasEnergyConsumptionDetails" },
|
|
2032
|
+
hasEnergyEfficiencyCategory: { "@id": "schema:hasEnergyEfficiencyCategory" },
|
|
2033
|
+
hasHealthAspect: { "@id": "schema:hasHealthAspect" },
|
|
2034
|
+
hasMap: {
|
|
2035
|
+
"@id": "schema:hasMap",
|
|
2036
|
+
"@type": "@id"
|
|
2037
|
+
},
|
|
2038
|
+
hasMeasurement: { "@id": "schema:hasMeasurement" },
|
|
2039
|
+
hasMenu: { "@id": "schema:hasMenu" },
|
|
2040
|
+
hasMenuItem: { "@id": "schema:hasMenuItem" },
|
|
2041
|
+
hasMenuSection: { "@id": "schema:hasMenuSection" },
|
|
2042
|
+
hasMerchantReturnPolicy: { "@id": "schema:hasMerchantReturnPolicy" },
|
|
2043
|
+
hasOccupation: { "@id": "schema:hasOccupation" },
|
|
2044
|
+
hasOfferCatalog: { "@id": "schema:hasOfferCatalog" },
|
|
2045
|
+
hasPOS: { "@id": "schema:hasPOS" },
|
|
2046
|
+
hasPart: { "@id": "schema:hasPart" },
|
|
2047
|
+
hasProductReturnPolicy: { "@id": "schema:hasProductReturnPolicy" },
|
|
2048
|
+
hasVariant: { "@id": "schema:hasVariant" },
|
|
2049
|
+
headline: { "@id": "schema:headline" },
|
|
2050
|
+
healthCondition: { "@id": "schema:healthCondition" },
|
|
2051
|
+
healthPlanCoinsuranceOption: { "@id": "schema:healthPlanCoinsuranceOption" },
|
|
2052
|
+
healthPlanCoinsuranceRate: { "@id": "schema:healthPlanCoinsuranceRate" },
|
|
2053
|
+
healthPlanCopay: { "@id": "schema:healthPlanCopay" },
|
|
2054
|
+
healthPlanCopayOption: { "@id": "schema:healthPlanCopayOption" },
|
|
2055
|
+
healthPlanCostSharing: { "@id": "schema:healthPlanCostSharing" },
|
|
2056
|
+
healthPlanDrugOption: { "@id": "schema:healthPlanDrugOption" },
|
|
2057
|
+
healthPlanDrugTier: { "@id": "schema:healthPlanDrugTier" },
|
|
2058
|
+
healthPlanId: { "@id": "schema:healthPlanId" },
|
|
2059
|
+
healthPlanMarketingUrl: {
|
|
2060
|
+
"@id": "schema:healthPlanMarketingUrl",
|
|
2061
|
+
"@type": "@id"
|
|
2062
|
+
},
|
|
2063
|
+
healthPlanNetworkId: { "@id": "schema:healthPlanNetworkId" },
|
|
2064
|
+
healthPlanNetworkTier: { "@id": "schema:healthPlanNetworkTier" },
|
|
2065
|
+
healthPlanPharmacyCategory: { "@id": "schema:healthPlanPharmacyCategory" },
|
|
2066
|
+
healthcareReportingData: { "@id": "schema:healthcareReportingData" },
|
|
2067
|
+
height: { "@id": "schema:height" },
|
|
2068
|
+
highPrice: { "@id": "schema:highPrice" },
|
|
2069
|
+
hiringOrganization: { "@id": "schema:hiringOrganization" },
|
|
2070
|
+
holdingArchive: { "@id": "schema:holdingArchive" },
|
|
2071
|
+
homeLocation: { "@id": "schema:homeLocation" },
|
|
2072
|
+
homeTeam: { "@id": "schema:homeTeam" },
|
|
2073
|
+
honorificPrefix: { "@id": "schema:honorificPrefix" },
|
|
2074
|
+
honorificSuffix: { "@id": "schema:honorificSuffix" },
|
|
2075
|
+
hospitalAffiliation: { "@id": "schema:hospitalAffiliation" },
|
|
2076
|
+
hostingOrganization: { "@id": "schema:hostingOrganization" },
|
|
2077
|
+
hoursAvailable: { "@id": "schema:hoursAvailable" },
|
|
2078
|
+
howPerformed: { "@id": "schema:howPerformed" },
|
|
2079
|
+
httpMethod: { "@id": "schema:httpMethod" },
|
|
2080
|
+
iataCode: { "@id": "schema:iataCode" },
|
|
2081
|
+
icaoCode: { "@id": "schema:icaoCode" },
|
|
2082
|
+
identifier: { "@id": "schema:identifier" },
|
|
2083
|
+
identifyingExam: { "@id": "schema:identifyingExam" },
|
|
2084
|
+
identifyingTest: { "@id": "schema:identifyingTest" },
|
|
2085
|
+
illustrator: { "@id": "schema:illustrator" },
|
|
2086
|
+
image: {
|
|
2087
|
+
"@id": "schema:image",
|
|
2088
|
+
"@type": "@id"
|
|
2089
|
+
},
|
|
2090
|
+
imagingTechnique: { "@id": "schema:imagingTechnique" },
|
|
2091
|
+
inAlbum: { "@id": "schema:inAlbum" },
|
|
2092
|
+
inBroadcastLineup: { "@id": "schema:inBroadcastLineup" },
|
|
2093
|
+
inCodeSet: {
|
|
2094
|
+
"@id": "schema:inCodeSet",
|
|
2095
|
+
"@type": "@id"
|
|
2096
|
+
},
|
|
2097
|
+
inDefinedTermSet: {
|
|
2098
|
+
"@id": "schema:inDefinedTermSet",
|
|
2099
|
+
"@type": "@id"
|
|
2100
|
+
},
|
|
2101
|
+
inLanguage: { "@id": "schema:inLanguage" },
|
|
2102
|
+
inPlaylist: { "@id": "schema:inPlaylist" },
|
|
2103
|
+
inProductGroupWithID: { "@id": "schema:inProductGroupWithID" },
|
|
2104
|
+
inStoreReturnsOffered: { "@id": "schema:inStoreReturnsOffered" },
|
|
2105
|
+
inSupportOf: { "@id": "schema:inSupportOf" },
|
|
2106
|
+
incentiveCompensation: { "@id": "schema:incentiveCompensation" },
|
|
2107
|
+
incentives: { "@id": "schema:incentives" },
|
|
2108
|
+
includedComposition: { "@id": "schema:includedComposition" },
|
|
2109
|
+
includedDataCatalog: { "@id": "schema:includedDataCatalog" },
|
|
2110
|
+
includedInDataCatalog: { "@id": "schema:includedInDataCatalog" },
|
|
2111
|
+
includedInHealthInsurancePlan: { "@id": "schema:includedInHealthInsurancePlan" },
|
|
2112
|
+
includedRiskFactor: { "@id": "schema:includedRiskFactor" },
|
|
2113
|
+
includesAttraction: { "@id": "schema:includesAttraction" },
|
|
2114
|
+
includesHealthPlanFormulary: { "@id": "schema:includesHealthPlanFormulary" },
|
|
2115
|
+
includesHealthPlanNetwork: { "@id": "schema:includesHealthPlanNetwork" },
|
|
2116
|
+
includesObject: { "@id": "schema:includesObject" },
|
|
2117
|
+
increasesRiskOf: { "@id": "schema:increasesRiskOf" },
|
|
2118
|
+
industry: { "@id": "schema:industry" },
|
|
2119
|
+
ineligibleRegion: { "@id": "schema:ineligibleRegion" },
|
|
2120
|
+
infectiousAgent: { "@id": "schema:infectiousAgent" },
|
|
2121
|
+
infectiousAgentClass: { "@id": "schema:infectiousAgentClass" },
|
|
2122
|
+
ingredients: { "@id": "schema:ingredients" },
|
|
2123
|
+
inker: { "@id": "schema:inker" },
|
|
2124
|
+
insertion: { "@id": "schema:insertion" },
|
|
2125
|
+
installUrl: {
|
|
2126
|
+
"@id": "schema:installUrl",
|
|
2127
|
+
"@type": "@id"
|
|
2128
|
+
},
|
|
2129
|
+
instructor: { "@id": "schema:instructor" },
|
|
2130
|
+
instrument: { "@id": "schema:instrument" },
|
|
2131
|
+
intensity: { "@id": "schema:intensity" },
|
|
2132
|
+
interactingDrug: { "@id": "schema:interactingDrug" },
|
|
2133
|
+
interactionCount: { "@id": "schema:interactionCount" },
|
|
2134
|
+
interactionService: { "@id": "schema:interactionService" },
|
|
2135
|
+
interactionStatistic: { "@id": "schema:interactionStatistic" },
|
|
2136
|
+
interactionType: { "@id": "schema:interactionType" },
|
|
2137
|
+
interactivityType: { "@id": "schema:interactivityType" },
|
|
2138
|
+
interestRate: { "@id": "schema:interestRate" },
|
|
2139
|
+
inventoryLevel: { "@id": "schema:inventoryLevel" },
|
|
2140
|
+
inverseOf: { "@id": "schema:inverseOf" },
|
|
2141
|
+
isAcceptingNewPatients: { "@id": "schema:isAcceptingNewPatients" },
|
|
2142
|
+
isAccessibleForFree: { "@id": "schema:isAccessibleForFree" },
|
|
2143
|
+
isAccessoryOrSparePartFor: { "@id": "schema:isAccessoryOrSparePartFor" },
|
|
2144
|
+
isAvailableGenerically: { "@id": "schema:isAvailableGenerically" },
|
|
2145
|
+
isBasedOn: {
|
|
2146
|
+
"@id": "schema:isBasedOn",
|
|
2147
|
+
"@type": "@id"
|
|
2148
|
+
},
|
|
2149
|
+
isBasedOnUrl: {
|
|
2150
|
+
"@id": "schema:isBasedOnUrl",
|
|
2151
|
+
"@type": "@id"
|
|
2152
|
+
},
|
|
2153
|
+
isConsumableFor: { "@id": "schema:isConsumableFor" },
|
|
2154
|
+
isFamilyFriendly: { "@id": "schema:isFamilyFriendly" },
|
|
2155
|
+
isGift: { "@id": "schema:isGift" },
|
|
2156
|
+
isLiveBroadcast: { "@id": "schema:isLiveBroadcast" },
|
|
2157
|
+
isPartOf: {
|
|
2158
|
+
"@id": "schema:isPartOf",
|
|
2159
|
+
"@type": "@id"
|
|
2160
|
+
},
|
|
2161
|
+
isPlanForApartment: { "@id": "schema:isPlanForApartment" },
|
|
2162
|
+
isProprietary: { "@id": "schema:isProprietary" },
|
|
2163
|
+
isRelatedTo: { "@id": "schema:isRelatedTo" },
|
|
2164
|
+
isResizable: { "@id": "schema:isResizable" },
|
|
2165
|
+
isSimilarTo: { "@id": "schema:isSimilarTo" },
|
|
2166
|
+
isUnlabelledFallback: { "@id": "schema:isUnlabelledFallback" },
|
|
2167
|
+
isVariantOf: { "@id": "schema:isVariantOf" },
|
|
2168
|
+
isbn: { "@id": "schema:isbn" },
|
|
2169
|
+
isicV4: { "@id": "schema:isicV4" },
|
|
2170
|
+
isrcCode: { "@id": "schema:isrcCode" },
|
|
2171
|
+
issn: { "@id": "schema:issn" },
|
|
2172
|
+
issueNumber: { "@id": "schema:issueNumber" },
|
|
2173
|
+
issuedBy: { "@id": "schema:issuedBy" },
|
|
2174
|
+
issuedThrough: { "@id": "schema:issuedThrough" },
|
|
2175
|
+
iswcCode: { "@id": "schema:iswcCode" },
|
|
2176
|
+
item: { "@id": "schema:item" },
|
|
2177
|
+
itemCondition: { "@id": "schema:itemCondition" },
|
|
2178
|
+
itemListElement: { "@id": "schema:itemListElement" },
|
|
2179
|
+
itemListOrder: { "@id": "schema:itemListOrder" },
|
|
2180
|
+
itemLocation: { "@id": "schema:itemLocation" },
|
|
2181
|
+
itemOffered: { "@id": "schema:itemOffered" },
|
|
2182
|
+
itemReviewed: { "@id": "schema:itemReviewed" },
|
|
2183
|
+
itemShipped: { "@id": "schema:itemShipped" },
|
|
2184
|
+
itinerary: { "@id": "schema:itinerary" },
|
|
2185
|
+
jobBenefits: { "@id": "schema:jobBenefits" },
|
|
2186
|
+
jobImmediateStart: { "@id": "schema:jobImmediateStart" },
|
|
2187
|
+
jobLocation: { "@id": "schema:jobLocation" },
|
|
2188
|
+
jobLocationType: { "@id": "schema:jobLocationType" },
|
|
2189
|
+
jobStartDate: { "@id": "schema:jobStartDate" },
|
|
2190
|
+
jobTitle: { "@id": "schema:jobTitle" },
|
|
2191
|
+
jurisdiction: { "@id": "schema:jurisdiction" },
|
|
2192
|
+
keywords: { "@id": "schema:keywords" },
|
|
2193
|
+
knownVehicleDamages: { "@id": "schema:knownVehicleDamages" },
|
|
2194
|
+
knows: { "@id": "schema:knows" },
|
|
2195
|
+
knowsAbout: { "@id": "schema:knowsAbout" },
|
|
2196
|
+
knowsLanguage: { "@id": "schema:knowsLanguage" },
|
|
2197
|
+
labelDetails: {
|
|
2198
|
+
"@id": "schema:labelDetails",
|
|
2199
|
+
"@type": "@id"
|
|
2200
|
+
},
|
|
2201
|
+
landlord: { "@id": "schema:landlord" },
|
|
2202
|
+
language: { "@id": "schema:language" },
|
|
2203
|
+
lastReviewed: {
|
|
2204
|
+
"@id": "schema:lastReviewed",
|
|
2205
|
+
"@type": "Date"
|
|
2206
|
+
},
|
|
2207
|
+
latitude: { "@id": "schema:latitude" },
|
|
2208
|
+
layoutImage: {
|
|
2209
|
+
"@id": "schema:layoutImage",
|
|
2210
|
+
"@type": "@id"
|
|
2211
|
+
},
|
|
2212
|
+
learningResourceType: { "@id": "schema:learningResourceType" },
|
|
2213
|
+
leaseLength: { "@id": "schema:leaseLength" },
|
|
2214
|
+
legalName: { "@id": "schema:legalName" },
|
|
2215
|
+
legalStatus: { "@id": "schema:legalStatus" },
|
|
2216
|
+
legislationApplies: { "@id": "schema:legislationApplies" },
|
|
2217
|
+
legislationChanges: { "@id": "schema:legislationChanges" },
|
|
2218
|
+
legislationConsolidates: { "@id": "schema:legislationConsolidates" },
|
|
2219
|
+
legislationDate: {
|
|
2220
|
+
"@id": "schema:legislationDate",
|
|
2221
|
+
"@type": "Date"
|
|
2222
|
+
},
|
|
2223
|
+
legislationDateVersion: {
|
|
2224
|
+
"@id": "schema:legislationDateVersion",
|
|
2225
|
+
"@type": "Date"
|
|
2226
|
+
},
|
|
2227
|
+
legislationIdentifier: { "@id": "schema:legislationIdentifier" },
|
|
2228
|
+
legislationJurisdiction: { "@id": "schema:legislationJurisdiction" },
|
|
2229
|
+
legislationLegalForce: { "@id": "schema:legislationLegalForce" },
|
|
2230
|
+
legislationLegalValue: { "@id": "schema:legislationLegalValue" },
|
|
2231
|
+
legislationPassedBy: { "@id": "schema:legislationPassedBy" },
|
|
2232
|
+
legislationResponsible: { "@id": "schema:legislationResponsible" },
|
|
2233
|
+
legislationTransposes: { "@id": "schema:legislationTransposes" },
|
|
2234
|
+
legislationType: { "@id": "schema:legislationType" },
|
|
2235
|
+
leiCode: { "@id": "schema:leiCode" },
|
|
2236
|
+
lender: { "@id": "schema:lender" },
|
|
2237
|
+
lesser: { "@id": "schema:lesser" },
|
|
2238
|
+
lesserOrEqual: { "@id": "schema:lesserOrEqual" },
|
|
2239
|
+
letterer: { "@id": "schema:letterer" },
|
|
2240
|
+
license: {
|
|
2241
|
+
"@id": "schema:license",
|
|
2242
|
+
"@type": "@id"
|
|
2243
|
+
},
|
|
2244
|
+
line: { "@id": "schema:line" },
|
|
2245
|
+
linkRelationship: { "@id": "schema:linkRelationship" },
|
|
2246
|
+
liveBlogUpdate: { "@id": "schema:liveBlogUpdate" },
|
|
2247
|
+
loanMortgageMandateAmount: { "@id": "schema:loanMortgageMandateAmount" },
|
|
2248
|
+
loanPaymentAmount: { "@id": "schema:loanPaymentAmount" },
|
|
2249
|
+
loanPaymentFrequency: { "@id": "schema:loanPaymentFrequency" },
|
|
2250
|
+
loanRepaymentForm: { "@id": "schema:loanRepaymentForm" },
|
|
2251
|
+
loanTerm: { "@id": "schema:loanTerm" },
|
|
2252
|
+
loanType: { "@id": "schema:loanType" },
|
|
2253
|
+
location: { "@id": "schema:location" },
|
|
2254
|
+
locationCreated: { "@id": "schema:locationCreated" },
|
|
2255
|
+
lodgingUnitDescription: { "@id": "schema:lodgingUnitDescription" },
|
|
2256
|
+
lodgingUnitType: { "@id": "schema:lodgingUnitType" },
|
|
2257
|
+
logo: {
|
|
2258
|
+
"@id": "schema:logo",
|
|
2259
|
+
"@type": "@id"
|
|
2260
|
+
},
|
|
2261
|
+
longitude: { "@id": "schema:longitude" },
|
|
2262
|
+
loser: { "@id": "schema:loser" },
|
|
2263
|
+
lowPrice: { "@id": "schema:lowPrice" },
|
|
2264
|
+
lyricist: { "@id": "schema:lyricist" },
|
|
2265
|
+
lyrics: { "@id": "schema:lyrics" },
|
|
2266
|
+
mainContentOfPage: { "@id": "schema:mainContentOfPage" },
|
|
2267
|
+
mainEntity: { "@id": "schema:mainEntity" },
|
|
2268
|
+
mainEntityOfPage: {
|
|
2269
|
+
"@id": "schema:mainEntityOfPage",
|
|
2270
|
+
"@type": "@id"
|
|
2271
|
+
},
|
|
2272
|
+
maintainer: { "@id": "schema:maintainer" },
|
|
2273
|
+
makesOffer: { "@id": "schema:makesOffer" },
|
|
2274
|
+
manufacturer: { "@id": "schema:manufacturer" },
|
|
2275
|
+
map: {
|
|
2276
|
+
"@id": "schema:map",
|
|
2277
|
+
"@type": "@id"
|
|
2278
|
+
},
|
|
2279
|
+
mapType: { "@id": "schema:mapType" },
|
|
2280
|
+
maps: {
|
|
2281
|
+
"@id": "schema:maps",
|
|
2282
|
+
"@type": "@id"
|
|
2283
|
+
},
|
|
2284
|
+
marginOfError: { "@id": "schema:marginOfError" },
|
|
2285
|
+
masthead: {
|
|
2286
|
+
"@id": "schema:masthead",
|
|
2287
|
+
"@type": "@id"
|
|
2288
|
+
},
|
|
2289
|
+
material: { "@id": "schema:material" },
|
|
2290
|
+
materialExtent: { "@id": "schema:materialExtent" },
|
|
2291
|
+
mathExpression: { "@id": "schema:mathExpression" },
|
|
2292
|
+
maxPrice: { "@id": "schema:maxPrice" },
|
|
2293
|
+
maxValue: { "@id": "schema:maxValue" },
|
|
2294
|
+
maximumAttendeeCapacity: { "@id": "schema:maximumAttendeeCapacity" },
|
|
2295
|
+
maximumEnrollment: { "@id": "schema:maximumEnrollment" },
|
|
2296
|
+
maximumIntake: { "@id": "schema:maximumIntake" },
|
|
2297
|
+
maximumPhysicalAttendeeCapacity: { "@id": "schema:maximumPhysicalAttendeeCapacity" },
|
|
2298
|
+
maximumVirtualAttendeeCapacity: { "@id": "schema:maximumVirtualAttendeeCapacity" },
|
|
2299
|
+
mealService: { "@id": "schema:mealService" },
|
|
2300
|
+
measuredProperty: { "@id": "schema:measuredProperty" },
|
|
2301
|
+
measuredValue: { "@id": "schema:measuredValue" },
|
|
2302
|
+
measurementTechnique: { "@id": "schema:measurementTechnique" },
|
|
2303
|
+
mechanismOfAction: { "@id": "schema:mechanismOfAction" },
|
|
2304
|
+
mediaAuthenticityCategory: { "@id": "schema:mediaAuthenticityCategory" },
|
|
2305
|
+
median: { "@id": "schema:median" },
|
|
2306
|
+
medicalAudience: { "@id": "schema:medicalAudience" },
|
|
2307
|
+
medicalSpecialty: { "@id": "schema:medicalSpecialty" },
|
|
2308
|
+
medicineSystem: { "@id": "schema:medicineSystem" },
|
|
2309
|
+
meetsEmissionStandard: { "@id": "schema:meetsEmissionStandard" },
|
|
2310
|
+
member: { "@id": "schema:member" },
|
|
2311
|
+
memberOf: { "@id": "schema:memberOf" },
|
|
2312
|
+
members: { "@id": "schema:members" },
|
|
2313
|
+
membershipNumber: { "@id": "schema:membershipNumber" },
|
|
2314
|
+
membershipPointsEarned: { "@id": "schema:membershipPointsEarned" },
|
|
2315
|
+
memoryRequirements: { "@id": "schema:memoryRequirements" },
|
|
2316
|
+
mentions: { "@id": "schema:mentions" },
|
|
2317
|
+
menu: { "@id": "schema:menu" },
|
|
2318
|
+
menuAddOn: { "@id": "schema:menuAddOn" },
|
|
2319
|
+
merchant: { "@id": "schema:merchant" },
|
|
2320
|
+
merchantReturnDays: { "@id": "schema:merchantReturnDays" },
|
|
2321
|
+
merchantReturnLink: {
|
|
2322
|
+
"@id": "schema:merchantReturnLink",
|
|
2323
|
+
"@type": "@id"
|
|
2324
|
+
},
|
|
2325
|
+
messageAttachment: { "@id": "schema:messageAttachment" },
|
|
2326
|
+
mileageFromOdometer: { "@id": "schema:mileageFromOdometer" },
|
|
2327
|
+
minPrice: { "@id": "schema:minPrice" },
|
|
2328
|
+
minValue: { "@id": "schema:minValue" },
|
|
2329
|
+
minimumPaymentDue: { "@id": "schema:minimumPaymentDue" },
|
|
2330
|
+
missionCoveragePrioritiesPolicy: {
|
|
2331
|
+
"@id": "schema:missionCoveragePrioritiesPolicy",
|
|
2332
|
+
"@type": "@id"
|
|
2333
|
+
},
|
|
2334
|
+
model: { "@id": "schema:model" },
|
|
2335
|
+
modelDate: {
|
|
2336
|
+
"@id": "schema:modelDate",
|
|
2337
|
+
"@type": "Date"
|
|
2338
|
+
},
|
|
2339
|
+
modifiedTime: { "@id": "schema:modifiedTime" },
|
|
2340
|
+
monthlyMinimumRepaymentAmount: { "@id": "schema:monthlyMinimumRepaymentAmount" },
|
|
2341
|
+
monthsOfExperience: { "@id": "schema:monthsOfExperience" },
|
|
2342
|
+
mpn: { "@id": "schema:mpn" },
|
|
2343
|
+
multipleValues: { "@id": "schema:multipleValues" },
|
|
2344
|
+
muscleAction: { "@id": "schema:muscleAction" },
|
|
2345
|
+
musicArrangement: { "@id": "schema:musicArrangement" },
|
|
2346
|
+
musicBy: { "@id": "schema:musicBy" },
|
|
2347
|
+
musicCompositionForm: { "@id": "schema:musicCompositionForm" },
|
|
2348
|
+
musicGroupMember: { "@id": "schema:musicGroupMember" },
|
|
2349
|
+
musicReleaseFormat: { "@id": "schema:musicReleaseFormat" },
|
|
2350
|
+
musicalKey: { "@id": "schema:musicalKey" },
|
|
2351
|
+
naics: { "@id": "schema:naics" },
|
|
2352
|
+
name: { "@id": "schema:name" },
|
|
2353
|
+
namedPosition: { "@id": "schema:namedPosition" },
|
|
2354
|
+
nationality: { "@id": "schema:nationality" },
|
|
2355
|
+
naturalProgression: { "@id": "schema:naturalProgression" },
|
|
2356
|
+
nerve: { "@id": "schema:nerve" },
|
|
2357
|
+
nerveMotor: { "@id": "schema:nerveMotor" },
|
|
2358
|
+
netWorth: { "@id": "schema:netWorth" },
|
|
2359
|
+
newsUpdatesAndGuidelines: {
|
|
2360
|
+
"@id": "schema:newsUpdatesAndGuidelines",
|
|
2361
|
+
"@type": "@id"
|
|
2362
|
+
},
|
|
2363
|
+
nextItem: { "@id": "schema:nextItem" },
|
|
2364
|
+
noBylinesPolicy: {
|
|
2365
|
+
"@id": "schema:noBylinesPolicy",
|
|
2366
|
+
"@type": "@id"
|
|
2367
|
+
},
|
|
2368
|
+
nonEqual: { "@id": "schema:nonEqual" },
|
|
2369
|
+
nonProprietaryName: { "@id": "schema:nonProprietaryName" },
|
|
2370
|
+
nonprofitStatus: { "@id": "schema:nonprofitStatus" },
|
|
2371
|
+
normalRange: { "@id": "schema:normalRange" },
|
|
2372
|
+
nsn: { "@id": "schema:nsn" },
|
|
2373
|
+
numAdults: { "@id": "schema:numAdults" },
|
|
2374
|
+
numChildren: { "@id": "schema:numChildren" },
|
|
2375
|
+
numConstraints: { "@id": "schema:numConstraints" },
|
|
2376
|
+
numTracks: { "@id": "schema:numTracks" },
|
|
2377
|
+
numberOfAccommodationUnits: { "@id": "schema:numberOfAccommodationUnits" },
|
|
2378
|
+
numberOfAirbags: { "@id": "schema:numberOfAirbags" },
|
|
2379
|
+
numberOfAvailableAccommodationUnits: { "@id": "schema:numberOfAvailableAccommodationUnits" },
|
|
2380
|
+
numberOfAxles: { "@id": "schema:numberOfAxles" },
|
|
2381
|
+
numberOfBathroomsTotal: { "@id": "schema:numberOfBathroomsTotal" },
|
|
2382
|
+
numberOfBedrooms: { "@id": "schema:numberOfBedrooms" },
|
|
2383
|
+
numberOfBeds: { "@id": "schema:numberOfBeds" },
|
|
2384
|
+
numberOfCredits: { "@id": "schema:numberOfCredits" },
|
|
2385
|
+
numberOfDoors: { "@id": "schema:numberOfDoors" },
|
|
2386
|
+
numberOfEmployees: { "@id": "schema:numberOfEmployees" },
|
|
2387
|
+
numberOfEpisodes: { "@id": "schema:numberOfEpisodes" },
|
|
2388
|
+
numberOfForwardGears: { "@id": "schema:numberOfForwardGears" },
|
|
2389
|
+
numberOfFullBathrooms: { "@id": "schema:numberOfFullBathrooms" },
|
|
2390
|
+
numberOfItems: { "@id": "schema:numberOfItems" },
|
|
2391
|
+
numberOfLoanPayments: { "@id": "schema:numberOfLoanPayments" },
|
|
2392
|
+
numberOfPages: { "@id": "schema:numberOfPages" },
|
|
2393
|
+
numberOfPartialBathrooms: { "@id": "schema:numberOfPartialBathrooms" },
|
|
2394
|
+
numberOfPlayers: { "@id": "schema:numberOfPlayers" },
|
|
2395
|
+
numberOfPreviousOwners: { "@id": "schema:numberOfPreviousOwners" },
|
|
2396
|
+
numberOfRooms: { "@id": "schema:numberOfRooms" },
|
|
2397
|
+
numberOfSeasons: { "@id": "schema:numberOfSeasons" },
|
|
2398
|
+
numberedPosition: { "@id": "schema:numberedPosition" },
|
|
2399
|
+
nutrition: { "@id": "schema:nutrition" },
|
|
2400
|
+
object: { "@id": "schema:object" },
|
|
2401
|
+
observationDate: { "@id": "schema:observationDate" },
|
|
2402
|
+
observedNode: { "@id": "schema:observedNode" },
|
|
2403
|
+
occupancy: { "@id": "schema:occupancy" },
|
|
2404
|
+
occupationLocation: { "@id": "schema:occupationLocation" },
|
|
2405
|
+
occupationalCategory: { "@id": "schema:occupationalCategory" },
|
|
2406
|
+
occupationalCredentialAwarded: { "@id": "schema:occupationalCredentialAwarded" },
|
|
2407
|
+
offerCount: { "@id": "schema:offerCount" },
|
|
2408
|
+
offeredBy: { "@id": "schema:offeredBy" },
|
|
2409
|
+
offers: { "@id": "schema:offers" },
|
|
2410
|
+
offersPrescriptionByMail: { "@id": "schema:offersPrescriptionByMail" },
|
|
2411
|
+
openingHours: { "@id": "schema:openingHours" },
|
|
2412
|
+
openingHoursSpecification: { "@id": "schema:openingHoursSpecification" },
|
|
2413
|
+
opens: { "@id": "schema:opens" },
|
|
2414
|
+
operatingSystem: { "@id": "schema:operatingSystem" },
|
|
2415
|
+
opponent: { "@id": "schema:opponent" },
|
|
2416
|
+
option: { "@id": "schema:option" },
|
|
2417
|
+
orderDate: {
|
|
2418
|
+
"@id": "schema:orderDate",
|
|
2419
|
+
"@type": "Date"
|
|
2420
|
+
},
|
|
2421
|
+
orderDelivery: { "@id": "schema:orderDelivery" },
|
|
2422
|
+
orderItemNumber: { "@id": "schema:orderItemNumber" },
|
|
2423
|
+
orderItemStatus: { "@id": "schema:orderItemStatus" },
|
|
2424
|
+
orderNumber: { "@id": "schema:orderNumber" },
|
|
2425
|
+
orderQuantity: { "@id": "schema:orderQuantity" },
|
|
2426
|
+
orderStatus: { "@id": "schema:orderStatus" },
|
|
2427
|
+
orderedItem: { "@id": "schema:orderedItem" },
|
|
2428
|
+
organizer: { "@id": "schema:organizer" },
|
|
2429
|
+
originAddress: { "@id": "schema:originAddress" },
|
|
2430
|
+
originatesFrom: { "@id": "schema:originatesFrom" },
|
|
2431
|
+
overdosage: { "@id": "schema:overdosage" },
|
|
2432
|
+
ownedFrom: { "@id": "schema:ownedFrom" },
|
|
2433
|
+
ownedThrough: { "@id": "schema:ownedThrough" },
|
|
2434
|
+
ownershipFundingInfo: { "@id": "schema:ownershipFundingInfo" },
|
|
2435
|
+
owns: { "@id": "schema:owns" },
|
|
2436
|
+
pageEnd: { "@id": "schema:pageEnd" },
|
|
2437
|
+
pageStart: { "@id": "schema:pageStart" },
|
|
2438
|
+
pagination: { "@id": "schema:pagination" },
|
|
2439
|
+
parent: { "@id": "schema:parent" },
|
|
2440
|
+
parentItem: { "@id": "schema:parentItem" },
|
|
2441
|
+
parentOrganization: { "@id": "schema:parentOrganization" },
|
|
2442
|
+
parentService: { "@id": "schema:parentService" },
|
|
2443
|
+
parents: { "@id": "schema:parents" },
|
|
2444
|
+
partOfEpisode: { "@id": "schema:partOfEpisode" },
|
|
2445
|
+
partOfInvoice: { "@id": "schema:partOfInvoice" },
|
|
2446
|
+
partOfOrder: { "@id": "schema:partOfOrder" },
|
|
2447
|
+
partOfSeason: { "@id": "schema:partOfSeason" },
|
|
2448
|
+
partOfSeries: { "@id": "schema:partOfSeries" },
|
|
2449
|
+
partOfSystem: { "@id": "schema:partOfSystem" },
|
|
2450
|
+
partOfTVSeries: { "@id": "schema:partOfTVSeries" },
|
|
2451
|
+
partOfTrip: { "@id": "schema:partOfTrip" },
|
|
2452
|
+
participant: { "@id": "schema:participant" },
|
|
2453
|
+
partySize: { "@id": "schema:partySize" },
|
|
2454
|
+
passengerPriorityStatus: { "@id": "schema:passengerPriorityStatus" },
|
|
2455
|
+
passengerSequenceNumber: { "@id": "schema:passengerSequenceNumber" },
|
|
2456
|
+
pathophysiology: { "@id": "schema:pathophysiology" },
|
|
2457
|
+
pattern: { "@id": "schema:pattern" },
|
|
2458
|
+
payload: { "@id": "schema:payload" },
|
|
2459
|
+
paymentAccepted: { "@id": "schema:paymentAccepted" },
|
|
2460
|
+
paymentDue: { "@id": "schema:paymentDue" },
|
|
2461
|
+
paymentDueDate: {
|
|
2462
|
+
"@id": "schema:paymentDueDate",
|
|
2463
|
+
"@type": "Date"
|
|
2464
|
+
},
|
|
2465
|
+
paymentMethod: { "@id": "schema:paymentMethod" },
|
|
2466
|
+
paymentMethodId: { "@id": "schema:paymentMethodId" },
|
|
2467
|
+
paymentStatus: { "@id": "schema:paymentStatus" },
|
|
2468
|
+
paymentUrl: {
|
|
2469
|
+
"@id": "schema:paymentUrl",
|
|
2470
|
+
"@type": "@id"
|
|
2471
|
+
},
|
|
2472
|
+
penciler: { "@id": "schema:penciler" },
|
|
2473
|
+
percentile10: { "@id": "schema:percentile10" },
|
|
2474
|
+
percentile25: { "@id": "schema:percentile25" },
|
|
2475
|
+
percentile75: { "@id": "schema:percentile75" },
|
|
2476
|
+
percentile90: { "@id": "schema:percentile90" },
|
|
2477
|
+
performTime: { "@id": "schema:performTime" },
|
|
2478
|
+
performer: { "@id": "schema:performer" },
|
|
2479
|
+
performerIn: { "@id": "schema:performerIn" },
|
|
2480
|
+
performers: { "@id": "schema:performers" },
|
|
2481
|
+
permissionType: { "@id": "schema:permissionType" },
|
|
2482
|
+
permissions: { "@id": "schema:permissions" },
|
|
2483
|
+
permitAudience: { "@id": "schema:permitAudience" },
|
|
2484
|
+
permittedUsage: { "@id": "schema:permittedUsage" },
|
|
2485
|
+
petsAllowed: { "@id": "schema:petsAllowed" },
|
|
2486
|
+
phoneticText: { "@id": "schema:phoneticText" },
|
|
2487
|
+
photo: { "@id": "schema:photo" },
|
|
2488
|
+
photos: { "@id": "schema:photos" },
|
|
2489
|
+
physicalRequirement: { "@id": "schema:physicalRequirement" },
|
|
2490
|
+
physiologicalBenefits: { "@id": "schema:physiologicalBenefits" },
|
|
2491
|
+
pickupLocation: { "@id": "schema:pickupLocation" },
|
|
2492
|
+
pickupTime: { "@id": "schema:pickupTime" },
|
|
2493
|
+
playMode: { "@id": "schema:playMode" },
|
|
2494
|
+
playerType: { "@id": "schema:playerType" },
|
|
2495
|
+
playersOnline: { "@id": "schema:playersOnline" },
|
|
2496
|
+
polygon: { "@id": "schema:polygon" },
|
|
2497
|
+
populationType: { "@id": "schema:populationType" },
|
|
2498
|
+
position: { "@id": "schema:position" },
|
|
2499
|
+
possibleComplication: { "@id": "schema:possibleComplication" },
|
|
2500
|
+
possibleTreatment: { "@id": "schema:possibleTreatment" },
|
|
2501
|
+
postOfficeBoxNumber: { "@id": "schema:postOfficeBoxNumber" },
|
|
2502
|
+
postOp: { "@id": "schema:postOp" },
|
|
2503
|
+
postalCode: { "@id": "schema:postalCode" },
|
|
2504
|
+
postalCodeBegin: { "@id": "schema:postalCodeBegin" },
|
|
2505
|
+
postalCodeEnd: { "@id": "schema:postalCodeEnd" },
|
|
2506
|
+
postalCodePrefix: { "@id": "schema:postalCodePrefix" },
|
|
2507
|
+
postalCodeRange: { "@id": "schema:postalCodeRange" },
|
|
2508
|
+
potentialAction: { "@id": "schema:potentialAction" },
|
|
2509
|
+
preOp: { "@id": "schema:preOp" },
|
|
2510
|
+
predecessorOf: { "@id": "schema:predecessorOf" },
|
|
2511
|
+
pregnancyCategory: { "@id": "schema:pregnancyCategory" },
|
|
2512
|
+
pregnancyWarning: { "@id": "schema:pregnancyWarning" },
|
|
2513
|
+
prepTime: { "@id": "schema:prepTime" },
|
|
2514
|
+
preparation: { "@id": "schema:preparation" },
|
|
2515
|
+
prescribingInfo: {
|
|
2516
|
+
"@id": "schema:prescribingInfo",
|
|
2517
|
+
"@type": "@id"
|
|
2518
|
+
},
|
|
2519
|
+
prescriptionStatus: { "@id": "schema:prescriptionStatus" },
|
|
2520
|
+
previousItem: { "@id": "schema:previousItem" },
|
|
2521
|
+
previousStartDate: {
|
|
2522
|
+
"@id": "schema:previousStartDate",
|
|
2523
|
+
"@type": "Date"
|
|
2524
|
+
},
|
|
2525
|
+
price: { "@id": "schema:price" },
|
|
2526
|
+
priceComponent: { "@id": "schema:priceComponent" },
|
|
2527
|
+
priceComponentType: { "@id": "schema:priceComponentType" },
|
|
2528
|
+
priceCurrency: { "@id": "schema:priceCurrency" },
|
|
2529
|
+
priceRange: { "@id": "schema:priceRange" },
|
|
2530
|
+
priceSpecification: { "@id": "schema:priceSpecification" },
|
|
2531
|
+
priceType: { "@id": "schema:priceType" },
|
|
2532
|
+
priceValidUntil: {
|
|
2533
|
+
"@id": "schema:priceValidUntil",
|
|
2534
|
+
"@type": "Date"
|
|
2535
|
+
},
|
|
2536
|
+
primaryImageOfPage: { "@id": "schema:primaryImageOfPage" },
|
|
2537
|
+
primaryPrevention: { "@id": "schema:primaryPrevention" },
|
|
2538
|
+
printColumn: { "@id": "schema:printColumn" },
|
|
2539
|
+
printEdition: { "@id": "schema:printEdition" },
|
|
2540
|
+
printPage: { "@id": "schema:printPage" },
|
|
2541
|
+
printSection: { "@id": "schema:printSection" },
|
|
2542
|
+
procedure: { "@id": "schema:procedure" },
|
|
2543
|
+
procedureType: { "@id": "schema:procedureType" },
|
|
2544
|
+
processingTime: { "@id": "schema:processingTime" },
|
|
2545
|
+
processorRequirements: { "@id": "schema:processorRequirements" },
|
|
2546
|
+
producer: { "@id": "schema:producer" },
|
|
2547
|
+
produces: { "@id": "schema:produces" },
|
|
2548
|
+
productGroupID: { "@id": "schema:productGroupID" },
|
|
2549
|
+
productID: { "@id": "schema:productID" },
|
|
2550
|
+
productReturnDays: { "@id": "schema:productReturnDays" },
|
|
2551
|
+
productReturnLink: {
|
|
2552
|
+
"@id": "schema:productReturnLink",
|
|
2553
|
+
"@type": "@id"
|
|
2554
|
+
},
|
|
2555
|
+
productSupported: { "@id": "schema:productSupported" },
|
|
2556
|
+
productionCompany: { "@id": "schema:productionCompany" },
|
|
2557
|
+
productionDate: {
|
|
2558
|
+
"@id": "schema:productionDate",
|
|
2559
|
+
"@type": "Date"
|
|
2560
|
+
},
|
|
2561
|
+
proficiencyLevel: { "@id": "schema:proficiencyLevel" },
|
|
2562
|
+
programMembershipUsed: { "@id": "schema:programMembershipUsed" },
|
|
2563
|
+
programName: { "@id": "schema:programName" },
|
|
2564
|
+
programPrerequisites: { "@id": "schema:programPrerequisites" },
|
|
2565
|
+
programType: { "@id": "schema:programType" },
|
|
2566
|
+
programmingLanguage: { "@id": "schema:programmingLanguage" },
|
|
2567
|
+
programmingModel: { "@id": "schema:programmingModel" },
|
|
2568
|
+
propertyID: { "@id": "schema:propertyID" },
|
|
2569
|
+
proprietaryName: { "@id": "schema:proprietaryName" },
|
|
2570
|
+
proteinContent: { "@id": "schema:proteinContent" },
|
|
2571
|
+
provider: { "@id": "schema:provider" },
|
|
2572
|
+
providerMobility: { "@id": "schema:providerMobility" },
|
|
2573
|
+
providesBroadcastService: { "@id": "schema:providesBroadcastService" },
|
|
2574
|
+
providesService: { "@id": "schema:providesService" },
|
|
2575
|
+
publicAccess: { "@id": "schema:publicAccess" },
|
|
2576
|
+
publicTransportClosuresInfo: {
|
|
2577
|
+
"@id": "schema:publicTransportClosuresInfo",
|
|
2578
|
+
"@type": "@id"
|
|
2579
|
+
},
|
|
2580
|
+
publication: { "@id": "schema:publication" },
|
|
2581
|
+
publicationType: { "@id": "schema:publicationType" },
|
|
2582
|
+
publishedBy: { "@id": "schema:publishedBy" },
|
|
2583
|
+
publishedOn: { "@id": "schema:publishedOn" },
|
|
2584
|
+
publisher: { "@id": "schema:publisher" },
|
|
2585
|
+
publisherImprint: { "@id": "schema:publisherImprint" },
|
|
2586
|
+
publishingPrinciples: {
|
|
2587
|
+
"@id": "schema:publishingPrinciples",
|
|
2588
|
+
"@type": "@id"
|
|
2589
|
+
},
|
|
2590
|
+
purchaseDate: {
|
|
2591
|
+
"@id": "schema:purchaseDate",
|
|
2592
|
+
"@type": "Date"
|
|
2593
|
+
},
|
|
2594
|
+
qualifications: { "@id": "schema:qualifications" },
|
|
2595
|
+
quarantineGuidelines: {
|
|
2596
|
+
"@id": "schema:quarantineGuidelines",
|
|
2597
|
+
"@type": "@id"
|
|
2598
|
+
},
|
|
2599
|
+
query: { "@id": "schema:query" },
|
|
2600
|
+
quest: { "@id": "schema:quest" },
|
|
2601
|
+
question: { "@id": "schema:question" },
|
|
2602
|
+
rangeIncludes: { "@id": "schema:rangeIncludes" },
|
|
2603
|
+
ratingCount: { "@id": "schema:ratingCount" },
|
|
2604
|
+
ratingExplanation: { "@id": "schema:ratingExplanation" },
|
|
2605
|
+
ratingValue: { "@id": "schema:ratingValue" },
|
|
2606
|
+
readBy: { "@id": "schema:readBy" },
|
|
2607
|
+
readonlyValue: { "@id": "schema:readonlyValue" },
|
|
2608
|
+
realEstateAgent: { "@id": "schema:realEstateAgent" },
|
|
2609
|
+
recipe: { "@id": "schema:recipe" },
|
|
2610
|
+
recipeCategory: { "@id": "schema:recipeCategory" },
|
|
2611
|
+
recipeCuisine: { "@id": "schema:recipeCuisine" },
|
|
2612
|
+
recipeIngredient: { "@id": "schema:recipeIngredient" },
|
|
2613
|
+
recipeInstructions: { "@id": "schema:recipeInstructions" },
|
|
2614
|
+
recipeYield: { "@id": "schema:recipeYield" },
|
|
2615
|
+
recipient: { "@id": "schema:recipient" },
|
|
2616
|
+
recognizedBy: { "@id": "schema:recognizedBy" },
|
|
2617
|
+
recognizingAuthority: { "@id": "schema:recognizingAuthority" },
|
|
2618
|
+
recommendationStrength: { "@id": "schema:recommendationStrength" },
|
|
2619
|
+
recommendedIntake: { "@id": "schema:recommendedIntake" },
|
|
2620
|
+
recordLabel: { "@id": "schema:recordLabel" },
|
|
2621
|
+
recordedAs: { "@id": "schema:recordedAs" },
|
|
2622
|
+
recordedAt: { "@id": "schema:recordedAt" },
|
|
2623
|
+
recordedIn: { "@id": "schema:recordedIn" },
|
|
2624
|
+
recordingOf: { "@id": "schema:recordingOf" },
|
|
2625
|
+
recourseLoan: { "@id": "schema:recourseLoan" },
|
|
2626
|
+
referenceQuantity: { "@id": "schema:referenceQuantity" },
|
|
2627
|
+
referencesOrder: { "@id": "schema:referencesOrder" },
|
|
2628
|
+
refundType: { "@id": "schema:refundType" },
|
|
2629
|
+
regionDrained: { "@id": "schema:regionDrained" },
|
|
2630
|
+
regionsAllowed: { "@id": "schema:regionsAllowed" },
|
|
2631
|
+
relatedAnatomy: { "@id": "schema:relatedAnatomy" },
|
|
2632
|
+
relatedCondition: { "@id": "schema:relatedCondition" },
|
|
2633
|
+
relatedDrug: { "@id": "schema:relatedDrug" },
|
|
2634
|
+
relatedLink: {
|
|
2635
|
+
"@id": "schema:relatedLink",
|
|
2636
|
+
"@type": "@id"
|
|
2637
|
+
},
|
|
2638
|
+
relatedStructure: { "@id": "schema:relatedStructure" },
|
|
2639
|
+
relatedTherapy: { "@id": "schema:relatedTherapy" },
|
|
2640
|
+
relatedTo: { "@id": "schema:relatedTo" },
|
|
2641
|
+
releaseDate: {
|
|
2642
|
+
"@id": "schema:releaseDate",
|
|
2643
|
+
"@type": "Date"
|
|
2644
|
+
},
|
|
2645
|
+
releaseNotes: { "@id": "schema:releaseNotes" },
|
|
2646
|
+
releaseOf: { "@id": "schema:releaseOf" },
|
|
2647
|
+
releasedEvent: { "@id": "schema:releasedEvent" },
|
|
2648
|
+
relevantOccupation: { "@id": "schema:relevantOccupation" },
|
|
2649
|
+
relevantSpecialty: { "@id": "schema:relevantSpecialty" },
|
|
2650
|
+
remainingAttendeeCapacity: { "@id": "schema:remainingAttendeeCapacity" },
|
|
2651
|
+
renegotiableLoan: { "@id": "schema:renegotiableLoan" },
|
|
2652
|
+
repeatCount: { "@id": "schema:repeatCount" },
|
|
2653
|
+
repeatFrequency: { "@id": "schema:repeatFrequency" },
|
|
2654
|
+
repetitions: { "@id": "schema:repetitions" },
|
|
2655
|
+
replacee: { "@id": "schema:replacee" },
|
|
2656
|
+
replacer: { "@id": "schema:replacer" },
|
|
2657
|
+
replyToUrl: {
|
|
2658
|
+
"@id": "schema:replyToUrl",
|
|
2659
|
+
"@type": "@id"
|
|
2660
|
+
},
|
|
2661
|
+
reportNumber: { "@id": "schema:reportNumber" },
|
|
2662
|
+
representativeOfPage: { "@id": "schema:representativeOfPage" },
|
|
2663
|
+
requiredCollateral: { "@id": "schema:requiredCollateral" },
|
|
2664
|
+
requiredGender: { "@id": "schema:requiredGender" },
|
|
2665
|
+
requiredMaxAge: { "@id": "schema:requiredMaxAge" },
|
|
2666
|
+
requiredMinAge: { "@id": "schema:requiredMinAge" },
|
|
2667
|
+
requiredQuantity: { "@id": "schema:requiredQuantity" },
|
|
2668
|
+
requirements: { "@id": "schema:requirements" },
|
|
2669
|
+
requiresSubscription: { "@id": "schema:requiresSubscription" },
|
|
2670
|
+
reservationFor: { "@id": "schema:reservationFor" },
|
|
2671
|
+
reservationId: { "@id": "schema:reservationId" },
|
|
2672
|
+
reservationStatus: { "@id": "schema:reservationStatus" },
|
|
2673
|
+
reservedTicket: { "@id": "schema:reservedTicket" },
|
|
2674
|
+
responsibilities: { "@id": "schema:responsibilities" },
|
|
2675
|
+
restPeriods: { "@id": "schema:restPeriods" },
|
|
2676
|
+
result: { "@id": "schema:result" },
|
|
2677
|
+
resultComment: { "@id": "schema:resultComment" },
|
|
2678
|
+
resultReview: { "@id": "schema:resultReview" },
|
|
2679
|
+
returnFees: { "@id": "schema:returnFees" },
|
|
2680
|
+
returnPolicyCategory: { "@id": "schema:returnPolicyCategory" },
|
|
2681
|
+
review: { "@id": "schema:review" },
|
|
2682
|
+
reviewAspect: { "@id": "schema:reviewAspect" },
|
|
2683
|
+
reviewBody: { "@id": "schema:reviewBody" },
|
|
2684
|
+
reviewCount: { "@id": "schema:reviewCount" },
|
|
2685
|
+
reviewRating: { "@id": "schema:reviewRating" },
|
|
2686
|
+
reviewedBy: { "@id": "schema:reviewedBy" },
|
|
2687
|
+
reviews: { "@id": "schema:reviews" },
|
|
2688
|
+
riskFactor: { "@id": "schema:riskFactor" },
|
|
2689
|
+
risks: { "@id": "schema:risks" },
|
|
2690
|
+
roleName: { "@id": "schema:roleName" },
|
|
2691
|
+
roofLoad: { "@id": "schema:roofLoad" },
|
|
2692
|
+
rsvpResponse: { "@id": "schema:rsvpResponse" },
|
|
2693
|
+
runsTo: { "@id": "schema:runsTo" },
|
|
2694
|
+
runtime: { "@id": "schema:runtime" },
|
|
2695
|
+
runtimePlatform: { "@id": "schema:runtimePlatform" },
|
|
2696
|
+
rxcui: { "@id": "schema:rxcui" },
|
|
2697
|
+
safetyConsideration: { "@id": "schema:safetyConsideration" },
|
|
2698
|
+
salaryCurrency: { "@id": "schema:salaryCurrency" },
|
|
2699
|
+
salaryUponCompletion: { "@id": "schema:salaryUponCompletion" },
|
|
2700
|
+
sameAs: {
|
|
2701
|
+
"@id": "schema:sameAs",
|
|
2702
|
+
"@type": "@id"
|
|
2703
|
+
},
|
|
2704
|
+
sampleType: { "@id": "schema:sampleType" },
|
|
2705
|
+
saturatedFatContent: { "@id": "schema:saturatedFatContent" },
|
|
2706
|
+
scheduleTimezone: { "@id": "schema:scheduleTimezone" },
|
|
2707
|
+
scheduledPaymentDate: {
|
|
2708
|
+
"@id": "schema:scheduledPaymentDate",
|
|
2709
|
+
"@type": "Date"
|
|
2710
|
+
},
|
|
2711
|
+
scheduledTime: { "@id": "schema:scheduledTime" },
|
|
2712
|
+
schemaVersion: { "@id": "schema:schemaVersion" },
|
|
2713
|
+
schoolClosuresInfo: {
|
|
2714
|
+
"@id": "schema:schoolClosuresInfo",
|
|
2715
|
+
"@type": "@id"
|
|
2716
|
+
},
|
|
2717
|
+
screenCount: { "@id": "schema:screenCount" },
|
|
2718
|
+
screenshot: {
|
|
2719
|
+
"@id": "schema:screenshot",
|
|
2720
|
+
"@type": "@id"
|
|
2721
|
+
},
|
|
2722
|
+
sdDatePublished: {
|
|
2723
|
+
"@id": "schema:sdDatePublished",
|
|
2724
|
+
"@type": "Date"
|
|
2725
|
+
},
|
|
2726
|
+
sdLicense: {
|
|
2727
|
+
"@id": "schema:sdLicense",
|
|
2728
|
+
"@type": "@id"
|
|
2729
|
+
},
|
|
2730
|
+
sdPublisher: { "@id": "schema:sdPublisher" },
|
|
2731
|
+
season: {
|
|
2732
|
+
"@id": "schema:season",
|
|
2733
|
+
"@type": "@id"
|
|
2734
|
+
},
|
|
2735
|
+
seasonNumber: { "@id": "schema:seasonNumber" },
|
|
2736
|
+
seasons: { "@id": "schema:seasons" },
|
|
2737
|
+
seatNumber: { "@id": "schema:seatNumber" },
|
|
2738
|
+
seatRow: { "@id": "schema:seatRow" },
|
|
2739
|
+
seatSection: { "@id": "schema:seatSection" },
|
|
2740
|
+
seatingCapacity: { "@id": "schema:seatingCapacity" },
|
|
2741
|
+
seatingType: { "@id": "schema:seatingType" },
|
|
2742
|
+
secondaryPrevention: { "@id": "schema:secondaryPrevention" },
|
|
2743
|
+
securityClearanceRequirement: { "@id": "schema:securityClearanceRequirement" },
|
|
2744
|
+
securityScreening: { "@id": "schema:securityScreening" },
|
|
2745
|
+
seeks: { "@id": "schema:seeks" },
|
|
2746
|
+
seller: { "@id": "schema:seller" },
|
|
2747
|
+
sender: { "@id": "schema:sender" },
|
|
2748
|
+
sensoryRequirement: { "@id": "schema:sensoryRequirement" },
|
|
2749
|
+
sensoryUnit: { "@id": "schema:sensoryUnit" },
|
|
2750
|
+
serialNumber: { "@id": "schema:serialNumber" },
|
|
2751
|
+
seriousAdverseOutcome: { "@id": "schema:seriousAdverseOutcome" },
|
|
2752
|
+
serverStatus: { "@id": "schema:serverStatus" },
|
|
2753
|
+
servesCuisine: { "@id": "schema:servesCuisine" },
|
|
2754
|
+
serviceArea: { "@id": "schema:serviceArea" },
|
|
2755
|
+
serviceAudience: { "@id": "schema:serviceAudience" },
|
|
2756
|
+
serviceLocation: { "@id": "schema:serviceLocation" },
|
|
2757
|
+
serviceOperator: { "@id": "schema:serviceOperator" },
|
|
2758
|
+
serviceOutput: { "@id": "schema:serviceOutput" },
|
|
2759
|
+
servicePhone: { "@id": "schema:servicePhone" },
|
|
2760
|
+
servicePostalAddress: { "@id": "schema:servicePostalAddress" },
|
|
2761
|
+
serviceSmsNumber: { "@id": "schema:serviceSmsNumber" },
|
|
2762
|
+
serviceType: { "@id": "schema:serviceType" },
|
|
2763
|
+
serviceUrl: {
|
|
2764
|
+
"@id": "schema:serviceUrl",
|
|
2765
|
+
"@type": "@id"
|
|
2766
|
+
},
|
|
2767
|
+
servingSize: { "@id": "schema:servingSize" },
|
|
2768
|
+
sharedContent: { "@id": "schema:sharedContent" },
|
|
2769
|
+
shippingDestination: { "@id": "schema:shippingDestination" },
|
|
2770
|
+
shippingDetails: { "@id": "schema:shippingDetails" },
|
|
2771
|
+
shippingLabel: { "@id": "schema:shippingLabel" },
|
|
2772
|
+
shippingRate: { "@id": "schema:shippingRate" },
|
|
2773
|
+
shippingSettingsLink: {
|
|
2774
|
+
"@id": "schema:shippingSettingsLink",
|
|
2775
|
+
"@type": "@id"
|
|
2776
|
+
},
|
|
2777
|
+
sibling: { "@id": "schema:sibling" },
|
|
2778
|
+
siblings: { "@id": "schema:siblings" },
|
|
2779
|
+
signDetected: { "@id": "schema:signDetected" },
|
|
2780
|
+
signOrSymptom: { "@id": "schema:signOrSymptom" },
|
|
2781
|
+
significance: { "@id": "schema:significance" },
|
|
2782
|
+
significantLink: {
|
|
2783
|
+
"@id": "schema:significantLink",
|
|
2784
|
+
"@type": "@id"
|
|
2785
|
+
},
|
|
2786
|
+
significantLinks: {
|
|
2787
|
+
"@id": "schema:significantLinks",
|
|
2788
|
+
"@type": "@id"
|
|
2789
|
+
},
|
|
2790
|
+
size: { "@id": "schema:size" },
|
|
2791
|
+
sizeGroup: { "@id": "schema:sizeGroup" },
|
|
2792
|
+
sizeSystem: { "@id": "schema:sizeSystem" },
|
|
2793
|
+
skills: { "@id": "schema:skills" },
|
|
2794
|
+
sku: { "@id": "schema:sku" },
|
|
2795
|
+
slogan: { "@id": "schema:slogan" },
|
|
2796
|
+
smokingAllowed: { "@id": "schema:smokingAllowed" },
|
|
2797
|
+
sodiumContent: { "@id": "schema:sodiumContent" },
|
|
2798
|
+
softwareAddOn: { "@id": "schema:softwareAddOn" },
|
|
2799
|
+
softwareHelp: { "@id": "schema:softwareHelp" },
|
|
2800
|
+
softwareRequirements: { "@id": "schema:softwareRequirements" },
|
|
2801
|
+
softwareVersion: { "@id": "schema:softwareVersion" },
|
|
2802
|
+
sourceOrganization: { "@id": "schema:sourceOrganization" },
|
|
2803
|
+
sourcedFrom: { "@id": "schema:sourcedFrom" },
|
|
2804
|
+
spatial: { "@id": "schema:spatial" },
|
|
2805
|
+
spatialCoverage: { "@id": "schema:spatialCoverage" },
|
|
2806
|
+
speakable: {
|
|
2807
|
+
"@id": "schema:speakable",
|
|
2808
|
+
"@type": "@id"
|
|
2809
|
+
},
|
|
2810
|
+
specialCommitments: { "@id": "schema:specialCommitments" },
|
|
2811
|
+
specialOpeningHoursSpecification: { "@id": "schema:specialOpeningHoursSpecification" },
|
|
2812
|
+
specialty: { "@id": "schema:specialty" },
|
|
2813
|
+
speechToTextMarkup: { "@id": "schema:speechToTextMarkup" },
|
|
2814
|
+
speed: { "@id": "schema:speed" },
|
|
2815
|
+
spokenByCharacter: { "@id": "schema:spokenByCharacter" },
|
|
2816
|
+
sponsor: { "@id": "schema:sponsor" },
|
|
2817
|
+
sport: { "@id": "schema:sport" },
|
|
2818
|
+
sportsActivityLocation: { "@id": "schema:sportsActivityLocation" },
|
|
2819
|
+
sportsEvent: { "@id": "schema:sportsEvent" },
|
|
2820
|
+
sportsTeam: { "@id": "schema:sportsTeam" },
|
|
2821
|
+
spouse: { "@id": "schema:spouse" },
|
|
2822
|
+
stage: { "@id": "schema:stage" },
|
|
2823
|
+
stageAsNumber: { "@id": "schema:stageAsNumber" },
|
|
2824
|
+
starRating: { "@id": "schema:starRating" },
|
|
2825
|
+
startDate: {
|
|
2826
|
+
"@id": "schema:startDate",
|
|
2827
|
+
"@type": "Date"
|
|
2828
|
+
},
|
|
2829
|
+
startOffset: { "@id": "schema:startOffset" },
|
|
2830
|
+
startTime: { "@id": "schema:startTime" },
|
|
2831
|
+
status: { "@id": "schema:status" },
|
|
2832
|
+
steeringPosition: { "@id": "schema:steeringPosition" },
|
|
2833
|
+
step: { "@id": "schema:step" },
|
|
2834
|
+
stepValue: { "@id": "schema:stepValue" },
|
|
2835
|
+
steps: { "@id": "schema:steps" },
|
|
2836
|
+
storageRequirements: { "@id": "schema:storageRequirements" },
|
|
2837
|
+
streetAddress: { "@id": "schema:streetAddress" },
|
|
2838
|
+
strengthUnit: { "@id": "schema:strengthUnit" },
|
|
2839
|
+
strengthValue: { "@id": "schema:strengthValue" },
|
|
2840
|
+
structuralClass: { "@id": "schema:structuralClass" },
|
|
2841
|
+
study: { "@id": "schema:study" },
|
|
2842
|
+
studyDesign: { "@id": "schema:studyDesign" },
|
|
2843
|
+
studyLocation: { "@id": "schema:studyLocation" },
|
|
2844
|
+
studySubject: { "@id": "schema:studySubject" },
|
|
2845
|
+
stupidProperty: { "@id": "schema:stupidProperty" },
|
|
2846
|
+
subEvent: { "@id": "schema:subEvent" },
|
|
2847
|
+
subEvents: { "@id": "schema:subEvents" },
|
|
2848
|
+
subOrganization: { "@id": "schema:subOrganization" },
|
|
2849
|
+
subReservation: { "@id": "schema:subReservation" },
|
|
2850
|
+
subStageSuffix: { "@id": "schema:subStageSuffix" },
|
|
2851
|
+
subStructure: { "@id": "schema:subStructure" },
|
|
2852
|
+
subTest: { "@id": "schema:subTest" },
|
|
2853
|
+
subTrip: { "@id": "schema:subTrip" },
|
|
2854
|
+
subjectOf: { "@id": "schema:subjectOf" },
|
|
2855
|
+
subtitleLanguage: { "@id": "schema:subtitleLanguage" },
|
|
2856
|
+
successorOf: { "@id": "schema:successorOf" },
|
|
2857
|
+
sugarContent: { "@id": "schema:sugarContent" },
|
|
2858
|
+
suggestedAge: { "@id": "schema:suggestedAge" },
|
|
2859
|
+
suggestedAnswer: { "@id": "schema:suggestedAnswer" },
|
|
2860
|
+
suggestedGender: { "@id": "schema:suggestedGender" },
|
|
2861
|
+
suggestedMaxAge: { "@id": "schema:suggestedMaxAge" },
|
|
2862
|
+
suggestedMeasurement: { "@id": "schema:suggestedMeasurement" },
|
|
2863
|
+
suggestedMinAge: { "@id": "schema:suggestedMinAge" },
|
|
2864
|
+
suitableForDiet: { "@id": "schema:suitableForDiet" },
|
|
2865
|
+
superEvent: { "@id": "schema:superEvent" },
|
|
2866
|
+
supersededBy: { "@id": "schema:supersededBy" },
|
|
2867
|
+
supply: { "@id": "schema:supply" },
|
|
2868
|
+
supplyTo: { "@id": "schema:supplyTo" },
|
|
2869
|
+
supportingData: { "@id": "schema:supportingData" },
|
|
2870
|
+
surface: { "@id": "schema:surface" },
|
|
2871
|
+
target: { "@id": "schema:target" },
|
|
2872
|
+
targetCollection: { "@id": "schema:targetCollection" },
|
|
2873
|
+
targetDescription: { "@id": "schema:targetDescription" },
|
|
2874
|
+
targetName: { "@id": "schema:targetName" },
|
|
2875
|
+
targetPlatform: { "@id": "schema:targetPlatform" },
|
|
2876
|
+
targetPopulation: { "@id": "schema:targetPopulation" },
|
|
2877
|
+
targetProduct: { "@id": "schema:targetProduct" },
|
|
2878
|
+
targetUrl: {
|
|
2879
|
+
"@id": "schema:targetUrl",
|
|
2880
|
+
"@type": "@id"
|
|
2881
|
+
},
|
|
2882
|
+
taxID: { "@id": "schema:taxID" },
|
|
2883
|
+
teaches: { "@id": "schema:teaches" },
|
|
2884
|
+
telephone: { "@id": "schema:telephone" },
|
|
2885
|
+
temporal: { "@id": "schema:temporal" },
|
|
2886
|
+
temporalCoverage: { "@id": "schema:temporalCoverage" },
|
|
2887
|
+
termCode: { "@id": "schema:termCode" },
|
|
2888
|
+
termDuration: { "@id": "schema:termDuration" },
|
|
2889
|
+
termsOfService: { "@id": "schema:termsOfService" },
|
|
2890
|
+
termsPerYear: { "@id": "schema:termsPerYear" },
|
|
2891
|
+
text: { "@id": "schema:text" },
|
|
2892
|
+
textValue: { "@id": "schema:textValue" },
|
|
2893
|
+
thumbnail: { "@id": "schema:thumbnail" },
|
|
2894
|
+
thumbnailUrl: {
|
|
2895
|
+
"@id": "schema:thumbnailUrl",
|
|
2896
|
+
"@type": "@id"
|
|
2897
|
+
},
|
|
2898
|
+
tickerSymbol: { "@id": "schema:tickerSymbol" },
|
|
2899
|
+
ticketNumber: { "@id": "schema:ticketNumber" },
|
|
2900
|
+
ticketToken: { "@id": "schema:ticketToken" },
|
|
2901
|
+
ticketedSeat: { "@id": "schema:ticketedSeat" },
|
|
2902
|
+
timeOfDay: { "@id": "schema:timeOfDay" },
|
|
2903
|
+
timeRequired: { "@id": "schema:timeRequired" },
|
|
2904
|
+
timeToComplete: { "@id": "schema:timeToComplete" },
|
|
2905
|
+
tissueSample: { "@id": "schema:tissueSample" },
|
|
2906
|
+
title: { "@id": "schema:title" },
|
|
2907
|
+
titleEIDR: { "@id": "schema:titleEIDR" },
|
|
2908
|
+
toLocation: { "@id": "schema:toLocation" },
|
|
2909
|
+
toRecipient: { "@id": "schema:toRecipient" },
|
|
2910
|
+
tocContinuation: { "@id": "schema:tocContinuation" },
|
|
2911
|
+
tocEntry: { "@id": "schema:tocEntry" },
|
|
2912
|
+
tongueWeight: { "@id": "schema:tongueWeight" },
|
|
2913
|
+
tool: { "@id": "schema:tool" },
|
|
2914
|
+
torque: { "@id": "schema:torque" },
|
|
2915
|
+
totalJobOpenings: { "@id": "schema:totalJobOpenings" },
|
|
2916
|
+
totalPaymentDue: { "@id": "schema:totalPaymentDue" },
|
|
2917
|
+
totalPrice: { "@id": "schema:totalPrice" },
|
|
2918
|
+
totalTime: { "@id": "schema:totalTime" },
|
|
2919
|
+
tourBookingPage: {
|
|
2920
|
+
"@id": "schema:tourBookingPage",
|
|
2921
|
+
"@type": "@id"
|
|
2922
|
+
},
|
|
2923
|
+
touristType: { "@id": "schema:touristType" },
|
|
2924
|
+
track: { "@id": "schema:track" },
|
|
2925
|
+
trackingNumber: { "@id": "schema:trackingNumber" },
|
|
2926
|
+
trackingUrl: {
|
|
2927
|
+
"@id": "schema:trackingUrl",
|
|
2928
|
+
"@type": "@id"
|
|
2929
|
+
},
|
|
2930
|
+
tracks: { "@id": "schema:tracks" },
|
|
2931
|
+
trailer: { "@id": "schema:trailer" },
|
|
2932
|
+
trailerWeight: { "@id": "schema:trailerWeight" },
|
|
2933
|
+
trainName: { "@id": "schema:trainName" },
|
|
2934
|
+
trainNumber: { "@id": "schema:trainNumber" },
|
|
2935
|
+
trainingSalary: { "@id": "schema:trainingSalary" },
|
|
2936
|
+
transFatContent: { "@id": "schema:transFatContent" },
|
|
2937
|
+
transcript: { "@id": "schema:transcript" },
|
|
2938
|
+
transitTime: { "@id": "schema:transitTime" },
|
|
2939
|
+
transitTimeLabel: { "@id": "schema:transitTimeLabel" },
|
|
2940
|
+
translationOfWork: { "@id": "schema:translationOfWork" },
|
|
2941
|
+
translator: { "@id": "schema:translator" },
|
|
2942
|
+
transmissionMethod: { "@id": "schema:transmissionMethod" },
|
|
2943
|
+
travelBans: {
|
|
2944
|
+
"@id": "schema:travelBans",
|
|
2945
|
+
"@type": "@id"
|
|
2946
|
+
},
|
|
2947
|
+
trialDesign: { "@id": "schema:trialDesign" },
|
|
2948
|
+
tributary: { "@id": "schema:tributary" },
|
|
2949
|
+
typeOfBed: { "@id": "schema:typeOfBed" },
|
|
2950
|
+
typeOfGood: { "@id": "schema:typeOfGood" },
|
|
2951
|
+
typicalAgeRange: { "@id": "schema:typicalAgeRange" },
|
|
2952
|
+
typicalCreditsPerTerm: { "@id": "schema:typicalCreditsPerTerm" },
|
|
2953
|
+
typicalTest: { "@id": "schema:typicalTest" },
|
|
2954
|
+
underName: { "@id": "schema:underName" },
|
|
2955
|
+
unitCode: { "@id": "schema:unitCode" },
|
|
2956
|
+
unitText: { "@id": "schema:unitText" },
|
|
2957
|
+
unnamedSourcesPolicy: {
|
|
2958
|
+
"@id": "schema:unnamedSourcesPolicy",
|
|
2959
|
+
"@type": "@id"
|
|
2960
|
+
},
|
|
2961
|
+
unsaturatedFatContent: { "@id": "schema:unsaturatedFatContent" },
|
|
2962
|
+
uploadDate: {
|
|
2963
|
+
"@id": "schema:uploadDate",
|
|
2964
|
+
"@type": "Date"
|
|
2965
|
+
},
|
|
2966
|
+
upvoteCount: { "@id": "schema:upvoteCount" },
|
|
2967
|
+
url: {
|
|
2968
|
+
"@id": "schema:url",
|
|
2969
|
+
"@type": "@id"
|
|
2970
|
+
},
|
|
2971
|
+
urlTemplate: { "@id": "schema:urlTemplate" },
|
|
2972
|
+
usageInfo: {
|
|
2973
|
+
"@id": "schema:usageInfo",
|
|
2974
|
+
"@type": "@id"
|
|
2975
|
+
},
|
|
2976
|
+
usedToDiagnose: { "@id": "schema:usedToDiagnose" },
|
|
2977
|
+
userInteractionCount: { "@id": "schema:userInteractionCount" },
|
|
2978
|
+
usesDevice: { "@id": "schema:usesDevice" },
|
|
2979
|
+
usesHealthPlanIdStandard: { "@id": "schema:usesHealthPlanIdStandard" },
|
|
2980
|
+
utterances: { "@id": "schema:utterances" },
|
|
2981
|
+
validFor: { "@id": "schema:validFor" },
|
|
2982
|
+
validFrom: {
|
|
2983
|
+
"@id": "schema:validFrom",
|
|
2984
|
+
"@type": "Date"
|
|
2985
|
+
},
|
|
2986
|
+
validIn: { "@id": "schema:validIn" },
|
|
2987
|
+
validThrough: {
|
|
2988
|
+
"@id": "schema:validThrough",
|
|
2989
|
+
"@type": "Date"
|
|
2990
|
+
},
|
|
2991
|
+
validUntil: {
|
|
2992
|
+
"@id": "schema:validUntil",
|
|
2993
|
+
"@type": "Date"
|
|
2994
|
+
},
|
|
2995
|
+
value: { "@id": "schema:value" },
|
|
2996
|
+
valueAddedTaxIncluded: { "@id": "schema:valueAddedTaxIncluded" },
|
|
2997
|
+
valueMaxLength: { "@id": "schema:valueMaxLength" },
|
|
2998
|
+
valueMinLength: { "@id": "schema:valueMinLength" },
|
|
2999
|
+
valueName: { "@id": "schema:valueName" },
|
|
3000
|
+
valuePattern: { "@id": "schema:valuePattern" },
|
|
3001
|
+
valueReference: { "@id": "schema:valueReference" },
|
|
3002
|
+
valueRequired: { "@id": "schema:valueRequired" },
|
|
3003
|
+
variableMeasured: { "@id": "schema:variableMeasured" },
|
|
3004
|
+
variablesMeasured: { "@id": "schema:variablesMeasured" },
|
|
3005
|
+
variantCover: { "@id": "schema:variantCover" },
|
|
3006
|
+
variesBy: { "@id": "schema:variesBy" },
|
|
3007
|
+
vatID: { "@id": "schema:vatID" },
|
|
3008
|
+
vehicleConfiguration: { "@id": "schema:vehicleConfiguration" },
|
|
3009
|
+
vehicleEngine: { "@id": "schema:vehicleEngine" },
|
|
3010
|
+
vehicleIdentificationNumber: { "@id": "schema:vehicleIdentificationNumber" },
|
|
3011
|
+
vehicleInteriorColor: { "@id": "schema:vehicleInteriorColor" },
|
|
3012
|
+
vehicleInteriorType: { "@id": "schema:vehicleInteriorType" },
|
|
3013
|
+
vehicleModelDate: {
|
|
3014
|
+
"@id": "schema:vehicleModelDate",
|
|
3015
|
+
"@type": "Date"
|
|
3016
|
+
},
|
|
3017
|
+
vehicleSeatingCapacity: { "@id": "schema:vehicleSeatingCapacity" },
|
|
3018
|
+
vehicleSpecialUsage: { "@id": "schema:vehicleSpecialUsage" },
|
|
3019
|
+
vehicleTransmission: { "@id": "schema:vehicleTransmission" },
|
|
3020
|
+
vendor: { "@id": "schema:vendor" },
|
|
3021
|
+
verificationFactCheckingPolicy: {
|
|
3022
|
+
"@id": "schema:verificationFactCheckingPolicy",
|
|
3023
|
+
"@type": "@id"
|
|
3024
|
+
},
|
|
3025
|
+
version: { "@id": "schema:version" },
|
|
3026
|
+
video: { "@id": "schema:video" },
|
|
3027
|
+
videoFormat: { "@id": "schema:videoFormat" },
|
|
3028
|
+
videoFrameSize: { "@id": "schema:videoFrameSize" },
|
|
3029
|
+
videoQuality: { "@id": "schema:videoQuality" },
|
|
3030
|
+
volumeNumber: { "@id": "schema:volumeNumber" },
|
|
3031
|
+
warning: { "@id": "schema:warning" },
|
|
3032
|
+
warranty: { "@id": "schema:warranty" },
|
|
3033
|
+
warrantyPromise: { "@id": "schema:warrantyPromise" },
|
|
3034
|
+
warrantyScope: { "@id": "schema:warrantyScope" },
|
|
3035
|
+
webCheckinTime: { "@id": "schema:webCheckinTime" },
|
|
3036
|
+
webFeed: {
|
|
3037
|
+
"@id": "schema:webFeed",
|
|
3038
|
+
"@type": "@id"
|
|
3039
|
+
},
|
|
3040
|
+
weight: { "@id": "schema:weight" },
|
|
3041
|
+
weightTotal: { "@id": "schema:weightTotal" },
|
|
3042
|
+
wheelbase: { "@id": "schema:wheelbase" },
|
|
3043
|
+
width: { "@id": "schema:width" },
|
|
3044
|
+
winner: { "@id": "schema:winner" },
|
|
3045
|
+
wordCount: { "@id": "schema:wordCount" },
|
|
3046
|
+
workExample: { "@id": "schema:workExample" },
|
|
3047
|
+
workFeatured: { "@id": "schema:workFeatured" },
|
|
3048
|
+
workHours: { "@id": "schema:workHours" },
|
|
3049
|
+
workLocation: { "@id": "schema:workLocation" },
|
|
3050
|
+
workPerformed: { "@id": "schema:workPerformed" },
|
|
3051
|
+
workPresented: { "@id": "schema:workPresented" },
|
|
3052
|
+
workTranslation: { "@id": "schema:workTranslation" },
|
|
3053
|
+
workload: { "@id": "schema:workload" },
|
|
3054
|
+
worksFor: { "@id": "schema:worksFor" },
|
|
3055
|
+
worstRating: { "@id": "schema:worstRating" },
|
|
3056
|
+
xpath: { "@id": "schema:xpath" },
|
|
3057
|
+
yearBuilt: { "@id": "schema:yearBuilt" },
|
|
3058
|
+
yearlyRevenue: { "@id": "schema:yearlyRevenue" },
|
|
3059
|
+
yearsInOperation: { "@id": "schema:yearsInOperation" },
|
|
3060
|
+
yield: { "@id": "schema:yield" }
|
|
3061
|
+
} };
|
|
3062
|
+
|
|
3063
|
+
//#endregion
|
|
3064
|
+
export { SCHEMA_ORG };
|
|
3065
|
+
//# sourceMappingURL=schema_org.mjs.map
|