view env/lib/python3.7/site-packages/schema_salad/tests/pt.yml @ 2:6af9afd405e9 draft

"planemo upload commit 0a63dd5f4d38a1f6944587f52a8cd79874177fc1"
author shellac
date Thu, 14 May 2020 14:56:58 -0400
parents 26e78fe6e8c4
children
line wrap: on
line source

$namespaces:
  sld:  "https://w3id.org/cwl/salad#"
  dct:  "http://purl.org/dc/terms/"
  rdf:  "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  rdfs: "http://www.w3.org/2000/01/rdf-schema#"
  xsd:  "http://www.w3.org/2001/XMLSchema#"
name: PrimitiveType
type: enum
symbols:
  - "sld:null"
  - "xsd:boolean"
  - "xsd:int"
  - "xsd:long"
  - "xsd:float"
  - "xsd:double"
  - "xsd:string"
doc:
  - |
    Salad data types are based on Avro schema declarations.  Refer to the
    [Avro schema declaration documentation](https://avro.apache.org/docs/current/spec.html#schemas) for
    detailed information.
  - "null: no value"
  - "boolean: a binary value"
  - "int: 32-bit signed integer"
  - "long: 64-bit signed integer"
  - "float: single precision (32-bit) IEEE 754 floating-point number"
  - "double: double precision (64-bit) IEEE 754 floating-point number"
  - "string: Unicode character sequence"