@@ -532,274 +532,6 @@ types:
532532 typeof : string
533533 base : str
534534 uri : xsd:string
535- # string:
536- # name: string
537- # definition_uri: https://w3id.org/linkml/String
538- # description: A character string
539- # notes:
540- # - In RDF serializations, a slot with range of string is treated as a literal or
541- # type xsd:string. If you are authoring schemas in LinkML YAML, the type is
542- # referenced with the lower case "string".
543- # from_schema: https://w3id.org/linkml/types
544- # imported_from: linkml:types
545- # exact_mappings:
546- # - schema:Text
547- # base: str
548- # uri: xsd:string
549- # integer:
550- # name: integer
551- # definition_uri: https://w3id.org/linkml/Integer
552- # description: An integer
553- # notes:
554- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
555- # lower case "integer".
556- # from_schema: https://w3id.org/linkml/types
557- # imported_from: linkml:types
558- # exact_mappings:
559- # - schema:Integer
560- # base: int
561- # uri: xsd:integer
562- # boolean:
563- # name: boolean
564- # definition_uri: https://w3id.org/linkml/Boolean
565- # description: A binary (true or false) value
566- # notes:
567- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
568- # lower case "boolean".
569- # from_schema: https://w3id.org/linkml/types
570- # imported_from: linkml:types
571- # exact_mappings:
572- # - schema:Boolean
573- # base: Bool
574- # uri: xsd:boolean
575- # repr: bool
576- # float:
577- # name: float
578- # definition_uri: https://w3id.org/linkml/Float
579- # description: A real number that conforms to the xsd:float specification
580- # notes:
581- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
582- # lower case "float".
583- # from_schema: https://w3id.org/linkml/types
584- # imported_from: linkml:types
585- # exact_mappings:
586- # - schema:Float
587- # base: float
588- # uri: xsd:float
589- # double:
590- # name: double
591- # definition_uri: https://w3id.org/linkml/Double
592- # description: A real number that conforms to the xsd:double specification
593- # notes:
594- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
595- # lower case "double".
596- # from_schema: https://w3id.org/linkml/types
597- # imported_from: linkml:types
598- # close_mappings:
599- # - schema:Float
600- # base: float
601- # uri: xsd:double
602- # decimal:
603- # name: decimal
604- # definition_uri: https://w3id.org/linkml/Decimal
605- # description: A real number with arbitrary precision that conforms to the xsd:decimal
606- # specification
607- # notes:
608- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
609- # lower case "decimal".
610- # from_schema: https://w3id.org/linkml/types
611- # imported_from: linkml:types
612- # broad_mappings:
613- # - schema:Number
614- # base: Decimal
615- # uri: xsd:decimal
616- # time:
617- # name: time
618- # definition_uri: https://w3id.org/linkml/Time
619- # description: A time object represents a (local) time of day, independent of any
620- # particular day
621- # notes:
622- # - URI is dateTime because OWL reasoners do not work with straight date or time
623- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
624- # lower case "time".
625- # from_schema: https://w3id.org/linkml/types
626- # imported_from: linkml:types
627- # exact_mappings:
628- # - schema:Time
629- # base: XSDTime
630- # uri: xsd:time
631- # repr: str
632- # date:
633- # name: date
634- # definition_uri: https://w3id.org/linkml/Date
635- # description: a date (year, month and day) in an idealized calendar
636- # notes:
637- # - URI is dateTime because OWL reasoners don't work with straight date or time
638- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
639- # lower case "date".
640- # from_schema: https://w3id.org/linkml/types
641- # imported_from: linkml:types
642- # exact_mappings:
643- # - schema:Date
644- # base: XSDDate
645- # uri: xsd:date
646- # repr: str
647- # datetime:
648- # name: datetime
649- # definition_uri: https://w3id.org/linkml/Datetime
650- # description: The combination of a date and time
651- # notes:
652- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
653- # lower case "datetime".
654- # from_schema: https://w3id.org/linkml/types
655- # imported_from: linkml:types
656- # exact_mappings:
657- # - schema:DateTime
658- # base: XSDDateTime
659- # uri: xsd:dateTime
660- # repr: str
661- # date_or_datetime:
662- # name: date_or_datetime
663- # definition_uri: https://w3id.org/linkml/DateOrDatetime
664- # description: Either a date or a datetime
665- # notes:
666- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
667- # lower case "date_or_datetime".
668- # from_schema: https://w3id.org/linkml/types
669- # imported_from: linkml:types
670- # base: str
671- # uri: linkml:DateOrDatetime
672- # repr: str
673- # uriorcurie:
674- # name: uriorcurie
675- # definition_uri: https://w3id.org/linkml/Uriorcurie
676- # description: a URI or a CURIE
677- # notes:
678- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
679- # lower case "uriorcurie".
680- # from_schema: https://w3id.org/linkml/types
681- # imported_from: linkml:types
682- # base: URIorCURIE
683- # uri: xsd:anyURI
684- # repr: str
685- # curie:
686- # name: curie
687- # definition_uri: https://w3id.org/linkml/Curie
688- # conforms_to: https://www.w3.org/TR/curie/
689- # description: a compact URI
690- # notes:
691- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
692- # lower case "curie".
693- # comments:
694- # - in RDF serializations this MUST be expanded to a URI
695- # - in non-RDF serializations MAY be serialized as the compact representation
696- # from_schema: https://w3id.org/linkml/types
697- # imported_from: linkml:types
698- # base: Curie
699- # uri: xsd:string
700- # repr: str
701- # uri:
702- # name: uri
703- # definition_uri: https://w3id.org/linkml/Uri
704- # conforms_to: https://www.ietf.org/rfc/rfc3987.txt
705- # description: a complete URI
706- # notes:
707- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
708- # lower case "uri".
709- # comments:
710- # - in RDF serializations a slot with range of uri is treated as a literal or type
711- # xsd:anyURI unless it is an identifier or a reference to an identifier, in which
712- # case it is translated directly to a node
713- # from_schema: https://w3id.org/linkml/types
714- # imported_from: linkml:types
715- # close_mappings:
716- # - schema:URL
717- # base: URI
718- # uri: xsd:anyURI
719- # repr: str
720- # ncname:
721- # name: ncname
722- # definition_uri: https://w3id.org/linkml/Ncname
723- # description: Prefix part of CURIE
724- # notes:
725- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
726- # lower case "ncname".
727- # from_schema: https://w3id.org/linkml/types
728- # imported_from: linkml:types
729- # base: NCName
730- # uri: xsd:string
731- # repr: str
732- # objectidentifier:
733- # name: objectidentifier
734- # definition_uri: https://w3id.org/linkml/Objectidentifier
735- # description: A URI or CURIE that represents an object in the model.
736- # notes:
737- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
738- # lower case "objectidentifier".
739- # comments:
740- # - Used for inheritance and type checking
741- # from_schema: https://w3id.org/linkml/types
742- # imported_from: linkml:types
743- # base: ElementIdentifier
744- # uri: shex:iri
745- # repr: str
746- # nodeidentifier:
747- # name: nodeidentifier
748- # definition_uri: https://w3id.org/linkml/Nodeidentifier
749- # description: A URI, CURIE or BNODE that represents a node in a model.
750- # notes:
751- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
752- # lower case "nodeidentifier".
753- # from_schema: https://w3id.org/linkml/types
754- # imported_from: linkml:types
755- # base: NodeIdentifier
756- # uri: shex:nonLiteral
757- # repr: str
758- # jsonpointer:
759- # name: jsonpointer
760- # definition_uri: https://w3id.org/linkml/Jsonpointer
761- # conforms_to: https://datatracker.ietf.org/doc/html/rfc6901
762- # description: A string encoding a JSON Pointer. The value of the string MUST conform
763- # to JSON Point syntax and SHOULD dereference to a valid object within the current
764- # instance document when encoded in tree form.
765- # notes:
766- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
767- # lower case "jsonpointer".
768- # from_schema: https://w3id.org/linkml/types
769- # imported_from: linkml:types
770- # base: str
771- # uri: xsd:string
772- # repr: str
773- # jsonpath:
774- # name: jsonpath
775- # definition_uri: https://w3id.org/linkml/Jsonpath
776- # conforms_to: https://www.ietf.org/archive/id/draft-goessner-dispatch-jsonpath-00.html
777- # description: A string encoding a JSON Path. The value of the string MUST conform
778- # to JSON Point syntax and SHOULD dereference to zero or more valid objects within
779- # the current instance document when encoded in tree form.
780- # notes:
781- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
782- # lower case "jsonpath".
783- # from_schema: https://w3id.org/linkml/types
784- # imported_from: linkml:types
785- # base: str
786- # uri: xsd:string
787- # repr: str
788- # sparqlpath:
789- # name: sparqlpath
790- # definition_uri: https://w3id.org/linkml/Sparqlpath
791- # conforms_to: https://www.w3.org/TR/sparql11-query/#propertypaths
792- # description: A string encoding a SPARQL Property Path. The value of the string
793- # MUST conform to SPARQL syntax and SHOULD dereference to zero or more valid objects
794- # within the current instance document when encoded as RDF.
795- # notes:
796- # - If you are authoring schemas in LinkML YAML, the type is referenced with the
797- # lower case "sparqlpath".
798- # from_schema: https://w3id.org/linkml/types
799- # imported_from: linkml:types
800- # base: str
801- # uri: xsd:string
802- # repr: str
803535slots :
804536 has attribute :
805537 name : has attribute
0 commit comments