@originator-profile/model 0.5.2 → 0.5.3

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.
@@ -0,0 +1,664 @@
1
+ import { z } from 'zod';
2
+
3
+ /**
4
+ * 後方互換性のため 2026-09-01 まで許容
5
+ * Content Attestation では allowedOrigin は非推奨です。代わりに allowedUrl を使用してください。
6
+ */
7
+ declare const AllowedOrigin: z.ZodUnion<readonly [z.ZodCustomStringFormat<"origin">, z.ZodArray<z.ZodCustomStringFormat<"origin">>]>;
8
+ type AllowedOrigin = z.infer<typeof AllowedOrigin>;
9
+
10
+ declare const AllowedUrl: z.ZodUnion<readonly [z.ZodCustomStringFormat<"url-pattern">, z.ZodArray<z.ZodCustomStringFormat<"url-pattern">>]>;
11
+ type AllowedUrl = z.infer<typeof AllowedUrl>;
12
+
13
+ declare const CertificationSystem: z.ZodObject<{
14
+ id: z.ZodURL;
15
+ type: z.ZodLiteral<"CertificationSystem">;
16
+ name: z.ZodString;
17
+ description: z.ZodOptional<z.ZodString>;
18
+ ref: z.ZodOptional<z.ZodURL>;
19
+ }, z.core.$strip>;
20
+ type CertificationSystem = z.infer<typeof CertificationSystem>;
21
+
22
+ declare const Certificate: z.ZodObject<{
23
+ "@context": z.ZodTuple<[z.ZodLiteral<"https://www.w3.org/ns/credentials/v2">, z.ZodLiteral<"https://originator-profile.org/ns/credentials/v1">, z.ZodLiteral<"https://originator-profile.org/ns/cip/v1">, z.ZodObject<{
24
+ "@language": z.ZodString;
25
+ }, z.core.$strip>], null>;
26
+ type: z.ZodTuple<[z.ZodLiteral<"VerifiableCredential">, z.ZodLiteral<"Certificate">], null>;
27
+ issuer: z.ZodString;
28
+ validFrom: z.ZodOptional<z.ZodISODateTime>;
29
+ validUntil: z.ZodOptional<z.ZodISODateTime>;
30
+ credentialSubject: z.ZodObject<{
31
+ id: z.ZodString;
32
+ type: z.ZodLiteral<"CertificateProperties">;
33
+ description: z.ZodOptional<z.ZodString>;
34
+ image: z.ZodOptional<z.ZodObject<{
35
+ id: z.ZodURL;
36
+ digestSRI: z.ZodOptional<z.ZodCustomStringFormat<"sri">>;
37
+ }, z.core.$strip>>;
38
+ certifier: z.ZodOptional<z.ZodString>;
39
+ verifier: z.ZodOptional<z.ZodString>;
40
+ certificationSystem: z.ZodObject<{
41
+ id: z.ZodURL;
42
+ type: z.ZodLiteral<"CertificationSystem">;
43
+ name: z.ZodString;
44
+ description: z.ZodOptional<z.ZodString>;
45
+ ref: z.ZodOptional<z.ZodURL>;
46
+ }, z.core.$strip>;
47
+ }, z.core.$strip>;
48
+ }, z.core.$strip>;
49
+ type Certificate = z.infer<typeof Certificate>;
50
+
51
+ declare const JapaneseExistenceCertificateProperties: z.ZodObject<{
52
+ id: z.ZodString;
53
+ type: z.ZodLiteral<"JP-OrganizationExistenceCertificate">;
54
+ name: z.ZodString;
55
+ description: z.ZodOptional<z.ZodString>;
56
+ image: z.ZodOptional<z.ZodObject<{
57
+ id: z.ZodURL;
58
+ digestSRI: z.ZodOptional<z.ZodCustomStringFormat<"sri">>;
59
+ }, z.core.$strip>>;
60
+ corporateName: z.ZodString;
61
+ corporateNumber: z.ZodString;
62
+ postalCode: z.ZodString;
63
+ addressCountry: z.ZodString;
64
+ addressRegion: z.ZodString;
65
+ addressLocality: z.ZodString;
66
+ streetAddress: z.ZodString;
67
+ certificationSystem: z.ZodObject<{
68
+ id: z.ZodURL;
69
+ type: z.ZodLiteral<"CertificationSystem">;
70
+ name: z.ZodString;
71
+ description: z.ZodOptional<z.ZodString>;
72
+ ref: z.ZodOptional<z.ZodURL>;
73
+ }, z.core.$strip>;
74
+ }, z.core.$strip>;
75
+ declare const JapaneseExistenceCertificate: z.ZodObject<{
76
+ "@context": z.ZodTuple<[z.ZodLiteral<"https://www.w3.org/ns/credentials/v2">, z.ZodLiteral<"https://originator-profile.org/ns/credentials/v1">, z.ZodLiteral<"https://originator-profile.org/ns/cip/v1">, z.ZodObject<{
77
+ "@language": z.ZodString;
78
+ }, z.core.$strip>], null>;
79
+ type: z.ZodTuple<[z.ZodLiteral<"VerifiableCredential">, z.ZodLiteral<"Certificate">], null>;
80
+ issuer: z.ZodString;
81
+ credentialSubject: z.ZodObject<{
82
+ id: z.ZodString;
83
+ type: z.ZodLiteral<"JP-OrganizationExistenceCertificate">;
84
+ name: z.ZodString;
85
+ description: z.ZodOptional<z.ZodString>;
86
+ image: z.ZodOptional<z.ZodObject<{
87
+ id: z.ZodURL;
88
+ digestSRI: z.ZodOptional<z.ZodCustomStringFormat<"sri">>;
89
+ }, z.core.$strip>>;
90
+ corporateName: z.ZodString;
91
+ corporateNumber: z.ZodString;
92
+ postalCode: z.ZodString;
93
+ addressCountry: z.ZodString;
94
+ addressRegion: z.ZodString;
95
+ addressLocality: z.ZodString;
96
+ streetAddress: z.ZodString;
97
+ certificationSystem: z.ZodObject<{
98
+ id: z.ZodURL;
99
+ type: z.ZodLiteral<"CertificationSystem">;
100
+ name: z.ZodString;
101
+ description: z.ZodOptional<z.ZodString>;
102
+ ref: z.ZodOptional<z.ZodURL>;
103
+ }, z.core.$strip>;
104
+ }, z.core.$strip>;
105
+ validFrom: z.ZodOptional<z.ZodISODateTime>;
106
+ validUntil: z.ZodOptional<z.ZodISODateTime>;
107
+ }, z.core.$loose>;
108
+ type JapaneseExistenceCertificate = z.infer<typeof JapaneseExistenceCertificate>;
109
+
110
+ declare const subject$1: z.ZodObject<{
111
+ id: z.ZodURL;
112
+ type: z.ZodLiteral<"OnlineAd">;
113
+ name: z.ZodOptional<z.ZodString>;
114
+ description: z.ZodOptional<z.ZodString>;
115
+ image: z.ZodOptional<z.ZodObject<{
116
+ id: z.ZodURL;
117
+ digestSRI: z.ZodOptional<z.ZodCustomStringFormat<"sri">>;
118
+ }, z.core.$strip>>;
119
+ genre: z.ZodOptional<z.ZodString>;
120
+ landingPageUrl: z.ZodOptional<z.ZodURL>;
121
+ adReportContact: z.ZodOptional<z.ZodObject<{
122
+ id: z.ZodURL;
123
+ name: z.ZodString;
124
+ }, z.core.$strip>>;
125
+ adReviewGuidelines: z.ZodOptional<z.ZodObject<{
126
+ id: z.ZodURL;
127
+ name: z.ZodString;
128
+ }, z.core.$strip>>;
129
+ targetingPolicy: z.ZodOptional<z.ZodObject<{
130
+ id: z.ZodURL;
131
+ name: z.ZodString;
132
+ }, z.core.$strip>>;
133
+ adDataHandlingPolicy: z.ZodOptional<z.ZodObject<{
134
+ id: z.ZodURL;
135
+ name: z.ZodString;
136
+ }, z.core.$strip>>;
137
+ adDisplayRationale: z.ZodOptional<z.ZodObject<{
138
+ page: z.ZodOptional<z.ZodObject<{
139
+ id: z.ZodURL;
140
+ name: z.ZodString;
141
+ }, z.core.$strip>>;
142
+ description: z.ZodOptional<z.ZodString>;
143
+ }, z.core.$strip>>;
144
+ }, z.core.$loose>;
145
+ declare const AdvertisementCA: z.ZodIntersection<z.ZodObject<{
146
+ type: z.ZodArray<z.ZodUnknown>;
147
+ issuer: z.ZodString;
148
+ allowedUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustomStringFormat<"url-pattern">, z.ZodArray<z.ZodCustomStringFormat<"url-pattern">>]>>;
149
+ allowedOrigin: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustomStringFormat<"origin">, z.ZodArray<z.ZodCustomStringFormat<"origin">>]>>;
150
+ target: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
151
+ type: z.ZodEnum<{
152
+ TextTargetIntegrity: "TextTargetIntegrity";
153
+ VisibleTextTargetIntegrity: "VisibleTextTargetIntegrity";
154
+ HtmlTargetIntegrity: "HtmlTargetIntegrity";
155
+ }>;
156
+ integrity: z.ZodCustomStringFormat<"sri">;
157
+ cssSelector: z.ZodString;
158
+ }, z.core.$loose>, z.ZodObject<{
159
+ type: z.ZodLiteral<"ExternalResourceTargetIntegrity">;
160
+ integrity: z.ZodCustomStringFormat<"sri">;
161
+ }, z.core.$loose>]>>;
162
+ "@context": z.ZodTuple<[z.ZodLiteral<"https://www.w3.org/ns/credentials/v2">, z.ZodLiteral<"https://originator-profile.org/ns/credentials/v1">, z.ZodLiteral<"https://originator-profile.org/ns/cip/v1">, z.ZodObject<{
163
+ "@language": z.ZodString;
164
+ }, z.core.$strip>], null>;
165
+ credentialSubject: z.ZodObject<{
166
+ id: z.ZodURL;
167
+ type: z.ZodLiteral<"OnlineAd">;
168
+ name: z.ZodOptional<z.ZodString>;
169
+ description: z.ZodOptional<z.ZodString>;
170
+ image: z.ZodOptional<z.ZodObject<{
171
+ id: z.ZodURL;
172
+ digestSRI: z.ZodOptional<z.ZodCustomStringFormat<"sri">>;
173
+ }, z.core.$strip>>;
174
+ genre: z.ZodOptional<z.ZodString>;
175
+ landingPageUrl: z.ZodOptional<z.ZodURL>;
176
+ adReportContact: z.ZodOptional<z.ZodObject<{
177
+ id: z.ZodURL;
178
+ name: z.ZodString;
179
+ }, z.core.$strip>>;
180
+ adReviewGuidelines: z.ZodOptional<z.ZodObject<{
181
+ id: z.ZodURL;
182
+ name: z.ZodString;
183
+ }, z.core.$strip>>;
184
+ targetingPolicy: z.ZodOptional<z.ZodObject<{
185
+ id: z.ZodURL;
186
+ name: z.ZodString;
187
+ }, z.core.$strip>>;
188
+ adDataHandlingPolicy: z.ZodOptional<z.ZodObject<{
189
+ id: z.ZodURL;
190
+ name: z.ZodString;
191
+ }, z.core.$strip>>;
192
+ adDisplayRationale: z.ZodOptional<z.ZodObject<{
193
+ page: z.ZodOptional<z.ZodObject<{
194
+ id: z.ZodURL;
195
+ name: z.ZodString;
196
+ }, z.core.$strip>>;
197
+ description: z.ZodOptional<z.ZodString>;
198
+ }, z.core.$strip>>;
199
+ }, z.core.$loose>;
200
+ }, z.core.$loose>, z.ZodUnion<readonly [z.ZodObject<{
201
+ allowedUrl: z.ZodUnion<readonly [z.ZodCustomStringFormat<"url-pattern">, z.ZodArray<z.ZodCustomStringFormat<"url-pattern">>]>;
202
+ allowedOrigin: z.ZodOptional<z.ZodNever>;
203
+ }, z.core.$strip>, z.ZodObject<{
204
+ allowedUrl: z.ZodOptional<z.ZodNever>;
205
+ allowedOrigin: z.ZodUnion<readonly [z.ZodCustomStringFormat<"origin">, z.ZodArray<z.ZodCustomStringFormat<"origin">>]>;
206
+ }, z.core.$strip>]>>;
207
+ type AdvertisementCA = z.infer<typeof AdvertisementCA>;
208
+ type AdvertisementSubject = z.infer<typeof subject$1>;
209
+
210
+ declare const AdvertorialCA: z.ZodObject<{
211
+ type: z.ZodArray<z.ZodUnknown>;
212
+ issuer: z.ZodString;
213
+ allowedOrigin: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustomStringFormat<"origin">, z.ZodArray<z.ZodCustomStringFormat<"origin">>]>>;
214
+ target: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
215
+ type: z.ZodEnum<{
216
+ TextTargetIntegrity: "TextTargetIntegrity";
217
+ VisibleTextTargetIntegrity: "VisibleTextTargetIntegrity";
218
+ HtmlTargetIntegrity: "HtmlTargetIntegrity";
219
+ }>;
220
+ integrity: z.ZodCustomStringFormat<"sri">;
221
+ cssSelector: z.ZodString;
222
+ }, z.core.$loose>, z.ZodObject<{
223
+ type: z.ZodLiteral<"ExternalResourceTargetIntegrity">;
224
+ integrity: z.ZodCustomStringFormat<"sri">;
225
+ }, z.core.$loose>]>>;
226
+ "@context": z.ZodTuple<[z.ZodLiteral<"https://www.w3.org/ns/credentials/v2">, z.ZodLiteral<"https://originator-profile.org/ns/credentials/v1">, z.ZodLiteral<"https://originator-profile.org/ns/cip/v1">, z.ZodObject<{
227
+ "@language": z.ZodString;
228
+ }, z.core.$strip>], null>;
229
+ credentialSubject: z.ZodObject<{
230
+ id: z.ZodURL;
231
+ type: z.ZodLiteral<"Advertorial">;
232
+ headline: z.ZodString;
233
+ description: z.ZodString;
234
+ image: z.ZodOptional<z.ZodObject<{
235
+ id: z.ZodURL;
236
+ digestSRI: z.ZodOptional<z.ZodCustomStringFormat<"sri">>;
237
+ }, z.core.$strip>>;
238
+ datePublished: z.ZodOptional<z.ZodISODateTime>;
239
+ dateModified: z.ZodOptional<z.ZodISODateTime>;
240
+ author: z.ZodOptional<z.ZodArray<z.ZodString>>;
241
+ editor: z.ZodOptional<z.ZodArray<z.ZodString>>;
242
+ sponsor: z.ZodOptional<z.ZodArray<z.ZodString>>;
243
+ genre: z.ZodOptional<z.ZodString>;
244
+ }, z.core.$strip>;
245
+ allowedUrl: z.ZodUnion<readonly [z.ZodCustomStringFormat<"url-pattern">, z.ZodArray<z.ZodCustomStringFormat<"url-pattern">>]>;
246
+ }, z.core.$loose>;
247
+ type AdvertorialCA = z.infer<typeof AdvertorialCA>;
248
+
249
+ declare const ArticleCA: z.ZodObject<{
250
+ type: z.ZodArray<z.ZodUnknown>;
251
+ issuer: z.ZodString;
252
+ allowedOrigin: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustomStringFormat<"origin">, z.ZodArray<z.ZodCustomStringFormat<"origin">>]>>;
253
+ target: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
254
+ type: z.ZodEnum<{
255
+ TextTargetIntegrity: "TextTargetIntegrity";
256
+ VisibleTextTargetIntegrity: "VisibleTextTargetIntegrity";
257
+ HtmlTargetIntegrity: "HtmlTargetIntegrity";
258
+ }>;
259
+ integrity: z.ZodCustomStringFormat<"sri">;
260
+ cssSelector: z.ZodString;
261
+ }, z.core.$loose>, z.ZodObject<{
262
+ type: z.ZodLiteral<"ExternalResourceTargetIntegrity">;
263
+ integrity: z.ZodCustomStringFormat<"sri">;
264
+ }, z.core.$loose>]>>;
265
+ "@context": z.ZodTuple<[z.ZodLiteral<"https://www.w3.org/ns/credentials/v2">, z.ZodLiteral<"https://originator-profile.org/ns/credentials/v1">, z.ZodLiteral<"https://originator-profile.org/ns/cip/v1">, z.ZodObject<{
266
+ "@language": z.ZodString;
267
+ }, z.core.$strip>], null>;
268
+ credentialSubject: z.ZodObject<{
269
+ id: z.ZodURL;
270
+ type: z.ZodLiteral<"Article">;
271
+ headline: z.ZodString;
272
+ description: z.ZodString;
273
+ image: z.ZodOptional<z.ZodObject<{
274
+ id: z.ZodURL;
275
+ digestSRI: z.ZodOptional<z.ZodCustomStringFormat<"sri">>;
276
+ }, z.core.$strip>>;
277
+ datePublished: z.ZodOptional<z.ZodISODateTime>;
278
+ dateModified: z.ZodOptional<z.ZodISODateTime>;
279
+ author: z.ZodOptional<z.ZodArray<z.ZodString>>;
280
+ editor: z.ZodOptional<z.ZodArray<z.ZodString>>;
281
+ genre: z.ZodOptional<z.ZodString>;
282
+ }, z.core.$strip>;
283
+ allowedUrl: z.ZodUnion<readonly [z.ZodCustomStringFormat<"url-pattern">, z.ZodArray<z.ZodCustomStringFormat<"url-pattern">>]>;
284
+ }, z.core.$loose>;
285
+ type ArticleCA = z.infer<typeof ArticleCA>;
286
+
287
+ declare const subject: z.ZodObject<{
288
+ id: z.ZodURL;
289
+ type: z.ZodString;
290
+ }, z.core.$loose>;
291
+ declare const ContentAttestation: z.ZodObject<{
292
+ "@context": z.ZodArray<z.ZodUnknown>;
293
+ type: z.ZodArray<z.ZodUnknown>;
294
+ issuer: z.ZodString;
295
+ credentialSubject: z.ZodObject<{
296
+ id: z.ZodURL;
297
+ type: z.ZodString;
298
+ }, z.core.$loose>;
299
+ allowedUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustomStringFormat<"url-pattern">, z.ZodArray<z.ZodCustomStringFormat<"url-pattern">>]>>;
300
+ allowedOrigin: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustomStringFormat<"origin">, z.ZodArray<z.ZodCustomStringFormat<"origin">>]>>;
301
+ target: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
302
+ type: z.ZodEnum<{
303
+ TextTargetIntegrity: "TextTargetIntegrity";
304
+ VisibleTextTargetIntegrity: "VisibleTextTargetIntegrity";
305
+ HtmlTargetIntegrity: "HtmlTargetIntegrity";
306
+ }>;
307
+ integrity: z.ZodCustomStringFormat<"sri">;
308
+ cssSelector: z.ZodString;
309
+ }, z.core.$loose>, z.ZodObject<{
310
+ type: z.ZodLiteral<"ExternalResourceTargetIntegrity">;
311
+ integrity: z.ZodCustomStringFormat<"sri">;
312
+ }, z.core.$loose>]>>;
313
+ }, z.core.$loose>;
314
+ type ContentAttestation = z.infer<typeof ContentAttestation>;
315
+
316
+ declare const UnsignedContentAttestation: z.ZodObject<{
317
+ "@context": z.ZodArray<z.ZodUnknown>;
318
+ type: z.ZodArray<z.ZodUnknown>;
319
+ issuer: z.ZodString;
320
+ credentialSubject: z.ZodObject<{
321
+ id: z.ZodURL;
322
+ type: z.ZodString;
323
+ }, z.core.$loose>;
324
+ allowedUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustomStringFormat<"url-pattern">, z.ZodArray<z.ZodCustomStringFormat<"url-pattern">>]>>;
325
+ allowedOrigin: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustomStringFormat<"origin">, z.ZodArray<z.ZodCustomStringFormat<"origin">>]>>;
326
+ target: z.ZodArray<z.ZodObject<{
327
+ type: z.ZodEnum<{
328
+ TextTargetIntegrity: "TextTargetIntegrity";
329
+ VisibleTextTargetIntegrity: "VisibleTextTargetIntegrity";
330
+ HtmlTargetIntegrity: "HtmlTargetIntegrity";
331
+ ExternalResourceTargetIntegrity: "ExternalResourceTargetIntegrity";
332
+ }>;
333
+ content: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodString]>>;
334
+ cssSelector: z.ZodOptional<z.ZodString>;
335
+ }, z.core.$loose>>;
336
+ }, z.core.$loose>;
337
+ type UnsignedContentAttestation = z.infer<typeof UnsignedContentAttestation>;
338
+
339
+ declare const ContentAttestationSetItem: z.ZodUnion<readonly [z.ZodObject<{
340
+ main: z.ZodLiteral<true>;
341
+ attestation: z.ZodString;
342
+ }, z.core.$loose>, z.ZodString]>;
343
+ type ContentAttestationSetItem = z.infer<typeof ContentAttestationSetItem>;
344
+ declare const ContentAttestationSet: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
345
+ main: z.ZodLiteral<true>;
346
+ attestation: z.ZodString;
347
+ }, z.core.$loose>, z.ZodString]>>;
348
+ type ContentAttestationSet = z.infer<typeof ContentAttestationSet>;
349
+
350
+ declare const CoreProfile: z.ZodObject<{
351
+ "@context": z.ZodTuple<[z.ZodLiteral<"https://www.w3.org/ns/credentials/v2">, z.ZodLiteral<"https://originator-profile.org/ns/credentials/v1">], null>;
352
+ type: z.ZodTuple<[z.ZodLiteral<"VerifiableCredential">, z.ZodLiteral<"CoreProfile">], null>;
353
+ issuer: z.ZodString;
354
+ credentialSubject: z.ZodObject<{
355
+ id: z.ZodString;
356
+ type: z.ZodLiteral<"Core">;
357
+ jwks: z.ZodObject<{
358
+ keys: z.ZodArray<z.ZodObject<{
359
+ kty: z.ZodString;
360
+ use: z.ZodOptional<z.ZodString>;
361
+ key_ops: z.ZodOptional<z.ZodArray<z.ZodString>>;
362
+ alg: z.ZodOptional<z.ZodString>;
363
+ kid: z.ZodString;
364
+ x5u: z.ZodOptional<z.ZodString>;
365
+ x5c: z.ZodOptional<z.ZodArray<z.ZodString>>;
366
+ x5t: z.ZodOptional<z.ZodString>;
367
+ "x5t#S256": z.ZodOptional<z.ZodString>;
368
+ }, z.core.$loose>>;
369
+ }, z.core.$loose>;
370
+ }, z.core.$strip>;
371
+ }, z.core.$strip>;
372
+ type CoreProfile = z.infer<typeof CoreProfile>;
373
+
374
+ /**
375
+ * xsd:dateTimeStamp 形式の文字列スキーマ。
376
+ * タイムゾーン指定(Z または ±HH:MM)を必須とする。
377
+ * @see https://www.w3.org/TR/xmlschema11-2/#dateTimeStamp
378
+ */
379
+ declare const DateTimeStamp: z.ZodISODateTime;
380
+ type DateTimeStamp = z.infer<typeof DateTimeStamp>;
381
+
382
+ declare const Description: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
383
+ text: z.ZodString;
384
+ encodingFormat: z.ZodEnum<{
385
+ "text/plain": "text/plain";
386
+ "text/html": "text/html";
387
+ }>;
388
+ }, z.core.$loose>]>;
389
+ type Description = z.infer<typeof Description>;
390
+
391
+ declare const RawImage: z.ZodObject<{
392
+ id: z.ZodURL;
393
+ content: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
394
+ }, z.core.$strip>;
395
+ type RawImage = z.infer<typeof RawImage>;
396
+ declare const Image: z.ZodObject<{
397
+ id: z.ZodURL;
398
+ digestSRI: z.ZodOptional<z.ZodCustomStringFormat<"sri">>;
399
+ }, z.core.$strip>;
400
+ type Image = z.infer<typeof Image>;
401
+
402
+ declare const Jwk: z.ZodObject<{
403
+ kty: z.ZodString;
404
+ use: z.ZodOptional<z.ZodString>;
405
+ key_ops: z.ZodOptional<z.ZodArray<z.ZodString>>;
406
+ alg: z.ZodOptional<z.ZodString>;
407
+ kid: z.ZodString;
408
+ x5u: z.ZodOptional<z.ZodString>;
409
+ x5c: z.ZodOptional<z.ZodArray<z.ZodString>>;
410
+ x5t: z.ZodOptional<z.ZodString>;
411
+ "x5t#S256": z.ZodOptional<z.ZodString>;
412
+ }, z.core.$loose>;
413
+ type Jwk = z.infer<typeof Jwk>;
414
+
415
+ declare const Jwks: z.ZodObject<{
416
+ keys: z.ZodArray<z.ZodObject<{
417
+ kty: z.ZodString;
418
+ use: z.ZodOptional<z.ZodString>;
419
+ key_ops: z.ZodOptional<z.ZodArray<z.ZodString>>;
420
+ alg: z.ZodOptional<z.ZodString>;
421
+ kid: z.ZodString;
422
+ x5u: z.ZodOptional<z.ZodString>;
423
+ x5c: z.ZodOptional<z.ZodArray<z.ZodString>>;
424
+ x5t: z.ZodOptional<z.ZodString>;
425
+ "x5t#S256": z.ZodOptional<z.ZodString>;
426
+ }, z.core.$loose>>;
427
+ }, z.core.$loose>;
428
+ type Jwks = z.infer<typeof Jwks>;
429
+
430
+ declare const OpId: z.ZodString;
431
+ type OpId = z.infer<typeof OpId>;
432
+
433
+ declare const OpMeta: z.ZodObject<{
434
+ targetopid: z.ZodString;
435
+ }, z.core.$loose>;
436
+ type OpMeta = z.infer<typeof OpMeta>;
437
+
438
+ declare const OpVc: z.ZodObject<{
439
+ "@context": z.ZodArray<z.ZodUnknown>;
440
+ type: z.ZodArray<z.ZodUnknown>;
441
+ issuer: z.ZodString;
442
+ credentialSubject: z.ZodObject<{
443
+ id: z.ZodString;
444
+ }, z.core.$loose>;
445
+ }, z.core.$loose>;
446
+ type OpVc = z.infer<typeof OpVc>;
447
+
448
+ declare const OriginatorProfile: z.ZodObject<{
449
+ core: z.ZodString;
450
+ annotations: z.ZodOptional<z.ZodArray<z.ZodString>>;
451
+ /** @deprecated 後方互換性のため 2026-11-01 まで非配列 WMP を許容。代わりに配列を使用してください。 */
452
+ media: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
453
+ }, z.core.$loose>;
454
+ type OriginatorProfile = z.infer<typeof OriginatorProfile>;
455
+ declare const OriginatorProfileSet: z.ZodArray<z.ZodObject<{
456
+ core: z.ZodString;
457
+ annotations: z.ZodOptional<z.ZodArray<z.ZodString>>;
458
+ /** @deprecated 後方互換性のため 2026-11-01 まで非配列 WMP を許容。代わりに配列を使用してください。 */
459
+ media: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
460
+ }, z.core.$loose>>;
461
+ type OriginatorProfileSet = z.infer<typeof OriginatorProfileSet>;
462
+
463
+ declare const Page: z.ZodObject<{
464
+ id: z.ZodURL;
465
+ name: z.ZodString;
466
+ }, z.core.$strip>;
467
+ type Page = z.infer<typeof Page>;
468
+
469
+ declare const SiteProfile: z.ZodObject<{
470
+ originators: z.ZodArray<z.ZodObject<{
471
+ core: z.ZodString;
472
+ annotations: z.ZodOptional<z.ZodArray<z.ZodString>>;
473
+ media: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
474
+ }, z.core.$loose>>;
475
+ sites: z.ZodOptional<z.ZodArray<z.ZodString>>;
476
+ /** @deprecated 後方互換性のため 2026-11-01 まで許容。sites が優先され、存在しない場合に credential を使用。 */
477
+ credential: z.ZodOptional<z.ZodString>;
478
+ }, z.core.$loose>;
479
+ type SiteProfile = z.infer<typeof SiteProfile>;
480
+
481
+ declare const SubresourceIntegrity: z.ZodCustomStringFormat<"sri">;
482
+ type SubresourceIntegrity = z.infer<typeof SubresourceIntegrity>;
483
+
484
+ declare const BasicTarget: z.ZodObject<{
485
+ type: z.ZodEnum<{
486
+ TextTargetIntegrity: "TextTargetIntegrity";
487
+ VisibleTextTargetIntegrity: "VisibleTextTargetIntegrity";
488
+ HtmlTargetIntegrity: "HtmlTargetIntegrity";
489
+ }>;
490
+ integrity: z.ZodCustomStringFormat<"sri">;
491
+ cssSelector: z.ZodString;
492
+ }, z.core.$loose>;
493
+ type BasicTarget = z.infer<typeof BasicTarget>;
494
+
495
+ declare const ExternalResourceTarget: z.ZodObject<{
496
+ type: z.ZodLiteral<"ExternalResourceTargetIntegrity">;
497
+ integrity: z.ZodCustomStringFormat<"sri">;
498
+ }, z.core.$loose>;
499
+ type ExternalResourceTarget = z.infer<typeof ExternalResourceTarget>;
500
+
501
+ declare const RawTarget: z.ZodObject<{
502
+ type: z.ZodEnum<{
503
+ TextTargetIntegrity: "TextTargetIntegrity";
504
+ VisibleTextTargetIntegrity: "VisibleTextTargetIntegrity";
505
+ HtmlTargetIntegrity: "HtmlTargetIntegrity";
506
+ ExternalResourceTargetIntegrity: "ExternalResourceTargetIntegrity";
507
+ }>;
508
+ content: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodString]>>;
509
+ cssSelector: z.ZodOptional<z.ZodString>;
510
+ }, z.core.$loose>;
511
+ type RawTarget = z.infer<typeof RawTarget>;
512
+
513
+ declare const Target: z.ZodUnion<readonly [z.ZodObject<{
514
+ type: z.ZodEnum<{
515
+ TextTargetIntegrity: "TextTargetIntegrity";
516
+ VisibleTextTargetIntegrity: "VisibleTextTargetIntegrity";
517
+ HtmlTargetIntegrity: "HtmlTargetIntegrity";
518
+ }>;
519
+ integrity: z.ZodCustomStringFormat<"sri">;
520
+ cssSelector: z.ZodString;
521
+ }, z.core.$loose>, z.ZodObject<{
522
+ type: z.ZodLiteral<"ExternalResourceTargetIntegrity">;
523
+ integrity: z.ZodCustomStringFormat<"sri">;
524
+ }, z.core.$loose>]>;
525
+ type Target = z.infer<typeof Target>;
526
+
527
+ declare const UnsignedWebsiteProfile: z.ZodObject<{
528
+ credentialSubject: z.ZodUnion<readonly [z.ZodObject<{
529
+ id: z.ZodURL;
530
+ type: z.ZodLiteral<"WebSite">;
531
+ name: z.ZodString;
532
+ image: z.ZodOptional<z.ZodObject<{
533
+ id: z.ZodURL;
534
+ digestSRI: z.ZodOptional<z.ZodCustomStringFormat<"sri">>;
535
+ }, z.core.$strip>>;
536
+ description: z.ZodOptional<z.ZodString>;
537
+ url: z.ZodUnion<readonly [z.ZodCustomStringFormat<"origin">, z.ZodArray<z.ZodCustomStringFormat<"origin">>]>;
538
+ }, z.core.$loose>, z.ZodObject<{
539
+ id: z.ZodURL;
540
+ type: z.ZodLiteral<"WebSite">;
541
+ name: z.ZodString;
542
+ image: z.ZodOptional<z.ZodObject<{
543
+ id: z.ZodURL;
544
+ digestSRI: z.ZodOptional<z.ZodCustomStringFormat<"sri">>;
545
+ }, z.core.$strip>>;
546
+ description: z.ZodOptional<z.ZodString>;
547
+ allowedOrigin: z.ZodUnion<readonly [z.ZodCustomStringFormat<"origin">, z.ZodArray<z.ZodCustomStringFormat<"origin">>]>;
548
+ }, z.core.$loose>, z.ZodObject<{
549
+ id: z.ZodURL;
550
+ type: z.ZodLiteral<"WebSite">;
551
+ name: z.ZodString;
552
+ description: z.ZodOptional<z.ZodString>;
553
+ url: z.ZodUnion<readonly [z.ZodCustomStringFormat<"origin">, z.ZodArray<z.ZodCustomStringFormat<"origin">>]>;
554
+ image: z.ZodUnion<readonly [z.ZodObject<{
555
+ id: z.ZodURL;
556
+ content: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
557
+ }, z.core.$strip>, z.ZodObject<{
558
+ id: z.ZodURL;
559
+ digestSRI: z.ZodOptional<z.ZodCustomStringFormat<"sri">>;
560
+ }, z.core.$strip>]>;
561
+ }, z.core.$loose> | z.ZodObject<{
562
+ id: z.ZodURL;
563
+ type: z.ZodLiteral<"WebSite">;
564
+ name: z.ZodString;
565
+ description: z.ZodOptional<z.ZodString>;
566
+ allowedOrigin: z.ZodUnion<readonly [z.ZodCustomStringFormat<"origin">, z.ZodArray<z.ZodCustomStringFormat<"origin">>]>;
567
+ image: z.ZodUnion<readonly [z.ZodObject<{
568
+ id: z.ZodURL;
569
+ content: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
570
+ }, z.core.$strip>, z.ZodObject<{
571
+ id: z.ZodURL;
572
+ digestSRI: z.ZodOptional<z.ZodCustomStringFormat<"sri">>;
573
+ }, z.core.$strip>]>;
574
+ }, z.core.$loose> | z.ZodNever]>;
575
+ "@context": z.ZodTuple<[z.ZodLiteral<"https://www.w3.org/ns/credentials/v2">, z.ZodLiteral<"https://originator-profile.org/ns/credentials/v1">, z.ZodLiteral<"https://originator-profile.org/ns/cip/v1">, z.ZodObject<{
576
+ "@language": z.ZodString;
577
+ }, z.core.$strip>], null>;
578
+ type: z.ZodTuple<[z.ZodLiteral<"VerifiableCredential">, z.ZodLiteral<"WebsiteProfile">], null>;
579
+ issuer: z.ZodString;
580
+ }, z.core.$loose>;
581
+ type UnsignedWebsiteProfile = z.infer<typeof UnsignedWebsiteProfile>;
582
+
583
+ declare const WebMediaProfile: z.ZodObject<{
584
+ "@context": z.ZodTuple<[z.ZodLiteral<"https://www.w3.org/ns/credentials/v2">, z.ZodLiteral<"https://originator-profile.org/ns/credentials/v1">, z.ZodLiteral<"https://originator-profile.org/ns/cip/v1">, z.ZodObject<{
585
+ "@language": z.ZodString;
586
+ }, z.core.$strip>], null>;
587
+ type: z.ZodTuple<[z.ZodLiteral<"VerifiableCredential">, z.ZodLiteral<"WebMediaProfile">], null>;
588
+ issuer: z.ZodString;
589
+ credentialSubject: z.ZodObject<{
590
+ id: z.ZodString;
591
+ type: z.ZodLiteral<"OnlineBusiness">;
592
+ url: z.ZodURL;
593
+ name: z.ZodString;
594
+ logo: z.ZodOptional<z.ZodObject<{
595
+ id: z.ZodURL;
596
+ digestSRI: z.ZodOptional<z.ZodCustomStringFormat<"sri">>;
597
+ }, z.core.$strip>>;
598
+ email: z.ZodOptional<z.ZodEmail>;
599
+ telephone: z.ZodOptional<z.ZodString>;
600
+ contactPoint: z.ZodOptional<z.ZodObject<{
601
+ id: z.ZodURL;
602
+ name: z.ZodString;
603
+ }, z.core.$strip>>;
604
+ informationTransmissionPolicy: z.ZodOptional<z.ZodObject<{
605
+ id: z.ZodURL;
606
+ name: z.ZodString;
607
+ }, z.core.$strip>>;
608
+ publishingPrinciple: z.ZodOptional<z.ZodObject<{
609
+ id: z.ZodURL;
610
+ name: z.ZodString;
611
+ }, z.core.$strip>>;
612
+ privacyPolicy: z.ZodOptional<z.ZodObject<{
613
+ id: z.ZodURL;
614
+ name: z.ZodString;
615
+ }, z.core.$strip>>;
616
+ description: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
617
+ text: z.ZodString;
618
+ encodingFormat: z.ZodEnum<{
619
+ "text/plain": "text/plain";
620
+ "text/html": "text/html";
621
+ }>;
622
+ }, z.core.$loose>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
623
+ text: z.ZodString;
624
+ encodingFormat: z.ZodEnum<{
625
+ "text/plain": "text/plain";
626
+ "text/html": "text/html";
627
+ }>;
628
+ }, z.core.$loose>]>>]>>;
629
+ }, z.core.$loose>;
630
+ }, z.core.$loose>;
631
+ type WebMediaProfile = z.infer<typeof WebMediaProfile>;
632
+
633
+ declare const WebsiteProfile: z.ZodObject<{
634
+ "@context": z.ZodTuple<[z.ZodLiteral<"https://www.w3.org/ns/credentials/v2">, z.ZodLiteral<"https://originator-profile.org/ns/credentials/v1">, z.ZodLiteral<"https://originator-profile.org/ns/cip/v1">, z.ZodObject<{
635
+ "@language": z.ZodString;
636
+ }, z.core.$strip>], null>;
637
+ type: z.ZodTuple<[z.ZodLiteral<"VerifiableCredential">, z.ZodLiteral<"WebsiteProfile">], null>;
638
+ issuer: z.ZodString;
639
+ credentialSubject: z.ZodUnion<readonly [z.ZodObject<{
640
+ id: z.ZodURL;
641
+ type: z.ZodLiteral<"WebSite">;
642
+ name: z.ZodString;
643
+ image: z.ZodOptional<z.ZodObject<{
644
+ id: z.ZodURL;
645
+ digestSRI: z.ZodOptional<z.ZodCustomStringFormat<"sri">>;
646
+ }, z.core.$strip>>;
647
+ description: z.ZodOptional<z.ZodString>;
648
+ url: z.ZodUnion<readonly [z.ZodCustomStringFormat<"origin">, z.ZodArray<z.ZodCustomStringFormat<"origin">>]>;
649
+ }, z.core.$loose>, z.ZodObject<{
650
+ id: z.ZodURL;
651
+ type: z.ZodLiteral<"WebSite">;
652
+ name: z.ZodString;
653
+ image: z.ZodOptional<z.ZodObject<{
654
+ id: z.ZodURL;
655
+ digestSRI: z.ZodOptional<z.ZodCustomStringFormat<"sri">>;
656
+ }, z.core.$strip>>;
657
+ description: z.ZodOptional<z.ZodString>;
658
+ allowedOrigin: z.ZodUnion<readonly [z.ZodCustomStringFormat<"origin">, z.ZodArray<z.ZodCustomStringFormat<"origin">>]>;
659
+ }, z.core.$loose>]>;
660
+ }, z.core.$loose>;
661
+ type WebsiteProfile = z.infer<typeof WebsiteProfile>;
662
+
663
+ export { AdvertisementCA, AdvertorialCA, AllowedOrigin, AllowedUrl, ArticleCA, BasicTarget, Certificate, CertificationSystem, ContentAttestation, ContentAttestationSet, ContentAttestationSetItem, CoreProfile, DateTimeStamp, Description, ExternalResourceTarget, Image, JapaneseExistenceCertificate, JapaneseExistenceCertificateProperties, Jwk, Jwks, OpId, OpMeta, OpVc, OriginatorProfile, OriginatorProfileSet, Page, RawImage, RawTarget, SiteProfile, SubresourceIntegrity, Target, UnsignedContentAttestation, UnsignedWebsiteProfile, WebMediaProfile, WebsiteProfile, subject };
664
+ export type { AdvertisementSubject };