File size: 27,481 Bytes
38b6321
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE rdf:RDF [
	<!ENTITY cmns-av "https://www.omg.org/spec/Commons/AnnotationVocabulary/">
	<!ENTITY cmns-dt "https://www.omg.org/spec/Commons/DatesAndTimes/">
	<!ENTITY dct "http://purl.org/dc/terms/">
	<!ENTITY fibo-bp-iss-ambs "https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/AgencyMBSIssuance/">
	<!ENTITY fibo-bp-iss-dbti "https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/DebtIssuance/">
	<!ENTITY fibo-bp-iss-doc "https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/IssuanceDocuments/">
	<!ENTITY fibo-bp-iss-mbs "https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/MBSIssuance/">
	<!ENTITY fibo-bp-iss-pmbs "https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/PrivateLabelMBSIssuance/">
	<!ENTITY fibo-bp-iss-prc "https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/IssuanceProcess/">
	<!ENTITY fibo-fbc-dae-crt "https://spec.edmcouncil.org/fibo/ontology/FBC/DebtAndEquities/CreditRatings/">
	<!ENTITY fibo-fnd-acc-cur "https://spec.edmcouncil.org/fibo/ontology/FND/Accounting/CurrencyAmount/">
	<!ENTITY fibo-fnd-agr-ctr "https://spec.edmcouncil.org/fibo/ontology/FND/Agreements/Contracts/">
	<!ENTITY fibo-fnd-arr-lif "https://spec.edmcouncil.org/fibo/ontology/FND/Arrangements/Lifecycles/">
	<!ENTITY fibo-fnd-rel-rel "https://spec.edmcouncil.org/fibo/ontology/FND/Relations/Relations/">
	<!ENTITY fibo-fnd-utl-av "https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/">
	<!ENTITY fibo-loan-reln-mtg "https://spec.edmcouncil.org/fibo/ontology/LOAN/RealEstateLoans/MortgageLoans/">
	<!ENTITY fibo-sec-dbt-bnd "https://spec.edmcouncil.org/fibo/ontology/SEC/Debt/Bonds/">
	<!ENTITY fibo-sec-dbt-mbs "https://spec.edmcouncil.org/fibo/ontology/SEC/Debt/MortgageBackedSecurities/">
	<!ENTITY fibo-sec-dbt-pbs "https://spec.edmcouncil.org/fibo/ontology/SEC/Debt/PoolBackedSecurities/">
	<!ENTITY fibo-sec-sec-iss "https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesIssuance/">
	<!ENTITY owl "http://www.w3.org/2002/07/owl#">
	<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
	<!ENTITY skos "http://www.w3.org/2004/02/skos/core#">
	<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">
]>
<rdf:RDF xml:base="https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/AgencyMBSIssuance/"
	xmlns:cmns-av="https://www.omg.org/spec/Commons/AnnotationVocabulary/"
	xmlns:cmns-dt="https://www.omg.org/spec/Commons/DatesAndTimes/"
	xmlns:dct="http://purl.org/dc/terms/"
	xmlns:fibo-bp-iss-ambs="https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/AgencyMBSIssuance/"
	xmlns:fibo-bp-iss-dbti="https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/DebtIssuance/"
	xmlns:fibo-bp-iss-doc="https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/IssuanceDocuments/"
	xmlns:fibo-bp-iss-mbs="https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/MBSIssuance/"
	xmlns:fibo-bp-iss-pmbs="https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/PrivateLabelMBSIssuance/"
	xmlns:fibo-bp-iss-prc="https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/IssuanceProcess/"
	xmlns:fibo-fbc-dae-crt="https://spec.edmcouncil.org/fibo/ontology/FBC/DebtAndEquities/CreditRatings/"
	xmlns:fibo-fnd-acc-cur="https://spec.edmcouncil.org/fibo/ontology/FND/Accounting/CurrencyAmount/"
	xmlns:fibo-fnd-agr-ctr="https://spec.edmcouncil.org/fibo/ontology/FND/Agreements/Contracts/"
	xmlns:fibo-fnd-arr-lif="https://spec.edmcouncil.org/fibo/ontology/FND/Arrangements/Lifecycles/"
	xmlns:fibo-fnd-rel-rel="https://spec.edmcouncil.org/fibo/ontology/FND/Relations/Relations/"
	xmlns:fibo-fnd-utl-av="https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/"
	xmlns:fibo-loan-reln-mtg="https://spec.edmcouncil.org/fibo/ontology/LOAN/RealEstateLoans/MortgageLoans/"
	xmlns:fibo-sec-dbt-bnd="https://spec.edmcouncil.org/fibo/ontology/SEC/Debt/Bonds/"
	xmlns:fibo-sec-dbt-mbs="https://spec.edmcouncil.org/fibo/ontology/SEC/Debt/MortgageBackedSecurities/"
	xmlns:fibo-sec-dbt-pbs="https://spec.edmcouncil.org/fibo/ontology/SEC/Debt/PoolBackedSecurities/"
	xmlns:fibo-sec-sec-iss="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesIssuance/"
	xmlns:owl="http://www.w3.org/2002/07/owl#"
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
	xmlns:skos="http://www.w3.org/2004/02/skos/core#"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
	
	<owl:Ontology rdf:about="https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/AgencyMBSIssuance/">
		<rdfs:label xml:lang="en">AgencyMBSIssuance</rdfs:label>
		<dct:abstract>Process ontology for the process of issuance (securitization) of mortgage backed securities by government agencies. Based on US government agency MBS issuance process.</dct:abstract>
		<dct:license rdf:datatype="&xsd;anyURI">https://opensource.org/licenses/MIT</dct:license>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/DebtIssuance/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/IssuanceDocuments/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/IssuanceProcess/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/MBSIssuance/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/PrivateLabelMBSIssuance/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FBC/DebtAndEquities/CreditRatings/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Accounting/CurrencyAmount/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Agreements/Contracts/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Arrangements/Lifecycles/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Parties/Parties/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Relations/Relations/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/FND/Utilities/AnnotationVocabulary/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/LOAN/RealEstateLoans/MortgageLoans/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/SEC/Debt/Bonds/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/SEC/Debt/MortgageBackedSecurities/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/SEC/Debt/PoolBackedSecurities/"/>
		<owl:imports rdf:resource="https://spec.edmcouncil.org/fibo/ontology/SEC/Securities/SecuritiesIssuance/"/>
		<owl:imports rdf:resource="https://www.omg.org/spec/Commons/AnnotationVocabulary/"/>
		<owl:imports rdf:resource="https://www.omg.org/spec/Commons/DatesAndTimes/"/>
		<owl:versionIRI rdf:resource="https://spec.edmcouncil.org/fibo/ontology/BP/SecuritiesIssuance/AgencyMBSIssuance/"/>
		<fibo-fnd-utl-av:hasMaturityLevel rdf:resource="&fibo-fnd-utl-av;Provisional"/>
		<cmns-av:copyright>Copyright (c) 2013-2023 EDM Council, Inc.</cmns-av:copyright>
	</owl:Ontology>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;AcquireMortgage">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-bp-iss-ambs;purchase"/>
				<owl:someValuesFrom rdf:resource="&fibo-loan-reln-mtg;Mortgage"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">acquire mortgage</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;AddMortgageToPool">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-bp-iss-ambs;addsToPool"/>
				<owl:someValuesFrom rdf:resource="&fibo-loan-reln-mtg;Mortgage"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">add mortgage to pool</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;AgencyMortgagePoolCreationProcess">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-dbti;RetailAssetPoolCreationProcess"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&cmns-dt;hasEndDate"/>
				<owl:someValuesFrom rdf:resource="&cmns-dt;Date"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&cmns-dt;hasStartDate"/>
				<owl:someValuesFrom rdf:resource="&cmns-dt;Date"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&cmns-dt;precedes"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-ambs;PassThroughMBSSecuritizationProcess"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">agency mortgage pool creation process</rdfs:label>
		<owl:disjointWith rdf:resource="&fibo-bp-iss-pmbs;NonAgencyPoolCreationProcess"/>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;AllocatePrimaryIdentifier">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:label xml:lang="en">allocate primary identifier</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;AssessPoolSuitablilityForIssuance">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:label xml:lang="en">assess pool suitablility for issuance</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;ClassifyMortgage">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-bp-iss-ambs;isAssessmentOf"/>
				<owl:someValuesFrom rdf:resource="&fibo-loan-reln-mtg;Mortgage"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">classify mortgage</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;DefineMortgagePool">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-bp-iss-ambs;isDefiningOf"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-ambs;NotYetIssuedAgencyMortgagePool"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">define mortgage pool</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;DraftPassThroughTermsheet">
		<rdfs:subClassOf rdf:resource="&fibo-fnd-agr-ctr;TermSheet"/>
		<rdfs:label xml:lang="en">draft pass through termsheet</rdfs:label>
		<skos:definition xml:lang="en">Draft of set of information defining the pass thorugh security terms. These will eventually become the contractual terms of the instrument. Term origin:MBS PoC Reviews</skos:definition>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;DrawUpOfferingMemorandum">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:label xml:lang="en">draw up offering memorandum</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;DrawUpTermsheet">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:label xml:lang="en">draw up termsheet</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;FinalizePoolContent">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:label xml:lang="en">finalize pool content</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;FinalizeProspectus">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:label xml:lang="en">finalize prospectus</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;IdentifyConformingMortgage">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;refersTo"/>
				<owl:someValuesFrom rdf:resource="&fibo-loan-reln-mtg;Mortgage"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">identify conforming mortgage</rdfs:label>
		<skos:definition xml:lang="en">Identify mortgage conforming to overall requirements for this issuer.</skos:definition>
		<cmns-av:explanatoryNote xml:lang="en">This does not relate to the criteria for belonging to an individual, defined mortgage pool but conforms to the requirements of the issuing organization overall. This is for Agency pools. For non-agency, the equivalent of this step is carried out at pool level with a clause to reject the mortgage.</cmns-av:explanatoryNote>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;IdentifyUnderwriter">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-bp-iss-ambs;resultsInAppointmentOf"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-ambs;PotentialPassThroughIssuanceUnderwriter"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">identify underwriter</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;InAssemblyAgencyMortgagePool">
		<rdfs:subClassOf rdf:resource="&fibo-sec-dbt-mbs;AgencyMortgagePool"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-fnd-arr-lif;hasStage"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-dbti;InAssembly"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">in assembly agency mortgage pool</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;InIssuanceAgencyMortgagePool">
		<rdfs:subClassOf rdf:resource="&fibo-sec-dbt-mbs;AgencyMortgagePool"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-fnd-arr-lif;hasStage"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-dbti;InIssuance"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">in issuance agency mortgage pool</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;MakeSecuritiesAvailabeInMarket">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:label xml:lang="en">make securities availabe in market</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;MarketIssue">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-bp-iss-ambs;hasResource"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-ambs;PassThroughMBSDraftProspectus"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">market issue</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;NotYetIssuedAgencyMortgagePool">
		<rdfs:subClassOf rdf:resource="&fibo-sec-dbt-mbs;AgencyMortgagePool"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-fnd-arr-lif;hasStage"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-dbti;NotYetIssued"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">not yet issued agency mortgage pool</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;PassThroughIssueProspectusPart">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-mbs;ProspectusPart"/>
		<rdfs:label xml:lang="en">pass through issue prospectus part</rdfs:label>
		<skos:definition xml:lang="en">A part or section of a prospectus for a pass through MBS issue. Term origin:MBS PoC Reviews</skos:definition>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;PassThroughMBSDraftProspectus">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-doc;PreliminaryProspectus"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&cmns-dt;precedes"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-ambs;PassThroughMBSFinalProspectus"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">pass through m b s draft prospectus</rdfs:label>
		<skos:definition xml:lang="en">The draft prospectus for a pass through Mortgage Backed Securities issue, as determined by the issuing agency prior to marketing the issue. Certain terms in the draft prospectus will be finalized later in the issuance process to become the actual Prospectus. Term origin:MBS PoC Reviews</skos:definition>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;PassThroughMBSFinalProspectus">
		<rdfs:subClassOf rdf:resource="&fibo-sec-dbt-mbs;MortgageBackedSecurityOfferingProspectus"/>
		<rdfs:label xml:lang="en">pass through m b s final prospectus</rdfs:label>
		<skos:definition xml:lang="en">Term origin:MBS PoC Reviews</skos:definition>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;PassThroughMBSFinalTermsheet">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-ambs;PassThroughIssueProspectusPart"/>
		<rdfs:subClassOf rdf:resource="&fibo-fnd-agr-ctr;TermSheet"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-fnd-agr-ctr;hasContractualElement"/>
				<owl:someValuesFrom rdf:resource="&fibo-sec-dbt-bnd;BondAmortizationPaymentTerms"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-fnd-agr-ctr;hasContractualElement"/>
				<owl:someValuesFrom rdf:resource="&fibo-sec-dbt-bnd;CouponPaymentTerms"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">pass through m b s final termsheet</rdfs:label>
		<skos:definition xml:lang="en">The final termsheet for the pass through MBS issue. This defines the terms for the MBS contract itself. Term origin:MBS PoC Reviews</skos:definition>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;PassThroughMBSSecuritizationProcess">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-mbs;MBSSecuritizationProcess"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&cmns-dt;hasEndDate"/>
				<owl:someValuesFrom rdf:resource="&cmns-dt;Date"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&cmns-dt;hasStartDate"/>
				<owl:someValuesFrom rdf:resource="&cmns-dt;Date"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">pass through m b s securitization process</rdfs:label>
		<owl:disjointWith rdf:resource="&fibo-bp-iss-pmbs;TranchedMBSSecuritizationProcess"/>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;PassThroughOfferingMemorandum">
		<rdfs:subClassOf rdf:resource="&fibo-sec-sec-iss;OfferingDocument"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-bp-iss-mbs;includesDetailsAbout"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-ambs;PassThroughMBSFinalTermsheet"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">pass through offering memorandum</rdfs:label>
		<skos:definition xml:lang="en">The offering memorandum for a pass through MBS issue, setting out basic information about a future issue, for the information of prospective investors and their agents. Term origin:MBS PoC Reviews</skos:definition>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;PoolConformanceCriteria">
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-bp-iss-ambs;definesCriteriaFor"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-ambs;NotYetIssuedAgencyMortgagePool"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">pool conformance criteria</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;PotentialAgencyMBSIssuer">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-dbti;PoolBackedSecuritySecuritizationProcessActor"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-bp-iss-ambs;adds"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-ambs;AddMortgageToPool"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-bp-iss-ambs;finalizes"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-ambs;FinalizePoolContent"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-bp-iss-ambs;identifies"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-ambs;IdentifyConformingMortgage"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-bp-iss-ambs;purchases"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-ambs;AcquireMortgage"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-bp-iss-ambs;validates"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-ambs;ValidateConformance"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;evaluates"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-ambs;AssessPoolSuitablilityForIssuance"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;evaluates"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-ambs;ClassifyMortgage"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">potential agency m b s issuer</rdfs:label>
		<skos:definition xml:lang="en">The entity which will become the issuing party for the pass through MBS Issue. This entity is the principal actor in most of the activities involved in the issue. Term origin:MBS PoC Reviews</skos:definition>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;PotentialPassThroughIssuanceUnderwriter">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;PotentialUnderwriter"/>
		<rdfs:label xml:lang="en">potential pass through issuance underwriter</rdfs:label>
		<skos:definition xml:lang="en">The entity which will become the underwriter for the pass through MBS issue. Term origin:MBS PoC Reviews</skos:definition>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;RegisterSecurity">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:label xml:lang="en">register security</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;SuitableForIssue">
		<rdfs:label xml:lang="en">suitable for issue</rdfs:label>
	</owl:Class>
	
	<owl:Class rdf:about="&fibo-bp-iss-ambs;ValidateConformance">
		<rdfs:subClassOf rdf:resource="&fibo-bp-iss-prc;IssuanceProcessActivity"/>
		<rdfs:subClassOf>
			<owl:Restriction>
				<owl:onProperty rdf:resource="&fibo-fnd-rel-rel;refersTo"/>
				<owl:someValuesFrom rdf:resource="&fibo-bp-iss-ambs;PoolConformanceCriteria"/>
			</owl:Restriction>
		</rdfs:subClassOf>
		<rdfs:label xml:lang="en">validate conformance</rdfs:label>
		<skos:definition xml:lang="en">The mortgage is automatically validated for conformance to the requirements of the pool in which it is to be included.</skos:definition>
		<skos:editorialNote xml:lang="en">From review comment 6 Oct: box called validate conformance automatic eg max loan balance</skos:editorialNote>
	</owl:Class>
	
	<owl:ObjectProperty rdf:about="&fibo-bp-iss-ambs;adds">
		<rdfs:label xml:lang="en">adds</rdfs:label>
		<rdfs:domain rdf:resource="&fibo-bp-iss-ambs;PotentialAgencyMBSIssuer"/>
		<rdfs:range rdf:resource="&fibo-bp-iss-ambs;AddMortgageToPool"/>
	</owl:ObjectProperty>
	
	<owl:ObjectProperty rdf:about="&fibo-bp-iss-ambs;addsToPool">
		<rdfs:label xml:lang="en">adds to pool</rdfs:label>
		<rdfs:domain rdf:resource="&fibo-bp-iss-ambs;AddMortgageToPool"/>
		<rdfs:range rdf:resource="&fibo-loan-reln-mtg;Mortgage"/>
	</owl:ObjectProperty>
	
	<owl:ObjectProperty rdf:about="&fibo-bp-iss-ambs;allocatesIdentifier">
		<rdfs:label>allocates identifier</rdfs:label>
	</owl:ObjectProperty>
	
	<owl:ObjectProperty rdf:about="&fibo-bp-iss-ambs;definesCriteriaFor">
		<rdfs:label xml:lang="en">defines criteria for</rdfs:label>
		<rdfs:domain rdf:resource="&fibo-bp-iss-ambs;PoolConformanceCriteria"/>
		<rdfs:range rdf:resource="&fibo-bp-iss-ambs;NotYetIssuedAgencyMortgagePool"/>
	</owl:ObjectProperty>
	
	<owl:ObjectProperty rdf:about="&fibo-bp-iss-ambs;finalizes">
		<rdfs:label xml:lang="en">finalizes</rdfs:label>
		<rdfs:domain rdf:resource="&fibo-bp-iss-ambs;PotentialAgencyMBSIssuer"/>
		<rdfs:range rdf:resource="&fibo-bp-iss-ambs;FinalizePoolContent"/>
	</owl:ObjectProperty>
	
	<owl:ObjectProperty rdf:about="&fibo-bp-iss-ambs;hasResource">
		<rdfs:label xml:lang="en">has resource</rdfs:label>
		<rdfs:domain rdf:resource="&fibo-bp-iss-ambs;MarketIssue"/>
		<rdfs:range rdf:resource="&fibo-bp-iss-ambs;PassThroughMBSDraftProspectus"/>
	</owl:ObjectProperty>
	
	<owl:ObjectProperty rdf:about="&fibo-bp-iss-ambs;identifies">
		<rdfs:label xml:lang="en">identifies</rdfs:label>
		<rdfs:domain rdf:resource="&fibo-bp-iss-ambs;PotentialAgencyMBSIssuer"/>
		<rdfs:range rdf:resource="&fibo-bp-iss-ambs;IdentifyConformingMortgage"/>
	</owl:ObjectProperty>
	
	<owl:ObjectProperty rdf:about="&fibo-bp-iss-ambs;isAssessmentOf">
		<rdfs:label xml:lang="en">is assessment of</rdfs:label>
		<rdfs:domain rdf:resource="&fibo-bp-iss-ambs;ClassifyMortgage"/>
		<rdfs:range rdf:resource="&fibo-loan-reln-mtg;Mortgage"/>
	</owl:ObjectProperty>
	
	<owl:ObjectProperty rdf:about="&fibo-bp-iss-ambs;isDefiningOf">
		<rdfs:label xml:lang="en">is defining of</rdfs:label>
		<rdfs:domain rdf:resource="&fibo-bp-iss-ambs;DefineMortgagePool"/>
		<rdfs:range rdf:resource="&fibo-bp-iss-ambs;NotYetIssuedAgencyMortgagePool"/>
	</owl:ObjectProperty>
	
	<owl:ObjectProperty rdf:about="&fibo-bp-iss-ambs;maximumLoanBalance">
		<rdfs:label xml:lang="en">maximum loan balance</rdfs:label>
		<rdfs:domain rdf:resource="&fibo-bp-iss-ambs;PoolConformanceCriteria"/>
		<rdfs:range rdf:resource="&fibo-fnd-acc-cur;MonetaryAmount"/>
	</owl:ObjectProperty>
	
	<owl:ObjectProperty rdf:about="&fibo-bp-iss-ambs;minimumRating">
		<rdfs:label xml:lang="en">minimum rating</rdfs:label>
		<rdfs:domain rdf:resource="&fibo-bp-iss-ambs;PoolConformanceCriteria"/>
		<rdfs:range rdf:resource="&fibo-fbc-dae-crt;InvestmentCreditRating"/>
	</owl:ObjectProperty>
	
	<owl:ObjectProperty rdf:about="&fibo-bp-iss-ambs;purchase">
		<rdfs:label xml:lang="en">purchase</rdfs:label>
		<rdfs:domain rdf:resource="&fibo-bp-iss-ambs;AcquireMortgage"/>
		<rdfs:range rdf:resource="&fibo-loan-reln-mtg;Mortgage"/>
	</owl:ObjectProperty>
	
	<owl:ObjectProperty rdf:about="&fibo-bp-iss-ambs;purchases">
		<rdfs:label xml:lang="en">purchases</rdfs:label>
		<rdfs:domain rdf:resource="&fibo-bp-iss-ambs;PotentialAgencyMBSIssuer"/>
		<rdfs:range rdf:resource="&fibo-bp-iss-ambs;AcquireMortgage"/>
	</owl:ObjectProperty>
	
	<owl:ObjectProperty rdf:about="&fibo-bp-iss-ambs;resultsInAppointmentOf">
		<rdfs:label xml:lang="en">results in appointment of</rdfs:label>
		<rdfs:domain rdf:resource="&fibo-bp-iss-ambs;IdentifyUnderwriter"/>
		<rdfs:range rdf:resource="&fibo-bp-iss-ambs;PotentialPassThroughIssuanceUnderwriter"/>
	</owl:ObjectProperty>
	
	<owl:ObjectProperty rdf:about="&fibo-bp-iss-ambs;validates">
		<rdfs:label xml:lang="en">validates</rdfs:label>
		<rdfs:domain rdf:resource="&fibo-bp-iss-ambs;PotentialAgencyMBSIssuer"/>
		<rdfs:range rdf:resource="&fibo-bp-iss-ambs;ValidateConformance"/>
	</owl:ObjectProperty>

</rdf:RDF>