Skip to content

Enum: MLDataType

Data types used in Croissant ML for describing field types in datasets.

Based on XSD (XML Schema Definition) and schema.org vocabulary.

__

URI: valuesets:MLDataType

Permissible Values

Value Meaning Description
TEXT xsd:string Text or string data
INTEGER xsd:integer Integer numbers
FLOAT xsd:float Floating point numbers
BOOLEAN xsd:boolean Boolean values (true/false)
DATE xsd:date Date values
TIME xsd:time Time values
DATETIME xsd:dateTime Combined date and time values
URL xsd:anyURI Uniform Resource Locators

Identifier and Mapping Information

Schema Source

  • from schema: https://w3id.org/linkml/valuesets

LinkML Source

name: MLDataType
description: 'Data types used in Croissant ML for describing field types in datasets.

  Based on XSD (XML Schema Definition) and schema.org vocabulary.

  '
from_schema: https://w3id.org/linkml/valuesets
rank: 1000
permissible_values:
  TEXT:
    text: TEXT
    description: Text or string data
    meaning: xsd:string
    mappings:
    - schema:Text
    - EDAM:3671
  INTEGER:
    text: INTEGER
    description: Integer numbers
    meaning: xsd:integer
    mappings:
    - schema:Integer
    - IAO:0000031
  FLOAT:
    text: FLOAT
    description: Floating point numbers
    meaning: xsd:float
    mappings:
    - schema:Float
  BOOLEAN:
    text: BOOLEAN
    description: Boolean values (true/false)
    meaning: xsd:boolean
    mappings:
    - schema:Boolean
  DATE:
    text: DATE
    description: Date values
    meaning: xsd:date
    mappings:
    - schema:Date
  TIME:
    text: TIME
    description: Time values
    meaning: xsd:time
    mappings:
    - schema:Time
  DATETIME:
    text: DATETIME
    description: Combined date and time values
    meaning: xsd:dateTime
    mappings:
    - schema:DateTime
  URL:
    text: URL
    description: Uniform Resource Locators
    meaning: xsd:anyURI
    mappings:
    - schema:URL