SCHEMA_EP-FLOW-v1.0.ttl 27.6 KB
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 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775
# baseURI: http://www.reportinghub.no/ep/schema/1.0/flow
# imports: http://www.reportinghub.no/ep/schema/1.0/core
# imports: http://www.reportinghub.no/ep/schema/1.0/facility
# imports: http://www.reportinghub.no/ep/schema/1.0/production-core

@prefix ep-flow:  <http://www.reportinghub.no/ep/schema/flow#> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .

<http://www.reportinghub.no/ep/schema/1.0/flow>
      rdf:type owl:Ontology ;
      owl:imports <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/production-core> ;
      owl:versionInfo "Created with TopBraid Composer"^^xsd:string .

ep-flow:AllocatedFlow
      rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
      rdfs:label "allocated flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:AqueousFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "aqueous flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:BudgetFlow
      rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
      rdfs:label "budget flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:C10AndHeavierFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "C10+ flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C10AndLighterFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "C10- flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C2AndHeavierFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "C2+ flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C2AndLighterFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "C2- flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C3AndHeavierFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "C3+ flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C3AndLighterFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "C3- flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C4AndHeavierFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "C4+ flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C4AndLighterFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "C4- flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C5AndHeavierFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "C5+ flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C5AndLighterFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "C5- flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C6AndHeavierFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "C6+ flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C6AndLighterFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "C6- flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C7AndHeavierFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "C7+ flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C7AndLighterFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "C7- flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C8AndHeavierFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "C8+ flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C8AndLighterFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "C8- flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C9AndHeavierFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "C9+ flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:C9AndLighterFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "C9- flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:CarbonDioxideGasFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "carbon dioxide gas flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:CarbonMonoxideGasFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "carbon monoxide gas flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:ChemicalFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "chemical flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:Condensate-grossFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "condensate - gross flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:Condensate-netFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "condensate - net flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:CondensateFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "condensate flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:ConstraintFlow
      rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
      rdfs:label "constraint flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:Consume
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "consume"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:Consume-HPflare
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "consume - HP flare"^^xsd:string ;
      rdfs:subClassOf ep-flow:Consume-flare .

ep-flow:Consume-LPflare
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "consume - LP flare"^^xsd:string ;
      rdfs:subClassOf ep-flow:Consume-flare .

ep-flow:Consume-blackstart
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "consume - blackstart"^^xsd:string ;
      rdfs:subClassOf ep-flow:Consume .

ep-flow:Consume-compressor
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "consume - compressor"^^xsd:string ;
      rdfs:subClassOf ep-flow:Consume .

ep-flow:Consume-emitted
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "consume - emitted"^^xsd:string ;
      rdfs:subClassOf ep-flow:Consume .

ep-flow:Consume-flare
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "consume - flare"^^xsd:string ;
      rdfs:subClassOf ep-flow:Consume .

ep-flow:Consume-fuel
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "consume - fuel"^^xsd:string ;
      rdfs:subClassOf ep-flow:Consume .

ep-flow:Consume-noncompressor
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "consume - non-compressor"^^xsd:string ;
      rdfs:subClassOf ep-flow:Consume .

ep-flow:Consume-venting
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "consume - venting"^^xsd:string ;
      rdfs:subClassOf ep-flow:Consume .

ep-flow:Crude-stabilizedFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "crude - stabilized flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:CuttingsFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "cuttings flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:DailyProductionFlow
      rdf:type owl:Class ;
      rdfs:label "daily production flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:ProductionFlow .

ep-flow:DerivedFlow
      rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
      rdfs:label "derived flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:DieselFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "diesel flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:DiethyleneglycolFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "diethyleneglycol flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:DifferenceFlow
      rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
      rdfs:label "difference flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:DioxygenFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "dioxygen flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:ElectricPowerFlow
      rdf:type owl:Class ;
      rdfs:label "flow of electricity"^^xsd:string ;
      rdfs:subClassOf ep-flow:Flow .

ep-flow:EstimatedFlow
      rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
      rdfs:label "estimated flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:Ethane-componentFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "ethane - component flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:EthaneFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "ethane flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:Export
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "export"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:Export-nominated
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "export nominated"^^xsd:string ;
      rdfs:subClassOf ep-flow:Export .

ep-flow:Export-requested
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "export requested"^^xsd:string ;
      rdfs:subClassOf ep-flow:Export .

ep-flow:Export-shortfall
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "export shortfall"^^xsd:string ;
      rdfs:subClassOf ep-flow:Export .

ep-flow:Flow
      rdf:type owl:Class ;
      rdfs:label "(temporal part of a) flow"^^xsd:string ;
      rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalThing> .

ep-flow:FlowAtInstant
      rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ;
      rdfs:label "flow at instant"^^xsd:string ;
      rdfs:subClassOf ep-flow:Flow .

ep-flow:FlowDuringDay
      rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ;
      rdfs:label "flow during day"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowDuringPeriod .

ep-flow:FlowDuringMonth
      rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ;
      rdfs:label "flow during month"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowDuringPeriod .

ep-flow:FlowDuringMonthToDate
      rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ;
      rdfs:label "flow during month to date"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowDuringPeriod .

ep-flow:FlowDuringPeriod
      rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ;
      rdfs:label "flow during period"^^xsd:string ;
      rdfs:subClassOf ep-flow:Flow .

ep-flow:FlowDuringWeek
      rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ;
      rdfs:label "flow during week"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowDuringPeriod .

ep-flow:FlowDuringYear
      rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ;
      rdfs:label "flow during year"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowDuringPeriod .

ep-flow:FlowDuringYearToDate
      rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ;
      rdfs:label "flow during year to date"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowDuringPeriod .

ep-flow:FlowOfLiquid
      rdf:type owl:Class ;
      rdfs:label "flow of liquid"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:FlowOfMaterial
      rdf:type owl:Class ;
      rdfs:label "flow of material"^^xsd:string ;
      rdfs:subClassOf ep-flow:Flow .

ep-flow:ForecastFlow
      rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
      rdfs:label "forecast flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:Gas-componentInOilFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "gas - component in oil flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:Gas-dryFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "gas - dry flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:Gas-richFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "gas - rich flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:Gas-wetFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "gas - wet flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:GasFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "gas flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:Gaslift
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "gas lift"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:HeliumGasFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "helium gas flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:HeptaneFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "heptane flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:HydrocarbonAccounting
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "hydrocarbon accounting"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:HydrogenGasFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "hydrogen gas flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:HydrogenSulfideFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "hydrogen sulfide flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:Import
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "import"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:Injection
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "injection"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:Inventory
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "inventory"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:Isobutane-componentFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "i-butane - component flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:IsobutaneFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "isobutane flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:IsopentaneFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "isopentane flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:LiquifiedNaturalGasFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "liquified natural gas flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:LiquifiedPetroleumGasFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "liquified petroleum gas flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:MeasuredFlow
      rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
      rdfs:label "measured flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:MethaneFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "methane flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:MethanolFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "methanol flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:MixedButaneFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "mixed butane flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:MonoethyleneglycolFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "monoethyleneglycol flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:NGL-componentInGasFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "NGL - component in gas flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:NapthaFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "naptha flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:NaturalGasLiquidFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "natural gas liquid flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:NeopentaneFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "neopentane flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:NitrogenGasFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "nitrogen gas flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:NitrogenOxideGasFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "nitrogen oxide gas flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:NominatedFlow
      rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
      rdfs:label "nominated flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:NormalButane-componentFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "n-butane - component flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:NormalButaneFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "normal butane flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:NormalPentaneFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "normal pentane flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:Oil-componentInWaterFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "oil - component in water flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:Oil-grossFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "oil - gross flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:Oil-netFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "oil - net flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:OilAndGasFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "oil and gas flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:OilFlow
      rdf:type ep-flow:ProductType , owl:Class ;
      rdfs:label "oil flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:OleicFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "oleic flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:Overboard
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "overboard"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:PetroleumGasLiquidFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "petroleum gas liquid flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:PotentialFlow
      rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
      rdfs:label "potential flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:ProcessedFlow
      rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
      rdfs:label "processed flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:ProductFlow
      rdf:type owl:Class ;
      rdfs:label "(temporal part of a) product flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:Flow .

ep-flow:ProductFlowToDate
      rdf:type owl:Class ;
      rdfs:label "product flow to date"^^xsd:string ;
      rdfs:subClassOf ep-flow:ProductFlow .

ep-flow:ProductType
      rdf:type rdfs:Class ;
      rdfs:label " product type"^^xsd:string ;
      rdfs:subClassOf owl:Class .

ep-flow:Production
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "production"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:ProductionFlow
      rdf:type owl:Class ;
      rdfs:label "(temporal part of a) production flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:Flow .

ep-flow:ProductionFlowDefinitionType
      rdf:type rdfs:Class ;
      rdfs:label " production flow definition type"^^xsd:string ;
      rdfs:subClassOf owl:Class .

ep-flow:ProductionFlowPurposeType
      rdf:type rdfs:Class ;
      rdfs:label " production flow purpose type"^^xsd:string ;
      rdfs:subClassOf owl:Class .

ep-flow:ProductionFlowToDate
      rdf:type owl:Class ;
      rdfs:label "production flow to date"^^xsd:string ;
      rdfs:subClassOf ep-flow:ProductionFlow .

ep-flow:ProductionTestFlowLineFlow
      rdf:type owl:Class ;
      rdfs:label "production test flow line flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:ProductionTestSeparatorFlow
      rdf:type owl:Class ;
      rdfs:label "production test separator flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:ProductionTestWellHeadFlow
      rdf:type owl:Class ;
      rdfs:label "production test well head flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:Propane-componentFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "propane - component flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:PropaneFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "propane flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:QuotaFlow
      rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
      rdfs:label "quota flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:RecommendedFlow
      rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
      rdfs:label "recommended flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:Sale
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "sale"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:SaleableFlow
      rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
      rdfs:label "saleable flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:SaltFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "salt flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:SandFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "sand flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:SimulatedFlow
      rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
      rdfs:label "simulated flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:Storage
      rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ;
      rdfs:label "storage"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:TargetFlow
      rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
      rdfs:label "target flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow .

ep-flow:TemporalPartOfAFlowDurationType
      rdf:type rdfs:Class ;
      rdfs:label "temporal part of a flow duration type"^^xsd:string ;
      rdfs:subClassOf owl:Class .

ep-flow:TriethyleneglycolFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "triethyleneglycol flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:VapourFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "vapour flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:Water-dischargeFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "water - discharge flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:Water-processedFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "water - processed flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:WaterFlow
      rdf:type owl:Class , ep-flow:ProductType ;
      rdfs:label "water flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:FlowOfMaterial .

ep-flow:WholeLifeFlow
      rdf:type owl:Class ;
      rdfs:label "whole life flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:Flow .

ep-flow:WholeLifeProductFlow
      rdf:type owl:Class ;
      rdfs:label "whole life product flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow , ep-flow:ProductFlow .

ep-flow:WholeLifeProductionFlow
      rdf:type owl:Class ;
      rdfs:label "whole life production flow"^^xsd:string ;
      rdfs:subClassOf ep-flow:WholeLifeFlow , ep-flow:ProductionFlow .

ep-flow:dailyAverageAmountOfMaterial
      rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
      rdfs:label "daily average amount of material"^^xsd:string ;
      rdfs:range <http://www.reportinghub.no/ep/schema/core#MeasureOfAmountOfMaterial> .

ep-flow:facilityContainsFlow
      rdf:type owl:ObjectProperty ;
      rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
      rdfs:label "facility contains flow"^^xsd:string ;
      rdfs:range ep-flow:WholeLifeFlow .

ep-flow:flowInto
      rdf:type owl:ObjectProperty ;
      rdfs:domain ep-flow:WholeLifeFlow ;
      rdfs:label "flow into"^^xsd:string ;
      rdfs:range <http://www.reportinghub.no/ep/schema/core#PhysicalThing> ;
      rdfs:subPropertyOf ep-flow:flowIntoOrOutOf .

ep-flow:flowIntoOrOutOf
      rdf:type owl:ObjectProperty ;
      rdfs:domain ep-flow:WholeLifeFlow ;
      rdfs:label "flow into"^^xsd:string ;
      rdfs:range <http://www.reportinghub.no/ep/schema/core#PhysicalThing> .

ep-flow:flowOutOf
      rdf:type owl:ObjectProperty ;
      rdfs:domain ep-flow:WholeLifeFlow ;
      rdfs:label "flow into"^^xsd:string ;
      rdfs:range <http://www.reportinghub.no/ep/schema/core#PhysicalThing> ;
      rdfs:subPropertyOf ep-flow:flowIntoOrOutOf .

ep-flow:hasMixedPart
      rdf:type owl:ObjectProperty ;
      rdfs:domain ep-flow:WholeLifeFlow ;
      rdfs:label "has mixed part"^^xsd:string ;
      rdfs:range ep-flow:WholeLifeFlow ;
      rdfs:subPropertyOf <http://www.reportinghub.no/ep/schema/core#hasPart> .

ep-flow:hasNetworkPart
      rdf:type owl:ObjectProperty ;
      rdfs:domain ep-flow:WholeLifeFlow ;
      rdfs:label "has network part"^^xsd:string ;
      rdfs:range ep-flow:WholeLifeFlow ;
      rdfs:subPropertyOf <http://www.reportinghub.no/ep/schema/core#hasPart> .

ep-flow:rateOfFlowOfMaterial
      rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
      rdfs:label "rate of flow of material"^^xsd:string ;
      rdfs:range <http://www.reportinghub.no/ep/schema/core#MeasureOfAmountOfMaterial> .

ep-flow:totalAmountOfMaterial
      rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
      rdfs:label "total amount of material"^^xsd:string ;
      rdfs:range <http://www.reportinghub.no/ep/schema/core#MeasureOfAmountOfMaterial> .